Files
qt-creator/src/plugins/coreplugin/coreplugin.cpp

126 lines
3.6 KiB
C++
Raw Normal View History

/**************************************************************************
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
2008-12-02 12:01:29 +01:00
**
** Contact: Nokia Corporation (qt-info@nokia.com)
2008-12-02 12:01:29 +01:00
**
**
** GNU Lesser General Public License Usage
**
2011-04-13 08:42:33 +02:00
** 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.
**
2010-12-17 16:01:08 +01:00
** In addition, as a special exception, Nokia gives you certain additional
2011-04-13 08:42:33 +02:00
** rights. These rights are described in the Nokia Qt LGPL Exception
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
2011-04-13 08:42:33 +02:00
** Other Usage
**
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
2010-12-17 16:01:08 +01:00
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
2008-12-02 12:01:29 +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"
#include "designmode.h"
#include "mimedatabase.h"
2008-12-02 12:01:29 +01:00
#include <extensionsystem/pluginmanager.h>
#include <QtCore/QtPlugin>
#include <QtCore/QDebug>
2008-12-02 12:01:29 +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;
}
if (m_designMode) {
if (m_designMode->designModeIsRequired())
removeObject(m_designMode);
delete m_designMode;
}
2008-12-02 12:01:29 +01:00
// delete FileIconProvider singleton
delete FileIconProvider::instance();
delete m_mainWindow;
}
void CorePlugin::parseArguments(const QStringList &arguments)
{
for (int i = 0; i < arguments.size(); ++i) {
if (arguments.at(i) == QLatin1String("-color")) {
const QString colorcode(arguments.at(i + 1));
m_mainWindow->setOverrideColor(QColor(colorcode));
i++; // skip the argument
}
if (arguments.at(i) == QLatin1String("-presentationMode"))
m_mainWindow->setPresentationModeEnabled(true);
}
}
bool CorePlugin::initialize(const QStringList &arguments, QString *errorMessage)
2008-12-02 12:01:29 +01:00
{
parseArguments(arguments);
const bool success = m_mainWindow->init(errorMessage);
2008-12-02 12:01:29 +01:00
if (success) {
2011-04-14 12:28:21 +02:00
m_editMode = new EditMode;
2008-12-02 12:01:29 +01:00
addObject(m_editMode);
m_mainWindow->modeManager()->activateMode(m_editMode->id());
2011-04-14 12:28:21 +02:00
m_designMode = new DesignMode;
2008-12-02 12:01:29 +01:00
}
return success;
}
void CorePlugin::extensionsInitialized()
{
m_mainWindow->mimeDatabase()->syncUserModifiedMimeTypes();
if (m_designMode->designModeIsRequired())
addObject(m_designMode);
2008-12-02 12:01:29 +01:00
m_mainWindow->extensionsInitialized();
}
void CorePlugin::remoteCommand(const QStringList & /* options */, const QStringList &args)
2008-12-02 12:01:29 +01:00
{
m_mainWindow->openFiles(args, ICore::SwitchMode);
m_mainWindow->activateWindow();
}
void CorePlugin::fileOpenRequest(const QString &f)
{
remoteCommand(QStringList(), QStringList(f));
2008-12-02 12:01:29 +01:00
}
ExtensionSystem::IPlugin::ShutdownFlag CorePlugin::aboutToShutdown()
{
m_mainWindow->aboutToShutdown();
return SynchronousShutdown;
}
2008-12-02 12:01:29 +01:00
Q_EXPORT_PLUGIN(CorePlugin)