2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
2014-10-01 13:21:18 +02:00
|
|
|
** conditions see http://www.qt.io/licensing. For further information
|
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2012-10-02 09:12:39 +02:00
|
|
|
**
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "coreplugin.h"
|
2012-02-02 10:47:33 +01:00
|
|
|
#include "designmode.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "editmode.h"
|
2012-02-02 10:47:33 +01:00
|
|
|
#include "helpmanager.h"
|
|
|
|
#include "mainwindow.h"
|
2011-02-22 15:11:50 +01:00
|
|
|
#include "mimedatabase.h"
|
2012-02-02 10:47:33 +01:00
|
|
|
#include "modemanager.h"
|
2013-01-10 18:18:28 +02:00
|
|
|
#include "infobar.h"
|
2014-07-29 16:39:03 +02:00
|
|
|
#include "iwizardfactory.h"
|
2014-01-13 16:17:34 +01:00
|
|
|
|
2013-08-29 16:36:42 +02:00
|
|
|
#include <coreplugin/actionmanager/actionmanager.h>
|
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
2014-01-13 16:17:34 +01:00
|
|
|
#include <coreplugin/find/findplugin.h>
|
2014-01-10 18:02:20 +01:00
|
|
|
#include <coreplugin/locator/locator.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2014-10-15 09:59:55 +02:00
|
|
|
#include <utils/macroexpander.h>
|
2013-01-28 21:15:04 +01:00
|
|
|
#include <utils/savefile.h>
|
2009-01-19 12:39:20 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QtPlugin>
|
|
|
|
#include <QDebug>
|
2013-02-28 11:42:50 +02:00
|
|
|
#include <QDateTime>
|
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;
|
|
|
|
|
2013-09-03 15:18:37 +02:00
|
|
|
CorePlugin::CorePlugin() : m_editMode(0), m_designMode(0)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2013-09-03 15:18:37 +02:00
|
|
|
qRegisterMetaType<Core::Id>();
|
|
|
|
m_mainWindow = new MainWindow;
|
2014-01-13 16:17:34 +01:00
|
|
|
m_findPlugin = new FindPlugin;
|
2014-01-10 18:02:20 +01:00
|
|
|
m_locator = new Locator;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
CorePlugin::~CorePlugin()
|
|
|
|
{
|
2014-07-29 16:39:03 +02:00
|
|
|
IWizardFactory::destroyFeatureProvider();
|
|
|
|
|
2014-01-13 16:17:34 +01:00
|
|
|
delete m_findPlugin;
|
2014-01-10 18:02:20 +01:00
|
|
|
delete m_locator;
|
2014-01-13 16:17:34 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
if (m_editMode) {
|
|
|
|
removeObject(m_editMode);
|
|
|
|
delete m_editMode;
|
|
|
|
}
|
|
|
|
|
2010-02-26 11:08:17 +01:00
|
|
|
if (m_designMode) {
|
2011-10-19 13:05:53 +02:00
|
|
|
if (m_designMode->designModeIsRequired())
|
|
|
|
removeObject(m_designMode);
|
2010-02-26 11:08:17 +01:00
|
|
|
delete m_designMode;
|
|
|
|
}
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
delete m_mainWindow;
|
|
|
|
}
|
|
|
|
|
2009-11-25 18:44:54 +01:00
|
|
|
void CorePlugin::parseArguments(const QStringList &arguments)
|
|
|
|
{
|
2011-10-14 13:01:07 +00:00
|
|
|
for (int i = 0; i < arguments.size(); ++i) {
|
2009-11-25 18:44:54 +01:00
|
|
|
if (arguments.at(i) == QLatin1String("-color")) {
|
|
|
|
const QString colorcode(arguments.at(i + 1));
|
|
|
|
m_mainWindow->setOverrideColor(QColor(colorcode));
|
|
|
|
i++; // skip the argument
|
|
|
|
}
|
2011-10-14 13:01:07 +00:00
|
|
|
if (arguments.at(i) == QLatin1String("-presentationMode"))
|
2012-05-24 13:49:06 +02:00
|
|
|
ActionManager::setPresentationModeEnabled(true);
|
2009-11-25 18:44:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-26 14:25:03 +01:00
|
|
|
bool CorePlugin::initialize(const QStringList &arguments, QString *errorMessage)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2013-02-28 11:42:50 +02:00
|
|
|
qsrand(QDateTime::currentDateTime().toTime_t());
|
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) {
|
2011-04-14 12:28:21 +02:00
|
|
|
m_editMode = new EditMode;
|
2008-12-02 12:01:29 +01:00
|
|
|
addObject(m_editMode);
|
2012-05-07 18:28:03 +02:00
|
|
|
ModeManager::activateMode(m_editMode->id());
|
2011-04-14 12:28:21 +02:00
|
|
|
m_designMode = new DesignMode;
|
2013-01-10 18:18:28 +02:00
|
|
|
InfoBar::initializeGloballySuppressed();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2013-01-28 21:15:04 +01:00
|
|
|
|
|
|
|
// Make sure we respect the process's umask when creating new files
|
|
|
|
Utils::SaveFile::initializeUmask();
|
|
|
|
|
2014-01-13 16:17:34 +01:00
|
|
|
m_findPlugin->initialize(arguments, errorMessage);
|
2014-01-10 18:02:20 +01:00
|
|
|
m_locator->initialize(this, arguments, errorMessage);
|
2014-01-13 16:17:34 +01:00
|
|
|
|
2014-10-15 09:59:55 +02:00
|
|
|
Utils::MacroExpander *expander = Utils::globalMacroExpander();
|
|
|
|
expander->registerVariable("CurrentDate:ISO", tr("The current date (ISO)."),
|
|
|
|
[]() { return QDate::currentDate().toString(Qt::ISODate); });
|
|
|
|
expander->registerVariable("CurrentTime:ISO", tr("The current time (ISO)."),
|
|
|
|
[]() { return QTime::currentTime().toString(Qt::ISODate); });
|
|
|
|
expander->registerVariable("CurrentDate:RFC", tr("The current date (RFC2822)."),
|
|
|
|
[]() { return QDate::currentDate().toString(Qt::RFC2822Date); });
|
|
|
|
expander->registerVariable("CurrentTime:RFC", tr("The current time (RFC2822)."),
|
|
|
|
[]() { return QTime::currentTime().toString(Qt::RFC2822Date); });
|
|
|
|
expander->registerVariable("CurrentDate:Locale", tr("The current date (Locale)."),
|
|
|
|
[]() { return QDate::currentDate().toString(Qt::DefaultLocaleShortDate); });
|
|
|
|
expander->registerVariable("CurrentTime:Locale", tr("The current time (Locale)."),
|
|
|
|
[]() { return QTime::currentTime().toString(Qt::DefaultLocaleShortDate); });
|
|
|
|
expander->registerPrefix("CurrentDate:", tr("The current date (QDate formatstring)"),
|
|
|
|
[](const QString &fmt) { return QDate::currentDate().toString(fmt); });
|
|
|
|
expander->registerPrefix("CurrentTime:", tr("The current time (QTime formatstring)"),
|
|
|
|
[](const QString &fmt) { return QTime::currentTime().toString(fmt); });
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CorePlugin::extensionsInitialized()
|
|
|
|
{
|
2013-09-03 11:57:37 +02:00
|
|
|
MimeDatabase::syncUserModifiedMimeTypes();
|
2011-10-19 13:05:53 +02:00
|
|
|
if (m_designMode->designModeIsRequired())
|
|
|
|
addObject(m_designMode);
|
2014-01-13 16:17:34 +01:00
|
|
|
m_findPlugin->extensionsInitialized();
|
2014-01-10 18:02:20 +01:00
|
|
|
m_locator->extensionsInitialized();
|
2014-02-24 17:05:33 +01:00
|
|
|
m_mainWindow->extensionsInitialized();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
2012-02-02 10:47:33 +01:00
|
|
|
bool CorePlugin::delayedInitialize()
|
|
|
|
{
|
2013-08-29 19:00:34 +02:00
|
|
|
HelpManager::setupHelpManager();
|
2014-01-10 18:02:20 +01:00
|
|
|
m_locator->delayedInitialize();
|
2012-02-02 10:47:33 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-03-11 18:15:49 +02:00
|
|
|
QObject *CorePlugin::remoteCommand(const QStringList & /* options */, const QStringList &args)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2013-03-11 18:15:49 +02:00
|
|
|
IDocument *res = m_mainWindow->openFiles(
|
|
|
|
args, ICore::OpenFilesFlags(ICore::SwitchMode | ICore::CanContainLineNumbers));
|
2013-04-15 12:53:34 +02:00
|
|
|
m_mainWindow->raiseWindow();
|
2013-03-11 18:15:49 +02:00
|
|
|
return res;
|
2009-12-14 18:01:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2014-02-13 17:13:13 +01:00
|
|
|
m_findPlugin->aboutToShutdown();
|
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
|
|
|
}
|