OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / cpptools / cppfindreferences.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 CPPFINDREFERENCES_H
34 #define CPPFINDREFERENCES_H
35
36 #include <QtCore/QMutex>
37 #include <QtCore/QObject>
38 #include <QtCore/QPointer>
39 #include <QtCore/QFuture>
40 #include <QtCore/QFutureWatcher>
41 #include <utils/filesearch.h>
42 #include <cplusplus/CppDocument.h>
43 #include <cplusplus/DependencyTable.h>
44 #include <cplusplus/FindUsages.h>
45
46 QT_FORWARD_DECLARE_CLASS(QTimer)
47
48 namespace Find {
49     class SearchResultWindow;
50     struct SearchResultItem;
51 } // namespace Find
52
53 namespace CPlusPlus {
54 class CppModelManagerInterface;
55 }
56
57 namespace CppTools {
58 namespace Internal {
59
60 class CppFindReferences: public QObject
61 {
62     Q_OBJECT
63
64 public:
65     CppFindReferences(CPlusPlus::CppModelManagerInterface *modelManager);
66     virtual ~CppFindReferences();
67
68     QList<int> references(CPlusPlus::Symbol *symbol, const CPlusPlus::LookupContext &context) const;
69
70 Q_SIGNALS:
71     void changed();
72
73 public:
74     void findUsages(CPlusPlus::Symbol *symbol, const CPlusPlus::LookupContext &context);
75     void renameUsages(CPlusPlus::Symbol *symbol, const CPlusPlus::LookupContext &context,
76                       const QString &replacement = QString());
77
78     void findMacroUses(const CPlusPlus::Macro &macro);
79
80     CPlusPlus::DependencyTable updateDependencyTable(CPlusPlus::Snapshot snapshot);
81
82 private Q_SLOTS:
83     void displayResults(int first, int last);
84     void searchFinished();
85     void openEditor(const Find::SearchResultItem &item);
86     void onReplaceButtonClicked(const QString &text, const QList<Find::SearchResultItem> &items);
87
88 private:
89     void findAll_helper(CPlusPlus::Symbol *symbol, const CPlusPlus::LookupContext &context);
90     CPlusPlus::DependencyTable dependencyTable() const;
91     void setDependencyTable(const CPlusPlus::DependencyTable &newTable);
92
93 private:
94     QPointer<CPlusPlus::CppModelManagerInterface> _modelManager;
95     Find::SearchResultWindow *_resultWindow;
96     QFutureWatcher<CPlusPlus::Usage> m_watcher;
97
98     mutable QMutex m_depsLock;
99     CPlusPlus::DependencyTable m_deps;
100 };
101
102 } // namespace Internal
103 } // namespace CppTools
104
105 #endif // CPPFINDREFERENCES_H