2009-07-20 19:08:09 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2011-01-11 16:28:15 +01:00
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2009-07-20 19:08:09 +02:00
|
|
|
**
|
2011-11-02 15:59:12 +01:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2009-07-20 19:08:09 +02: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.
|
2009-07-20 19:08:09 +02:00
|
|
|
**
|
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
|
2011-11-02 15:59:12 +01:00
|
|
|
** Nokia at qt-info@nokia.com.
|
2009-07-20 19:08:09 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "welcomeplugin.h"
|
2011-04-13 17:09:44 +02:00
|
|
|
|
|
|
|
|
#include <extensionsystem/pluginmanager.h>
|
2009-07-27 13:55:30 +02:00
|
|
|
|
2011-04-13 17:09:44 +02:00
|
|
|
#include <coreplugin/coreconstants.h>
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <coreplugin/imode.h>
|
2009-07-20 19:08:09 +02:00
|
|
|
#include <coreplugin/modemanager.h>
|
2010-11-11 16:49:17 +01:00
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
|
#include <coreplugin/dialogs/iwizard.h>
|
|
|
|
|
|
|
|
|
|
#include <projectexplorer/projectexplorer.h>
|
2009-07-20 19:08:09 +02:00
|
|
|
|
2011-04-13 17:09:44 +02:00
|
|
|
#include <utils/styledbar.h>
|
|
|
|
|
#include <utils/iwelcomepage.h>
|
2011-07-15 15:24:43 +02:00
|
|
|
#include <utils/networkaccessmanager.h>
|
2011-04-13 17:09:44 +02:00
|
|
|
|
|
|
|
|
#include <QtGui/QScrollArea>
|
|
|
|
|
#include <QtGui/QDesktopServices>
|
|
|
|
|
#include <QtGui/QPainter>
|
2010-11-11 16:49:17 +01:00
|
|
|
#include <QtGui/QHBoxLayout>
|
2011-04-13 17:09:44 +02:00
|
|
|
|
2011-08-02 17:11:29 +02:00
|
|
|
#include <QtCore/QCoreApplication>
|
|
|
|
|
#include <QtCore/QDir>
|
2011-04-13 17:09:44 +02:00
|
|
|
#include <QtCore/QSettings>
|
|
|
|
|
#include <QtCore/QDebug>
|
|
|
|
|
#include <QtCore/QUrl>
|
2009-07-20 19:08:09 +02:00
|
|
|
#include <QtCore/QtPlugin>
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
#include <QtDeclarative/QDeclarativeView>
|
|
|
|
|
#include <QtDeclarative/QDeclarativeContext>
|
|
|
|
|
#include <QtDeclarative/QDeclarativeEngine>
|
|
|
|
|
#include <QtDeclarative/QDeclarativeNetworkAccessManagerFactory>
|
|
|
|
|
|
2011-07-22 16:45:41 +02:00
|
|
|
enum { debug = 0 };
|
2009-07-20 19:08:09 +02:00
|
|
|
|
2011-04-13 17:09:44 +02:00
|
|
|
using namespace ExtensionSystem;
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
static const char currentPageSettingsKeyC[] = "WelcomeTab";
|
|
|
|
|
|
2011-04-13 17:09:44 +02:00
|
|
|
namespace Welcome {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
class NetworkAccessManagerFactory : public QDeclarativeNetworkAccessManagerFactory
|
2011-04-13 17:09:44 +02:00
|
|
|
{
|
|
|
|
|
public:
|
2010-11-11 16:49:17 +01:00
|
|
|
NetworkAccessManagerFactory(): QDeclarativeNetworkAccessManagerFactory() {}
|
2011-07-15 15:24:43 +02:00
|
|
|
QNetworkAccessManager* create(QObject *parent) { return new Utils::NetworkAccessManager(parent); }
|
2010-11-11 16:49:17 +01:00
|
|
|
};
|
2011-04-13 17:19:55 +02:00
|
|
|
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
struct WelcomeModePrivate
|
|
|
|
|
{
|
|
|
|
|
|
2011-04-13 17:09:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class WelcomeMode : public Core::IMode
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2010-11-11 16:49:17 +01:00
|
|
|
Q_PROPERTY(int activePlugin READ activePlugin WRITE setActivePlugin NOTIFY activePluginChanged)
|
2011-04-13 17:09:44 +02:00
|
|
|
public:
|
|
|
|
|
WelcomeMode();
|
|
|
|
|
~WelcomeMode();
|
|
|
|
|
|
|
|
|
|
void activated();
|
|
|
|
|
void initPlugins();
|
2010-11-11 16:49:17 +01:00
|
|
|
int activePlugin() const { return m_activePlugin; }
|
|
|
|
|
|
2011-07-01 16:08:21 +02:00
|
|
|
Q_SCRIPTABLE QString platform() const;
|
|
|
|
|
|
2011-07-21 17:21:12 +02:00
|
|
|
bool eventFilter(QObject *, QEvent *);
|
2010-11-11 16:49:17 +01:00
|
|
|
public slots:
|
|
|
|
|
void sendFeedback();
|
|
|
|
|
void newProject();
|
|
|
|
|
void openProject();
|
|
|
|
|
|
|
|
|
|
void setActivePlugin(int pos)
|
|
|
|
|
{
|
|
|
|
|
if (m_activePlugin != pos) {
|
|
|
|
|
m_activePlugin = pos;
|
|
|
|
|
emit activePluginChanged(pos);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
void activePluginChanged(int pos);
|
2011-04-13 17:09:44 +02:00
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void welcomePluginAdded(QObject*);
|
2010-11-11 16:49:17 +01:00
|
|
|
void modeChanged(Core::IMode*);
|
2011-04-13 17:09:44 +02:00
|
|
|
|
|
|
|
|
private:
|
2011-07-15 15:24:43 +02:00
|
|
|
void facilitateQml(QDeclarativeEngine *engine);
|
|
|
|
|
|
2011-06-29 12:17:52 +02:00
|
|
|
QWidget *m_modeWidget;
|
2010-11-11 16:49:17 +01:00
|
|
|
QDeclarativeView *m_welcomePage;
|
|
|
|
|
QHBoxLayout * buttonLayout;
|
|
|
|
|
QList<QObject*> m_pluginList;
|
|
|
|
|
int m_activePlugin;
|
2011-04-13 17:09:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// --- WelcomeMode
|
2010-11-11 16:49:17 +01:00
|
|
|
WelcomeMode::WelcomeMode() :
|
|
|
|
|
m_activePlugin(0)
|
2011-04-13 17:09:44 +02:00
|
|
|
{
|
|
|
|
|
setDisplayName(tr("Welcome"));
|
|
|
|
|
setIcon(QIcon(QLatin1String(Core::Constants::ICON_QTLOGO_32)));
|
|
|
|
|
setPriority(Core::Constants::P_MODE_WELCOME);
|
|
|
|
|
setId(QLatin1String(Core::Constants::MODE_WELCOME));
|
|
|
|
|
setType(QLatin1String(Core::Constants::MODE_WELCOME_TYPE));
|
|
|
|
|
setContextHelpId(QLatin1String("Qt Creator Manual"));
|
2011-04-13 17:19:55 +02:00
|
|
|
setContext(Core::Context(Core::Constants::C_WELCOME_MODE));
|
2010-11-11 16:49:17 +01:00
|
|
|
|
|
|
|
|
m_welcomePage = new QDeclarativeView;
|
|
|
|
|
m_welcomePage->setResizeMode(QDeclarativeView::SizeRootObjectToView);
|
2011-07-21 17:21:12 +02:00
|
|
|
// filter to forward dragEnter events
|
|
|
|
|
m_welcomePage->installEventFilter(this);
|
|
|
|
|
m_welcomePage->viewport()->installEventFilter(this);
|
2010-11-11 16:49:17 +01:00
|
|
|
|
2011-06-29 12:17:52 +02:00
|
|
|
m_modeWidget = new QWidget;
|
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout;
|
|
|
|
|
layout->setMargin(0);
|
|
|
|
|
layout->setSpacing(0);
|
2011-07-07 14:59:34 +02:00
|
|
|
// layout->addWidget(new Utils::StyledBar);
|
2011-06-29 12:17:52 +02:00
|
|
|
layout->addWidget(m_welcomePage);
|
|
|
|
|
m_modeWidget->setLayout(layout);
|
2011-04-13 17:09:44 +02:00
|
|
|
|
|
|
|
|
PluginManager *pluginManager = PluginManager::instance();
|
|
|
|
|
connect(pluginManager, SIGNAL(objectAdded(QObject*)), SLOT(welcomePluginAdded(QObject*)));
|
|
|
|
|
|
2011-09-02 17:15:18 +02:00
|
|
|
Core::ModeManager *modeManager = Core::ModeManager::instance();
|
2010-11-11 16:49:17 +01:00
|
|
|
connect(modeManager, SIGNAL(currentModeChanged(Core::IMode*)), SLOT(modeChanged(Core::IMode*)));
|
|
|
|
|
|
2011-06-29 12:17:52 +02:00
|
|
|
setWidget(m_modeWidget);
|
2011-04-13 17:09:44 +02:00
|
|
|
}
|
|
|
|
|
|
2011-07-21 17:21:12 +02:00
|
|
|
bool WelcomeMode::eventFilter(QObject *, QEvent *e)
|
|
|
|
|
{
|
|
|
|
|
if (e->type() == QEvent::DragEnter) {
|
|
|
|
|
e->ignore();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-13 17:09:44 +02:00
|
|
|
WelcomeMode::~WelcomeMode()
|
2009-07-20 19:08:09 +02:00
|
|
|
{
|
2011-04-13 17:09:44 +02:00
|
|
|
QSettings *settings = Core::ICore::instance()->settings();
|
2010-11-11 16:49:17 +01:00
|
|
|
settings->setValue(QLatin1String(currentPageSettingsKeyC), activePlugin());
|
2011-06-29 12:17:52 +02:00
|
|
|
delete m_modeWidget;
|
2009-07-20 19:08:09 +02:00
|
|
|
}
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
bool sortFunction(Utils::IWelcomePage * a, Utils::IWelcomePage *b)
|
2011-04-13 17:09:44 +02:00
|
|
|
{
|
|
|
|
|
return a->priority() < b->priority();
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-17 11:59:01 +01:00
|
|
|
void WelcomeMode::facilitateQml(QDeclarativeEngine * /*engine*/)
|
2011-07-15 15:24:43 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-13 17:09:44 +02:00
|
|
|
void WelcomeMode::initPlugins()
|
|
|
|
|
{
|
2010-11-11 16:49:17 +01:00
|
|
|
QSettings *settings = Core::ICore::instance()->settings();
|
|
|
|
|
setActivePlugin(settings->value(QLatin1String(currentPageSettingsKeyC)).toInt());
|
|
|
|
|
|
2012-01-17 11:11:12 +01:00
|
|
|
// TODO: re-enable reading from Settings when possible. See QTCREATORBUG-6803
|
2012-01-18 10:49:46 +01:00
|
|
|
if (activePlugin() > 1)
|
|
|
|
|
setActivePlugin(1);
|
2012-01-17 11:11:12 +01:00
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
QDeclarativeContext *ctx = m_welcomePage->rootContext();
|
2012-01-12 10:15:08 +01:00
|
|
|
ctx->setContextProperty(QLatin1String("welcomeMode"), this);
|
2010-11-11 16:49:17 +01:00
|
|
|
|
2011-04-13 17:09:44 +02:00
|
|
|
QList<Utils::IWelcomePage*> plugins = PluginManager::instance()->getObjects<Utils::IWelcomePage>();
|
|
|
|
|
qSort(plugins.begin(), plugins.end(), &sortFunction);
|
2010-11-11 16:49:17 +01:00
|
|
|
|
|
|
|
|
QDeclarativeEngine *engine = m_welcomePage->engine();
|
2011-07-20 14:33:44 +02:00
|
|
|
if (!debug)
|
|
|
|
|
engine->setOutputWarningsToStandardError(false);
|
2010-11-11 16:49:17 +01:00
|
|
|
engine->setNetworkAccessManagerFactory(new NetworkAccessManagerFactory);
|
2011-08-02 17:11:29 +02:00
|
|
|
QString pluginPath = QCoreApplication::applicationDirPath();
|
|
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
|
pluginPath += QLatin1String("/../PlugIns");
|
|
|
|
|
#else
|
|
|
|
|
pluginPath += QLatin1String("/../" IDE_LIBRARY_BASENAME "/qtcreator");
|
|
|
|
|
#endif
|
|
|
|
|
engine->addImportPath(QDir::cleanPath(pluginPath));
|
2011-07-15 15:24:43 +02:00
|
|
|
facilitateQml(engine);
|
2011-04-13 17:09:44 +02:00
|
|
|
foreach (Utils::IWelcomePage *plugin, plugins) {
|
2010-11-11 16:49:17 +01:00
|
|
|
plugin->facilitateQml(engine);
|
|
|
|
|
m_pluginList.append(plugin);
|
2011-04-13 17:09:44 +02:00
|
|
|
}
|
|
|
|
|
|
2012-01-12 10:15:08 +01:00
|
|
|
ctx->setContextProperty(QLatin1String("pagesModel"), QVariant::fromValue(m_pluginList));
|
2010-11-11 16:49:17 +01:00
|
|
|
|
|
|
|
|
// finally, load the root page
|
|
|
|
|
m_welcomePage->setSource(
|
2012-01-12 10:15:08 +01:00
|
|
|
QUrl::fromLocalFile(Core::ICore::instance()->resourcePath() + QLatin1String("/welcomescreen/welcomescreen.qml")));
|
2011-04-13 17:09:44 +02:00
|
|
|
}
|
|
|
|
|
|
2011-07-01 16:08:21 +02:00
|
|
|
QString WelcomeMode::platform() const
|
|
|
|
|
{
|
|
|
|
|
#if defined(Q_OS_WIN)
|
|
|
|
|
return QLatin1String("windows");
|
|
|
|
|
#elif defined(Q_OS_MAC)
|
|
|
|
|
return QLatin1String("mac");
|
|
|
|
|
#elif defined(Q_OS_LINUX)
|
|
|
|
|
return QLatin1String("linux");
|
|
|
|
|
#elif defined(Q_OS_UNIX)
|
|
|
|
|
return QLatin1String("unix");
|
|
|
|
|
#else
|
|
|
|
|
return QLatin1String("other")
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-13 17:09:44 +02:00
|
|
|
void WelcomeMode::welcomePluginAdded(QObject *obj)
|
|
|
|
|
{
|
2010-11-11 16:49:17 +01:00
|
|
|
if (Utils::IWelcomePage *plugin = qobject_cast<Utils::IWelcomePage*>(obj)) {
|
|
|
|
|
int insertPos = 0;
|
|
|
|
|
foreach (Utils::IWelcomePage* p, PluginManager::instance()->getObjects<Utils::IWelcomePage>()) {
|
|
|
|
|
if (plugin->priority() < p->priority())
|
|
|
|
|
insertPos++;
|
|
|
|
|
else
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
m_pluginList.insert(insertPos, plugin);
|
|
|
|
|
// update model through reset
|
|
|
|
|
QDeclarativeContext *ctx = m_welcomePage->rootContext();
|
2012-01-12 10:15:08 +01:00
|
|
|
ctx->setContextProperty(QLatin1String("pagesModel"), QVariant::fromValue(m_pluginList));
|
2011-04-13 17:09:44 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
void WelcomeMode::sendFeedback()
|
|
|
|
|
{
|
|
|
|
|
QDesktopServices::openUrl(QUrl(QLatin1String(
|
|
|
|
|
"http://qt.nokia.com/forms/feedback-forms/qt-creator-user-feedback/view")));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WelcomeMode::newProject()
|
2011-04-13 17:09:44 +02:00
|
|
|
{
|
2010-11-11 16:49:17 +01:00
|
|
|
Core::ICore::instance()->showNewItemDialog(tr("New Project"),
|
|
|
|
|
Core::IWizard::wizardsOfKind(Core::IWizard::ProjectWizard));
|
2011-04-13 17:09:44 +02:00
|
|
|
}
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
void WelcomeMode::openProject()
|
2011-04-13 17:09:44 +02:00
|
|
|
{
|
2010-11-11 16:49:17 +01:00
|
|
|
ProjectExplorer::ProjectExplorerPlugin::instance()->openOpenProjectDialog();
|
2011-04-13 17:09:44 +02:00
|
|
|
}
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
void WelcomeMode::modeChanged(Core::IMode *mode)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(mode)
|
2011-04-13 17:09:44 +02:00
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
// Eike doesn't like this, but I do...
|
2011-04-13 17:09:44 +02:00
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
// ProjectExplorer::ProjectExplorerPlugin *projectExplorer = ProjectExplorer::ProjectExplorerPlugin::instance();
|
|
|
|
|
// Core::ModeManager *modeManager = Core::ICore::instance()->modeManager();
|
|
|
|
|
// Core::EditorManager *editorManager = Core::ICore::instance()->editorManager();
|
|
|
|
|
// if (mode->id() == id() && (!projectExplorer->currentProject() && editorManager->openedEditors().isEmpty()))
|
|
|
|
|
// modeManager->setModeBarHidden(true);
|
|
|
|
|
// else
|
|
|
|
|
// modeManager->setModeBarHidden(false);
|
|
|
|
|
}
|
2011-04-13 17:09:44 +02:00
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
//
|
2011-04-13 17:09:44 +02:00
|
|
|
|
|
|
|
|
WelcomePlugin::WelcomePlugin()
|
|
|
|
|
: m_welcomeMode(0)
|
2009-07-20 19:08:09 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*! Initializes the plugin. Returns true on success.
|
|
|
|
|
Plugins want to register objects with the plugin manager here.
|
|
|
|
|
|
2011-09-21 13:05:15 +02:00
|
|
|
\a errorMessage can be used to pass an error message to the plugin system,
|
2009-07-20 19:08:09 +02:00
|
|
|
if there was any.
|
|
|
|
|
*/
|
2011-09-21 13:05:15 +02:00
|
|
|
bool WelcomePlugin::initialize(const QStringList & /* arguments */, QString * /* errorMessage */)
|
2009-07-20 19:08:09 +02:00
|
|
|
{
|
|
|
|
|
m_welcomeMode = new WelcomeMode;
|
2010-03-31 11:49:06 +02:00
|
|
|
addAutoReleasedObject(m_welcomeMode);
|
2009-07-20 19:08:09 +02:00
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*! Notification that all extensions that this plugin depends on have been
|
|
|
|
|
initialized. The dependencies are defined in the plugins .qwp file.
|
|
|
|
|
|
|
|
|
|
Normally this method is used for things that rely on other plugins to have
|
|
|
|
|
added objects to the plugin manager, that implement interfaces that we're
|
|
|
|
|
interested in. These objects can now be requested through the
|
|
|
|
|
PluginManagerInterface.
|
|
|
|
|
|
|
|
|
|
The WelcomePlugin doesn't need things from other plugins, so it does
|
|
|
|
|
nothing here.
|
|
|
|
|
*/
|
|
|
|
|
void WelcomePlugin::extensionsInitialized()
|
|
|
|
|
{
|
2009-07-27 13:55:30 +02:00
|
|
|
m_welcomeMode->initPlugins();
|
2010-09-07 15:25:14 +02:00
|
|
|
Core::ModeManager::instance()->activateMode(m_welcomeMode->id());
|
2009-07-20 19:08:09 +02:00
|
|
|
}
|
|
|
|
|
|
2011-04-13 17:09:44 +02:00
|
|
|
} // namespace Internal
|
2010-11-11 16:49:17 +01:00
|
|
|
} // namespace Welcome
|
2011-04-13 17:09:44 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
Q_EXPORT_PLUGIN(Welcome::Internal::WelcomePlugin)
|
|
|
|
|
|
|
|
|
|
#include "welcomeplugin.moc"
|