1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-14 21:23:52 +01:00
LibrePilot/ground/openpilotgcs/src/plugins/welcome/welcomemode.cpp

133 lines
3.5 KiB
C++
Raw Normal View History

/**
******************************************************************************
*
* @file welcomemode.cpp
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
* Parts by Nokia Corporation (qt-info@nokia.com) Copyright (C) 2009.
* @addtogroup GCSPlugins GCS Plugins
* @{
* @addtogroup WelcomePlugin Welcome Plugin
* @{
* @brief The GCS Welcome plugin
*****************************************************************************/
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "welcomemode.h"
#include <extensionsystem/pluginmanager.h>
#include <coreplugin/icore.h>
#include <coreplugin/coreconstants.h>
#include <coreplugin/uniqueidmanager.h>
#include <coreplugin/modemanager.h>
#include <utils/styledbar.h>
#include <utils/welcomemodetreewidget.h>
#include <utils/iwelcomepage.h>
#include <QtGui/QDesktopServices>
#include <QtCore/QSettings>
#include <QtCore/QUrl>
#include <QtCore/QDebug>
#include <QtDeclarative/qdeclarative.h>
#include <QtDeclarative/qdeclarativeview.h>
#include <QtDeclarative/qdeclarativeengine.h>
#include <QtDeclarative/qdeclarativecontext.h>
#include <cstdlib>
using namespace ExtensionSystem;
using namespace Utils;
namespace Welcome {
struct WelcomeModePrivate {
WelcomeModePrivate();
QDeclarativeView *declarativeView;
};
WelcomeModePrivate::WelcomeModePrivate()
{}
// --- WelcomeMode
WelcomeMode::WelcomeMode() :
m_d(new WelcomeModePrivate),
m_priority(Core::Constants::P_MODE_WELCOME)
{
m_d->declarativeView = new QDeclarativeView;
m_d->declarativeView->setResizeMode(QDeclarativeView::SizeRootObjectToView);
m_d->declarativeView->engine()->rootContext()->setContextProperty("welcomePlugin", this);
m_d->declarativeView->setSource(QUrl("qrc:/welcome/qml/main.qml"));
}
WelcomeMode::~WelcomeMode()
{
delete m_d->declarativeView;
delete m_d;
}
QString WelcomeMode::name() const
{
return tr("Welcome");
}
QIcon WelcomeMode::icon() const
{
return QIcon(QLatin1String(":/core/images/openpiloticon.png"));
}
int WelcomeMode::priority() const
{
return m_priority;
}
QWidget *WelcomeMode::widget()
{
return m_d->declarativeView;
}
const char *WelcomeMode::uniqueModeName() const
{
return Core::Constants::MODE_WELCOME;
}
QList<int> WelcomeMode::context() const
{
static QList<int> contexts = QList<int>()
<< Core::UniqueIDManager::instance()->uniqueIdentifier(Core::Constants::C_WELCOME_MODE);
return contexts;
}
void WelcomeMode::openUrl(const QString &url)
{
QDesktopServices::openUrl(QUrl(url));
}
void WelcomeMode::openPage(const QString &page)
{
Core::ModeManager::instance()->activateModeByWorkspaceName(page);
}
void WelcomeMode::triggerAction(const QString &actionId)
{
Core::ModeManager::instance()->triggerAction(actionId);
}
} // namespace Welcome