harbour-batterybuddy/src/harbour-batterybuddy.cpp

93 lines
2.8 KiB
C++
Raw Normal View History

/**
* Battery Buddy, a Sailfish application to prolong battery lifetime
*
2020-03-21 04:27:09 +03:00
* Copyright (C) 2019-2020 Matti Viljanen
*
* Battery Buddy 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.
*
* Battery Buddy 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 CarBudget. If not, see <http://www.gnu.org/licenses/>.
*
* Author: Matti Viljanen
*/
2019-01-05 16:49:35 +03:00
#ifdef QT_QML_DEBUG
#include <QtQuick>
#endif
#include <sailfishapp.h>
#include <QGuiApplication>
#include <QQmlContext>
#include <QQuickView>
#include <QQmlEngine>
2019-01-05 22:57:35 +03:00
#include <QTimer>
#include <QDebug>
#ifdef QT_NO_DEBUG_OUTPUT
#include <QLoggingCategory>
#endif
#include "battery.h"
#include "settings.h"
2019-01-05 16:49:35 +03:00
int main(int argc, char *argv[])
{
// SailfishApp::main() will display "qml/harbour-batterybuddy.qml", if you need more
// control over initialization, you can use:
//
// - SailfishApp::application(int, char *[]) to get the QGuiApplication *
// - SailfishApp::createView() to get a new QQuickView * instance
// - SailfishApp::pathTo(QString) to get a QUrl to a resource file
// - SailfishApp::pathToMainQml() to get a QUrl to the main QML file
//
// To display the view, call "show()" (will show fullscreen on device).
#ifdef QT_NO_DEBUG_OUTPUT
// Disable QML debug level logging
QLoggingCategory::setFilterRules("*.debug=false");
#endif
qInfo() << "Starting Battery Buddy...";
QGuiApplication* app = SailfishApp::application(argc, argv);
QQuickView* view = SailfishApp::createView();
2020-03-21 06:02:04 +03:00
qDebug() << "Application name:" << app->applicationName();
qDebug() << "Organization name:" << app->organizationName();
Settings* settings = new Settings();
2020-03-20 21:58:01 +03:00
Battery* battery = new Battery(settings);
2020-03-20 21:58:01 +03:00
QTimer* updater = new QTimer();
QObject::connect(updater, SIGNAL(timeout()), battery, SLOT(updateData()));
updater->start(3000);
2019-01-05 22:57:35 +03:00
view->rootContext()->setContextProperty("battery", battery);
view->rootContext()->setContextProperty("settings", settings);
2019-01-06 00:41:33 +03:00
view->setSource(SailfishApp::pathTo("qml/harbour-batterybuddy.qml"));
view->showFullScreen();
qInfo() << "Launching GUI...";
int retval = app->exec();
qInfo() << "Exiting...";
2020-03-20 18:29:09 +03:00
updater->stop();
battery->blockSignals(true);
battery->setChargingEnabled(true);
delete updater;
delete battery;
delete settings;
qInfo() << "Goodbye!";
return retval;
2019-01-05 16:49:35 +03:00
}