OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / coreplugin / navigationsubwidget.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 NAVIGATIONSSUBWIDGET_H
34 #define NAVIGATIONSSUBWIDGET_H
35
36 #include <QtGui/QComboBox>
37
38 #include <QtCore/QList>
39
40 QT_BEGIN_NAMESPACE
41 class QToolButton;
42 QT_END_NAMESPACE
43
44 namespace Utils {
45 class StyledBar;
46 }
47
48 namespace Core {
49 class INavigationWidgetFactory;
50 class IMode;
51 class Command;
52 class NavigationWidget;
53
54 namespace Internal {
55
56 class NavigationSubWidget : public QWidget
57 {
58     Q_OBJECT
59 public:
60     NavigationSubWidget(NavigationWidget *parentWidget, int position, int index);
61     virtual ~NavigationSubWidget();
62
63     INavigationWidgetFactory *factory();
64
65     int factoryIndex() const;
66     void setFactoryIndex(int i);
67
68     void setFocusWidget();
69
70     int position() const;
71     void setPosition(int i);
72
73     void saveSettings();
74     void restoreSettings();
75
76     Core::Command *command(const QString &title) const;
77
78 signals:
79     void splitMe();
80     void closeMe();
81
82 private slots:
83     void comboBoxIndexChanged(int);
84
85 private:
86     NavigationWidget *m_parentWidget;
87     QComboBox *m_navigationComboBox;
88     QWidget *m_navigationWidget;
89     INavigationWidgetFactory *m_navigationWidgetFactory;
90     Utils::StyledBar *m_toolBar;
91     QList<QToolButton *> m_additionalToolBarWidgets;
92     int m_position;
93 };
94
95 // A combo associated with a command. Shows the command text
96 // and shortcut in the tooltip.
97 class CommandComboBox : public QComboBox
98 {
99     Q_OBJECT
100
101 public:
102     explicit CommandComboBox(QWidget *parent = 0);
103
104 protected:
105     bool event(QEvent *event);
106
107 private:
108     virtual const Core::Command *command(const QString &text) const = 0;
109 };
110
111
112 class NavComboBox : public CommandComboBox
113 {
114     Q_OBJECT
115
116 public:
117     explicit NavComboBox(NavigationSubWidget *navSubWidget) :
118         m_navSubWidget(navSubWidget) {}
119
120 private:
121     virtual const Core::Command *command(const QString &text) const
122         { return m_navSubWidget->command(text); }
123
124     NavigationSubWidget *m_navSubWidget;
125 };
126
127 } // namespace Internal
128 } // namespace Core
129
130 #endif // NAVIGATIONSSUBWIDGET_H