OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qt4projectmanager / wizards / mobileappwizardpages.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 MOBILEAPPWIZARDPAGES_H
34 #define MOBILEAPPWIZARDPAGES_H
35
36 #include "abstractmobileapp.h"
37
38 #include <QtGui/QWizardPage>
39
40 namespace Qt4ProjectManager {
41 namespace Internal {
42
43 class MobileAppWizardGenericOptionsPage : public QWizardPage
44 {
45     Q_OBJECT
46     Q_DISABLE_COPY(MobileAppWizardGenericOptionsPage)
47
48 public:
49     explicit MobileAppWizardGenericOptionsPage(QWidget *parent = 0);
50     virtual ~MobileAppWizardGenericOptionsPage();
51
52     void setOrientation(AbstractMobileApp::ScreenOrientation orientation);
53     AbstractMobileApp::ScreenOrientation orientation() const;
54
55 private:
56     class MobileAppWizardGenericOptionsPagePrivate *m_d;
57 };
58
59 class MobileAppWizardSymbianOptionsPage : public QWizardPage
60 {
61     Q_OBJECT
62     Q_DISABLE_COPY(MobileAppWizardSymbianOptionsPage)
63
64 public:
65     explicit MobileAppWizardSymbianOptionsPage(QWidget *parent = 0);
66     virtual ~MobileAppWizardSymbianOptionsPage();
67
68     QString svgIcon() const;
69     void setSvgIcon(const QString &icon);
70     QString symbianUid() const;
71     void setNetworkEnabled(bool enableIt);
72     bool networkEnabled() const;
73     void setSymbianUid(const QString &uid);
74
75 private slots:
76     void openSvgIcon(); // Via file open dialog
77
78 private:
79     class MobileAppWizardSymbianOptionsPagePrivate *m_d;
80 };
81
82 class MobileAppWizardMaemoOptionsPage : public QWizardPage
83 {
84     Q_OBJECT
85     Q_DISABLE_COPY(MobileAppWizardMaemoOptionsPage)
86
87 public:
88     explicit MobileAppWizardMaemoOptionsPage(QWidget *parent = 0);
89     virtual ~MobileAppWizardMaemoOptionsPage();
90
91     QString pngIcon() const;
92     void setPngIcon(const QString &icon);
93
94 private slots:
95     void openPngIcon();
96
97 private:
98     class MobileAppWizardMaemoOptionsPagePrivate *m_d;
99 };
100
101 } // namespace Internal
102 } // namespace Qt4ProjectManager
103
104 #endif // MOBILEAPPWIZARDPAGES_H