1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
/*
* Copyright 2013-2016 Canonical Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3.
*
* 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Authors:
* Renato Araujo Oliveira Filho <renato@canonical.com>
* Nick Dedekind <nick.dedekind@canonical.com>
*/
#include "indicatorsclient.h"
#include <paths.h>
#include <QQuickView>
#include <QQmlContext>
#include <QQmlEngine>
#include <QDebug>
#include <QTranslator>
#include <QLibraryInfo>
#include <QLocale>
IndicatorsClient::IndicatorsClient(int &argc, char **argv)
: QObject(0),
m_view(0)
{
m_application = new QApplication(argc, argv);
QTranslator qtTranslator;
if (qtTranslator.load(QLocale(), QStringLiteral("qt_"), qgetenv("SNAP"), QLibraryInfo::location(QLibraryInfo::TranslationsPath))) {
m_application->installTranslator(&qtTranslator);
}
QStringList args = m_application->arguments();
m_view = new QQuickView;
m_view->engine()->setBaseUrl(QUrl::fromLocalFile(::qmlDirectory() + "/Panel/Indicators/client/"));
prependImportPaths(m_view->engine(), ::overrideImportPaths());
appendImportPaths(m_view->engine(), ::fallbackImportPaths());
QString profile = QStringLiteral("phone");
if (args.contains(QStringLiteral("-profile")) && args.size() > args.indexOf(QStringLiteral("-profile")) + 1) {
profile = args.at(args.indexOf(QStringLiteral("-profile")) + 1);
}
m_view->rootContext()->setContextProperty(QStringLiteral("indicatorProfile"), profile);
m_view->setSource(QUrl(QStringLiteral("IndicatorsClient.qml")));
m_view->setResizeMode(QQuickView::SizeRootObjectToView);
if (args.contains(QStringLiteral("-windowgeometry")) && args.size() > args.indexOf(QStringLiteral("-windowgeometry")) + 1) {
QStringList geometryArg = args.at(args.indexOf(QStringLiteral("-windowgeometry")) + 1).split('x');
if (geometryArg.size() == 2) {
m_view->resize(geometryArg.at(0).toInt(), geometryArg.at(1).toInt());
}
} else {
//Usable size on desktop
m_view->setMinimumSize(QSize(480, 720));
}
}
IndicatorsClient::~IndicatorsClient()
{
if (m_view != 0) {
delete m_view;
}
delete m_application;
}
int IndicatorsClient::run()
{
m_view->show();
return m_application->exec();
}
|