OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / texteditor / basefilefind.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (info@qt.nokia.com)
8 **
9 **
10 ** GNU Lesser General Public License Usage
11 **
12 ** This file may be used under the terms of the GNU Lesser General Public
13 ** License version 2.1 as published by the Free Software Foundation and
14 ** appearing in the file LICENSE.LGPL included in the packaging of this file.
15 ** Please review the following information to ensure the GNU Lesser General
16 ** Public License version 2.1 requirements will be met:
17 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 **
19 ** In addition, as a special exception, Nokia gives you certain additional
20 ** rights. These rights are described in the Nokia Qt LGPL Exception
21 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 **
23 ** Other Usage
24 **
25 ** Alternatively, this file may be used in accordance with the terms and
26 ** conditions contained in a signed written agreement between you and Nokia.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **************************************************************************/
32
33 #ifndef BASEFILEFIND_H
34 #define BASEFILEFIND_H
35
36 #include "texteditor_global.h"
37
38 #include <find/ifindfilter.h>
39 #include <utils/filesearch.h>
40
41 #include <QtCore/QFutureWatcher>
42 #include <QtCore/QPointer>
43
44 #include <QtGui/QStringListModel>
45
46 QT_BEGIN_NAMESPACE
47 class QLabel;
48 class QComboBox;
49 QT_END_NAMESPACE
50
51 namespace Find {
52 class SearchResultWindow;
53 struct SearchResultItem;
54 }
55
56 namespace TextEditor {
57
58 class TEXTEDITOR_EXPORT BaseFileFind : public Find::IFindFilter
59 {
60     Q_OBJECT
61
62 public:
63     explicit BaseFileFind(Find::SearchResultWindow *resultWindow);
64
65     bool isEnabled() const;
66     bool canCancel() const;
67     void cancel();
68     bool isReplaceSupported() const { return true; }
69     void findAll(const QString &txt, Find::FindFlags findFlags);
70     void replaceAll(const QString &txt, Find::FindFlags findFlags);
71
72     /* returns the list of unique files that were passed in items */
73     static QStringList replaceAll(const QString &txt,
74                                   const QList<Find::SearchResultItem> &items);
75
76 protected:
77     virtual Utils::FileIterator *files() const = 0;
78     void writeCommonSettings(QSettings *settings);
79     void readCommonSettings(QSettings *settings, const QString &defaultFilter);
80     QWidget *createPatternWidget();
81     void syncComboWithSettings(QComboBox *combo, const QString &setting);
82     void updateComboEntries(QComboBox *combo, bool onTop);
83     QStringList fileNameFilters() const;
84
85 private slots:
86     void displayResult(int index);
87     void searchFinished();
88     void openEditor(const Find::SearchResultItem &item);
89     void doReplace(const QString &txt,
90                     const QList<Find::SearchResultItem> &items);
91
92 private:
93     QWidget *createProgressWidget();
94
95     Find::SearchResultWindow *m_resultWindow;
96     QFutureWatcher<Utils::FileSearchResultList> m_watcher;
97     bool m_isSearching;
98     QLabel *m_resultLabel;
99     QStringListModel m_filterStrings;
100     QString m_filterSetting;
101     QPointer<QComboBox> m_filterCombo;
102 };
103
104 } // namespace TextEditor
105
106 #endif // BASEFILEFIND_H