OSDN Git Service

a30696ef357a91a964297ced3598051e6fd4d77b
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qmlprojectmanager / qmlprojectplugin.cpp
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 #include "qmlprojectplugin.h"
35 #include "qmlprojectmanager.h"
36 #include "qmlprojectapplicationwizard.h"
37 #include "qmlprojectconstants.h"
38 #include "qmlproject.h"
39 #include "qmlprojectrunconfigurationfactory.h"
40 #include "qmlprojectruncontrol.h"
41 #include "qmlprojecttarget.h"
42 #include "fileformat/qmlprojectfileformat.h"
43
44 #include <extensionsystem/pluginmanager.h>
45
46 #include <coreplugin/fileiconprovider.h>
47 #include <coreplugin/icore.h>
48 #include <coreplugin/mimedatabase.h>
49
50 #include <texteditor/texteditoractionhandler.h>
51
52 #include <projectexplorer/taskhub.h>
53
54 #include <QtCore/QtPlugin>
55
56 namespace QmlProjectManager {
57 namespace Internal {
58
59 QmlProjectPlugin::QmlProjectPlugin()
60 { }
61
62 QmlProjectPlugin::~QmlProjectPlugin()
63 {
64 }
65
66 bool QmlProjectPlugin::initialize(const QStringList &, QString *errorMessage)
67 {
68     using namespace Core;
69
70     ICore *core = ICore::instance();
71     Core::MimeDatabase *mimeDB = core->mimeDatabase();
72
73     const QLatin1String mimetypesXml(":/qmlproject/QmlProject.mimetypes.xml");
74
75     if (! mimeDB->addMimeTypes(mimetypesXml, errorMessage))
76         return false;
77
78     Manager *manager = new Manager;
79
80     addAutoReleasedObject(manager);
81     addAutoReleasedObject(new Internal::QmlProjectRunConfigurationFactory);
82     addAutoReleasedObject(new Internal::QmlRunControlFactory);
83     addAutoReleasedObject(new QmlProjectApplicationWizard);
84     addAutoReleasedObject(new QmlProjectTargetFactory);
85
86     QmlProjectFileFormat::registerDeclarativeTypes();
87
88     Core::FileIconProvider *iconProvider = Core::FileIconProvider::instance();
89     iconProvider->registerIconOverlayForSuffix(QIcon(QLatin1String(":/qmlproject/images/qmlproject.png")), "qmlproject");
90     return true;
91 }
92
93 void QmlProjectPlugin::extensionsInitialized()
94 {
95 }
96
97 } // namespace Internal
98 } // namespace QmlProjectManager
99
100 Q_EXPORT_PLUGIN(QmlProjectManager::Internal::QmlProjectPlugin)