OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / cpaster / fileshareprotocolsettingspage.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 FILESHAREPROTOCOLSETTINGSPAGE_H
34 #define FILESHAREPROTOCOLSETTINGSPAGE_H
35
36 #include <coreplugin/dialogs/ioptionspage.h>
37 #include "ui_fileshareprotocolsettingswidget.h"
38
39 #include <QtCore/QSharedPointer>
40 #include <QtCore/QPointer>
41 #include <QtGui/QWidget>
42
43 QT_BEGIN_NAMESPACE
44 class QSettings;
45 QT_END_NAMESPACE
46
47 namespace CodePaster {
48
49 struct FileShareProtocolSettings {
50     FileShareProtocolSettings();
51     void toSettings(QSettings *) const;
52     void fromSettings(const QSettings *);
53     bool equals(const FileShareProtocolSettings &rhs) const;
54
55     QString path;
56     int displayCount;
57 };
58
59 inline bool operator==(const FileShareProtocolSettings &s1, const FileShareProtocolSettings &s2)
60 { return s1.equals(s2); }
61 inline bool operator!=(const FileShareProtocolSettings &s1, const FileShareProtocolSettings &s2)
62 { return !s1.equals(s2); }
63
64 class FileShareProtocolSettingsWidget : public QWidget {
65     Q_OBJECT
66 public:
67     explicit FileShareProtocolSettingsWidget(QWidget *parent = 0);
68
69     void setSettings(const FileShareProtocolSettings &);
70     FileShareProtocolSettings settings() const;
71
72 private:
73     Ui::FileShareProtocolSettingsWidget m_ui;
74 };
75 class FileShareProtocolSettingsPage : public Core::IOptionsPage
76 {
77     Q_OBJECT
78 public:
79     explicit FileShareProtocolSettingsPage(const QSharedPointer<FileShareProtocolSettings> &s,
80                                            QObject *parent = 0);
81
82     QString id() const;
83     QString displayName() const;
84     QString category() const;
85     QString displayCategory() const;
86     QIcon categoryIcon() const;
87
88     QWidget *createPage(QWidget *parent);
89     void apply();
90     void finish() { }
91
92 private:
93     const QSharedPointer<FileShareProtocolSettings> m_settings;
94     QPointer<FileShareProtocolSettingsWidget> m_widget;
95 };
96 } // namespace CodePaster
97
98 #endif // FILESHAREPROTOCOLSETTINGSPAGE_H