OSDN Git Service

a032ee218b5755a36c1b358dd009895be61c5efd
[qt-creator-jp/qt-creator-jp.git] / src / plugins / designer / cpp / cppsettingspage.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 CPPSETTINGSPAGE_H
35 #define CPPSETTINGSPAGE_H
36
37 #include "ui_cppsettingspagewidget.h"
38 #include "qtdesignerformclasscodegenerator.h"
39
40 #include <coreplugin/dialogs/ioptionspage.h>
41
42 #include <QtCore/QPointer>
43
44 namespace Designer {
45 namespace Internal {
46
47 class CppSettingsPageWidget : public QWidget
48 {
49     Q_OBJECT
50 public:
51     explicit CppSettingsPageWidget(QWidget *parent = 0);
52
53     FormClassWizardGenerationParameters parameters() const;
54     void setParameters(const FormClassWizardGenerationParameters &p);
55
56     QString searchKeywords() const;
57
58 private:
59     int uiEmbedding() const;
60     void setUiEmbedding(int);
61
62     Ui::CppSettingsPageWidget m_ui;
63 };
64
65 class CppSettingsPage : public Core::IOptionsPage
66 {
67 public:
68     explicit CppSettingsPage(QObject *parent = 0);
69
70     virtual QString id() const;
71     virtual QString displayName() const;
72     virtual QString category() const;
73     virtual QString displayCategory() const;
74     virtual QIcon categoryIcon() const;
75
76     virtual QWidget *createPage(QWidget *parent);
77     virtual void apply();
78     virtual void finish();
79     virtual bool matches(const QString &s) const;
80
81 private:
82     QPointer<CppSettingsPageWidget> m_widget;
83     FormClassWizardGenerationParameters m_parameters;
84     QString m_searchKeywords;
85 };
86
87 } // namespace Internal
88 } // namespace Designer
89
90 #endif // CPPSETTINGSPAGE_H