OSDN Git Service

3aa84a0a82c10e368cadafeb0a600abddcdf3512
[qt-creator-jp/qt-creator-jp.git] / src / libs / utils / projectintropage.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 PROJECTINTROPAGE_H
35 #define PROJECTINTROPAGE_H
36
37 #include "utils_global.h"
38
39 #include <QtGui/QWizardPage>
40
41 namespace Utils {
42
43 struct ProjectIntroPagePrivate;
44
45 class QTCREATOR_UTILS_EXPORT ProjectIntroPage : public QWizardPage
46 {
47     Q_OBJECT
48     Q_DISABLE_COPY(ProjectIntroPage)
49     Q_PROPERTY(QString description READ description WRITE setPath DESIGNABLE true)
50     Q_PROPERTY(QString path READ path WRITE setPath DESIGNABLE true)
51     Q_PROPERTY(QString projectName READ projectName WRITE setProjectName DESIGNABLE true)
52     Q_PROPERTY(bool useAsDefaultPath READ useAsDefaultPath WRITE setUseAsDefaultPath DESIGNABLE true)
53 public:
54     explicit ProjectIntroPage(QWidget *parent = 0);
55     virtual ~ProjectIntroPage();
56
57     QString projectName() const;
58     QString path() const;
59     QString description() const;
60     bool useAsDefaultPath() const;
61
62     // Insert an additional control into the form layout for the target.
63     void insertControl(int row, QWidget *label, QWidget *control);
64
65     virtual bool isComplete() const;
66
67     // Validate a project directory name entry field
68     static bool validateProjectDirectory(const QString &name, QString *errorMessage);
69
70 signals:
71     void activated();
72
73 public slots:
74     void setPath(const QString &path);
75     void setProjectName(const QString &name);
76     void setDescription(const QString &description);
77     void setUseAsDefaultPath(bool u);
78
79 private slots:
80     void slotChanged();
81     void slotActivated();
82
83 protected:
84     virtual void changeEvent(QEvent *e);
85
86 private:
87     enum StatusLabelMode { Error, Warning, Hint };
88
89     bool validate();
90     void displayStatusMessage(StatusLabelMode m, const QString &);
91     void hideStatusLabel();
92
93     ProjectIntroPagePrivate *m_d;
94 };
95
96 } // namespace Utils
97
98 #endif // PROJECTINTROPAGE_H