OSDN Git Service

It's 2011 now.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / locator / locatorwidget.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 LOCATORWIDGET_H
35 #define LOCATORWIDGET_H
36
37 #include "locatorplugin.h"
38
39 #include <QtGui/QWidget>
40
41 QT_BEGIN_NAMESPACE
42 class QAction;
43 class QLabel;
44 class QLineEdit;
45 class QMenu;
46 class QTreeView;
47 QT_END_NAMESPACE
48
49 namespace Utils {
50     class FilterLineEdit;
51 }
52
53 namespace Locator {
54 namespace Internal {
55
56 class LocatorModel;
57 class CompletionList;
58
59 class LocatorWidget
60   : public QWidget
61 {
62     Q_OBJECT
63
64 public:
65     explicit LocatorWidget(LocatorPlugin *qop);
66
67     void updateFilterList();
68
69     void show(const QString &text, int selectionStart = -1, int selectionLength = 0);
70
71 private slots:
72     void showPopup();
73     void showPopupNow();
74     void acceptCurrentEntry();
75     void filterSelected();
76     void showConfigureDialog();
77     void updateEntries();
78
79 private:
80     bool eventFilter(QObject *obj, QEvent *event);
81
82     void showEvent(QShowEvent *e);
83
84     void showCompletionList();
85     void updateCompletionList(const QString &text);
86     QList<ILocatorFilter*> filtersFor(const QString &text, QString &searchText);
87
88     LocatorPlugin *m_locatorPlugin;
89     LocatorModel *m_locatorModel;
90
91     CompletionList *m_completionList;
92     QMenu *m_filterMenu;
93     QAction *m_refreshAction;
94     QAction *m_configureAction;
95     Utils::FilterLineEdit *m_fileLineEdit;
96     QTimer *m_showPopupTimer;
97     QFutureWatcher<FilterEntry> *m_entriesWatcher;
98     QMap<QString, QAction *> m_filterActionMap;
99 };
100
101 } // namespace Internal
102 } // namespace Locator
103
104 #endif // LOCATORWIDGET_H