OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qt4projectmanager / qt-s60 / s60publishingwizardovi.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 ** GNU Lesser General Public License Usage
10 **
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this file.
14 ** Please review the following information to ensure the GNU Lesser General
15 ** Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** Other Usage
23 **
24 ** Alternatively, this file may be used in accordance with the terms and
25 ** conditions contained in a signed written agreement between you and Nokia.
26 **
27 ** If you have questions regarding the use of this file, please contact
28 ** Nokia at qt-info@nokia.com.
29 **
30 **************************************************************************/
31
32 #ifndef S60PUBLISHINGWIZARDOVI_H
33 #define S60PUBLISHINGWIZARDOVI_H
34
35 #include <utils/wizard.h>
36
37 namespace ProjectExplorer {
38 class Project;
39 }
40
41 namespace Qt4ProjectManager {
42 namespace Internal {
43 class S60PublisherOvi;
44 class S60PublishingBuildSettingsPageOvi;
45 class S60PublishingSisSettingsPageOvi;
46 class S60PublishingResultsPageOvi;
47
48 class S60PublishingWizardOvi : public Utils::Wizard
49 {
50     Q_OBJECT
51 public:
52     explicit S60PublishingWizardOvi(const ProjectExplorer::Project *project, QWidget *parent = 0);
53     ~S60PublishingWizardOvi();
54
55 private:
56     S60PublisherOvi *m_publisher;
57     S60PublishingBuildSettingsPageOvi *m_buildSettingsPage;
58     S60PublishingSisSettingsPageOvi *m_sisSettingsPage;
59     S60PublishingResultsPageOvi *m_resultsPage;
60 };
61
62 } // namespace Internal
63 } // namespace Qt4ProjectManager
64
65 #endif // S60PUBLISHINGWIZARDOVI_H