~fboucault/qtcreator-plugin-ubuntu/overlay_for_xenial

« back to all changes in this revision

Viewing changes to src/ubuntu/ubuntuwelcomemode.cpp

  • Committer: CI Train Bot
  • Author(s): Benjamin Zeller
  • Date: 2016-04-19 12:19:28 UTC
  • mfrom: (451.1.1 ubuntu)
  • Revision ID: ci-train-bot@canonical.com-20160419121928-fbbltopt05g01p2n
- Added scrollview to Ubuntu welcome page
- Replaced Newsbox with a link to the developer blog
- Added a link on the welcome page to open the UITK gallery

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#include <QDebug>
34
34
#include <QList>
35
35
#include <QCoreApplication>
 
36
#include <QProcess>
36
37
 
37
38
using namespace Ubuntu;
38
39
using namespace Ubuntu::Internal;
75
76
{
76
77
    ProjectExplorer::ProjectExplorerPlugin::instance()->openOpenProjectDialog();
77
78
}
 
79
 
 
80
void UbuntuWelcomePage::openGallery()
 
81
{
 
82
    QProcess::startDetached(QString::fromLatin1("%1/qtc_launch_gallery").arg(Constants::UBUNTU_SCRIPTPATH));
 
83
}