OSDN Git Service

It's 2011 now.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / projectexplorer / foldernavigationwidget.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 FOLDERNAVIGATIONWIDGET_H
35 #define FOLDERNAVIGATIONWIDGET_H
36
37 #include <coreplugin/inavigationwidgetfactory.h>
38
39 #include <QtGui/QWidget>
40
41 QT_BEGIN_NAMESPACE
42 class QLabel;
43 class QListView;
44 class QSortFilterProxyModel;
45 class QModelIndex;
46 class QFileSystemModel;
47 class QDir;
48 class QAction;
49 QT_END_NAMESPACE
50
51 namespace ProjectExplorer {
52
53 class ProjectExplorerPlugin;
54 class Project;
55 class Node;
56
57 namespace Internal {
58
59 class FolderNavigationWidget : public QWidget
60 {
61     Q_OBJECT
62     Q_PROPERTY(bool autoSynchronization READ autoSynchronization WRITE setAutoSynchronization)
63 public:
64     FolderNavigationWidget(QWidget *parent = 0);
65
66     bool autoSynchronization() const;
67
68
69     // Helpers for common directory browser options.
70     static void showInGraphicalShell(QWidget *parent, const QString &path);
71     static void openTerminal(const QString &path);
72     // Platform-dependent action descriptions
73     static QString msgGraphicalShellAction();
74     static QString msgTerminalAction();
75
76 public slots:
77     void setAutoSynchronization(bool sync);
78     void toggleAutoSynchronization();
79
80 private slots:
81     void setCurrentFile(const QString &filePath);
82     void slotOpenItem(const QModelIndex &viewIndex);
83
84 protected:
85     virtual void contextMenuEvent(QContextMenuEvent *ev);
86
87 private:
88     void setCurrentTitle(QString dirName, const QString &fullPath);
89     bool setCurrentDirectory(const QString &directory);
90     void openItem(const QModelIndex &srcIndex);
91     QModelIndex currentItem() const;
92     QString currentDirectory() const;
93
94     QListView *m_listView;
95     QFileSystemModel *m_fileSystemModel;
96     QSortFilterProxyModel *m_filterModel;
97     QLabel *m_title;
98     bool m_autoSync;
99 };
100
101 class FolderNavigationWidgetFactory : public Core::INavigationWidgetFactory
102 {
103     Q_OBJECT
104 public:
105     FolderNavigationWidgetFactory();
106     ~FolderNavigationWidgetFactory();
107
108     QString displayName() const;
109     int priority() const;
110     QString id() const;
111     QKeySequence activationSequence() const;
112     Core::NavigationView createWidget();
113 };
114
115 } // namespace Internal
116 } // namespace ProjectExplorer
117
118 #endif // FOLDERNAVIGATIONWIDGET_H