OSDN Git Service

It's 2011 now.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / find / currentdocumentfind.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 (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #ifndef CURRENTDOCUMENTFIND_H
35 #define CURRENTDOCUMENTFIND_H
36
37 #include "ifindsupport.h"
38
39 #include <QtCore/QPointer>
40
41 namespace Find {
42 namespace Internal {
43
44 class CurrentDocumentFind : public QObject
45 {
46     Q_OBJECT
47
48 public:
49     CurrentDocumentFind();
50
51     void resetIncrementalSearch();
52     void clearResults();
53     bool supportsReplace() const;
54     Find::FindFlags supportedFindFlags() const;
55     QString currentFindString() const;
56     QString completedFindString() const;
57
58     bool isEnabled() const;
59     bool candidateIsEnabled() const;
60     void highlightAll(const QString &txt, Find::FindFlags findFlags);
61     IFindSupport::Result findIncremental(const QString &txt, Find::FindFlags findFlags);
62     IFindSupport::Result findStep(const QString &txt, Find::FindFlags findFlags);
63     void replace(const QString &before, const QString &after,
64         Find::FindFlags findFlags);
65     bool replaceStep(const QString &before, const QString &after,
66         Find::FindFlags findFlags);
67     int replaceAll(const QString &before, const QString &after,
68         Find::FindFlags findFlags);
69     void defineFindScope();
70     void clearFindScope();
71     void acceptCandidate();
72
73     void removeConnections();
74     bool setFocusToCurrentFindSupport();
75
76     bool eventFilter(QObject *obj, QEvent *event);
77
78 signals:
79     void changed();
80     void candidateChanged();
81
82 private slots:
83     void updateCandidateFindFilter(QWidget *old, QWidget *now);
84     void clearFindSupport();
85     void aggregationChanged();
86     void candidateAggregationChanged();
87
88 private:
89     void removeFindSupportConnections();
90
91     QPointer<IFindSupport> m_currentFind;
92     QPointer<QWidget> m_currentWidget;
93     QPointer<IFindSupport> m_candidateFind;
94     QPointer<QWidget> m_candidateWidget;
95 };
96
97 } // namespace Internal
98 } // namespace Find
99
100 #endif // CURRENTDOCUMENTFIND_H