diff options
author | hjk <[email protected]> | 2014-01-13 16:17:34 +0100 |
---|---|---|
committer | Eike Ziller <[email protected]> | 2014-01-14 07:43:00 +0100 |
commit | 4d96fa7aba7be35800d61d8bed89d3f6c3ef9329 (patch) | |
tree | c9b102981cf81023e1488224a24758af18aa064e /src/plugins/find/findtoolwindow.h | |
parent | 8b854270a6c214479b2cdf302072a3e74fa854da (diff) |
Core: Merge Find and Locator into Core plugin
Change-Id: I7053310272235d854c9f409670ff52a10a7add8b
Reviewed-by: Christian Kandeler <[email protected]>
Reviewed-by: Orgad Shaneh <[email protected]>
Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/plugins/find/findtoolwindow.h')
-rw-r--r-- | src/plugins/find/findtoolwindow.h | 87 |
1 files changed, 0 insertions, 87 deletions
diff --git a/src/plugins/find/findtoolwindow.h b/src/plugins/find/findtoolwindow.h deleted file mode 100644 index 49cb5211cb0..00000000000 --- a/src/plugins/find/findtoolwindow.h +++ /dev/null @@ -1,87 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -#ifndef FINDTOOLWINDOW_H -#define FINDTOOLWINDOW_H - -#include "ui_finddialog.h" - -#include <QList> - -QT_FORWARD_DECLARE_CLASS(QCompleter) - -namespace Find { -class FindPlugin; -class IFindFilter; - -namespace Internal { - -class FindToolWindow : public QWidget -{ - Q_OBJECT - -public: - explicit FindToolWindow(FindPlugin *plugin, QWidget *parent = 0); - ~FindToolWindow(); - static FindToolWindow *instance(); - - void setFindFilters(const QList<IFindFilter *> &filters); - - void setFindText(const QString &text); - void setCurrentFilter(IFindFilter *filter); - void readSettings(); - void writeSettings(); - -protected: - bool event(QEvent *event); - bool eventFilter(QObject *obj, QEvent *event); - -private slots: - void search(); - void replace(); - void setCurrentFilter(int index); - void updateButtonStates(); - void updateFindFlags(); - -private: - void acceptAndGetParameters(QString *term, IFindFilter **filter); - - Ui::FindDialog m_ui; - FindPlugin *m_plugin; - QList<IFindFilter *> m_filters; - QCompleter *m_findCompleter; - QWidgetList m_configWidgets; - IFindFilter *m_currentFilter; - QWidget *m_configWidget; -}; - -} // namespace Internal -} // namespace Find - -#endif // FINDTOOLWINDOW_H |