2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
**
|
2010-03-05 11:25:49 +01:00
|
|
|
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
** a written agreement between you and Nokia.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "coreplugin.h"
|
|
|
|
#include "editmode.h"
|
|
|
|
#include "editormanager.h"
|
|
|
|
#include "mainwindow.h"
|
|
|
|
#include "modemanager.h"
|
|
|
|
#include "fileiconprovider.h"
|
2010-02-26 11:08:17 +01:00
|
|
|
#include "designmode.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-01-19 12:39:20 +01:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
|
|
|
|
|
|
|
#include <QtCore/QtPlugin>
|
2009-11-25 18:44:54 +01:00
|
|
|
#include <QtCore/QDebug>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-02-26 11:08:17 +01:00
|
|
|
using namespace Core;
|
2008-12-02 12:01:29 +01:00
|
|
|
using namespace Core::Internal;
|
|
|
|
|
|
|
|
CorePlugin::CorePlugin() :
|
2009-07-20 19:08:09 +02:00
|
|
|
m_mainWindow(new MainWindow), m_editMode(0)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CorePlugin::~CorePlugin()
|
|
|
|
{
|
|
|
|
if (m_editMode) {
|
|
|
|
removeObject(m_editMode);
|
|
|
|
delete m_editMode;
|
|
|
|
}
|
|
|
|
|
2010-02-26 11:08:17 +01:00
|
|
|
if (m_designMode) {
|
|
|
|
removeObject(m_designMode);
|
|
|
|
delete m_designMode;
|
|
|
|
}
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
// delete FileIconProvider singleton
|
|
|
|
delete FileIconProvider::instance();
|
|
|
|
|
|
|
|
delete m_mainWindow;
|
|
|
|
}
|
|
|
|
|
2009-11-25 18:44:54 +01:00
|
|
|
void CorePlugin::parseArguments(const QStringList &arguments)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < arguments.size() - 1; i++) {
|
|
|
|
if (arguments.at(i) == QLatin1String("-color")) {
|
|
|
|
const QString colorcode(arguments.at(i + 1));
|
|
|
|
m_mainWindow->setOverrideColor(QColor(colorcode));
|
|
|
|
i++; // skip the argument
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-26 14:25:03 +01:00
|
|
|
bool CorePlugin::initialize(const QStringList &arguments, QString *errorMessage)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-11-25 18:44:54 +01:00
|
|
|
parseArguments(arguments);
|
2009-01-26 14:25:03 +01:00
|
|
|
const bool success = m_mainWindow->init(errorMessage);
|
2008-12-02 12:01:29 +01:00
|
|
|
if (success) {
|
2009-01-21 15:52:34 +01:00
|
|
|
EditorManager *editorManager = m_mainWindow->editorManager();
|
2008-12-02 12:01:29 +01:00
|
|
|
m_editMode = new EditMode(editorManager);
|
|
|
|
addObject(m_editMode);
|
2010-09-06 14:10:08 +02:00
|
|
|
m_mainWindow->modeManager()->activateMode(m_editMode->id());
|
2010-02-26 11:08:17 +01:00
|
|
|
|
|
|
|
m_designMode = new DesignMode(editorManager);
|
|
|
|
addObject(m_designMode);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CorePlugin::extensionsInitialized()
|
|
|
|
{
|
|
|
|
m_mainWindow->extensionsInitialized();
|
|
|
|
}
|
|
|
|
|
2009-12-14 18:01:39 +01:00
|
|
|
void CorePlugin::remoteCommand(const QStringList & /* options */, const QStringList &args)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-09-23 12:32:22 +02:00
|
|
|
m_mainWindow->openFiles(args, ICore::SwitchMode);
|
2009-12-14 18:01:39 +01:00
|
|
|
m_mainWindow->activateWindow();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CorePlugin::fileOpenRequest(const QString &f)
|
|
|
|
{
|
|
|
|
remoteCommand(QStringList(), QStringList(f));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
2010-07-13 13:36:47 +02:00
|
|
|
ExtensionSystem::IPlugin::ShutdownFlag CorePlugin::aboutToShutdown()
|
2009-06-23 14:59:01 +02:00
|
|
|
{
|
2010-04-28 16:59:03 +02:00
|
|
|
m_mainWindow->aboutToShutdown();
|
2010-07-13 13:36:47 +02:00
|
|
|
return SynchronousShutdown;
|
2009-06-23 14:59:01 +02:00
|
|
|
}
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
Q_EXPORT_PLUGIN(CorePlugin)
|