OSDN Git Service

6f111aba0caa3ed1bd5b005a15bb5224fc0d92a1
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qt4projectmanager / wizards / librarywizarddialog.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 LIBRARYWIZARDDIALOG_H
35 #define LIBRARYWIZARDDIALOG_H
36
37 #include "qtwizard.h"
38 #include "qtprojectparameters.h"
39
40 namespace Qt4ProjectManager {
41 namespace Internal {
42
43 struct QtProjectParameters;
44 class FilesPage;
45 class MobileLibraryWizardOptionPage;
46 struct LibraryParameters;
47 struct MobileLibraryParameters;
48
49 // Library wizard dialog.
50 class LibraryWizardDialog : public BaseQt4ProjectWizardDialog
51 {
52     Q_OBJECT
53
54 public:
55     LibraryWizardDialog(const QString &templateName,
56                         const QIcon &icon,
57                         const QList<QWizardPage*> &extensionPages,
58                         bool showModulesPage,
59                         QWidget *parent = 0);
60
61     void setSuffixes(const QString &header, const QString &source,  const QString &form= QString());
62     void setLowerCaseFiles(bool);
63     void setSymbianUid(const QString &uid);
64
65     QtProjectParameters parameters() const;
66     LibraryParameters libraryParameters() const;
67     MobileLibraryParameters mobileLibraryParameters() const;
68
69     virtual int nextId() const;
70
71 protected:
72     void initializePage(int id);
73     void cleanupPage(int id);
74
75 private slots:
76     void slotCurrentIdChanged(int);
77
78 private:
79     QtProjectParameters::Type type() const;
80     void setupFilesPage();
81     void setupMobilePage();
82     bool isModulesPageSkipped() const;
83     int skipModulesPageIfNeeded() const;
84
85     FilesPage *m_filesPage;
86     MobileLibraryWizardOptionPage *m_mobilePage;
87     bool m_pluginBaseClassesInitialized;
88     int m_filesPageId;
89     int m_modulesPageId;
90     int m_targetPageId;
91     int m_mobilePageId;
92 };
93
94 } // namespace Internal
95 } // namespace Qt4ProjectManager
96
97 #endif // LIBRARYWIZARDDIALOG_H