OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qmldesigner / qmldesignerplugin.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 QMLDESIGNERPLUGIN_H
34 #define QMLDESIGNERPLUGIN_H
35
36 #include <qmldesigner/designersettings.h>
37
38 #include <extensionsystem/iplugin.h>
39
40 #include <QWeakPointer>
41 #include <QStringList>
42
43 QT_BEGIN_NAMESPACE
44 class QAction;
45 QT_END_NAMESPACE
46
47 namespace Core {
48     class Context;
49     class IContext;
50     class IWizard;
51     class ICore;
52     class IEditorFactory;
53     class IEditor;
54     class IMode;
55     class DesignMode;
56     class EditorManager;
57 }
58
59 namespace QmlDesigner {
60     class IntegrationCore;
61 }
62
63 namespace QmlDesigner {
64 namespace Internal {
65
66 class DesignModeWidget;
67 class DesignModeContext;
68
69 class BauhausPlugin : public ExtensionSystem::IPlugin
70 {
71     Q_OBJECT
72
73 public:
74     BauhausPlugin();
75     virtual ~BauhausPlugin();
76
77     //Plugin
78     virtual bool initialize(const QStringList &arguments, QString *error_message = 0);
79     virtual void extensionsInitialized();
80
81     static BauhausPlugin *pluginInstance();
82
83     DesignerSettings settings() const;
84     void setSettings(const DesignerSettings &s);
85
86 private slots:
87
88     void switchTextDesign();
89     void textEditorsClosed(QList<Core::IEditor *> editors);
90     void updateActions(Core::IEditor* editor);
91     void updateEditor(Core::IEditor *editor);
92     void contextChanged(Core::IContext *context, const Core::Context &additionalContexts);
93
94 private:
95     void createDesignModeWidget();
96
97     QStringList m_mimeTypes;
98     DesignModeWidget *m_mainWidget;
99
100     QmlDesigner::IntegrationCore *m_designerCore;
101     static BauhausPlugin *m_pluginInstance;
102     DesignerSettings m_settings;
103     DesignModeContext *m_context;
104     Core::DesignMode *m_designMode;
105     Core::EditorManager *m_editorManager;
106     bool m_isActive;
107
108     QAction *m_revertToSavedAction;
109     QAction *m_saveAction;
110     QAction *m_saveAsAction;
111     QAction *m_closeCurrentEditorAction;
112     QAction *m_closeAllEditorsAction;
113     QAction *m_closeOtherEditorsAction;
114 };
115
116 } // namespace Internal
117 } // namespace QmlDesigner
118
119 #endif // QMLDESIGNERPLUGIN_H