4a8977161e000ca61851dd06239d30da6cd3f666
[staging/HomeScreen.git] / HomeScreen / src / popupwidget.cpp
1 /*
2  * Copyright (C) 2016 Mentor Graphics Development (Deutschland) GmbH
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "popupwidget.h"
18 #include "ui_popupwidget.h"
19 #include "../interfaces/daynightmode.h"
20
21 PopupWidget::PopupWidget(QWidget *parent) :
22     QWidget(parent),
23     mp_ui(new Ui::PopupWidget),
24     mp_popupAdaptor(0)
25 {
26     // publish dbus popup interface
27     mp_popupAdaptor = new PopupAdaptor((QObject*)this);
28     QDBusConnection dbus = QDBusConnection::sessionBus();
29     dbus.registerObject("/Popup", this);
30     dbus.registerService("org.agl.homescreen");
31
32     mp_ui->setupUi(this);
33     this->close();
34 }
35
36 PopupWidget::~PopupWidget()
37 {
38     delete mp_popupAdaptor;
39     delete mp_ui;
40 }
41
42 void PopupWidget::updateColorScheme()
43 {
44     QSettings settings;
45     QSettings settings_cs(QApplication::applicationDirPath() +
46                           "/colorschemes/" +
47                           settings.value("systemsettings/colorscheme", "default").toString() +
48                           "/" +
49                           QString::number(settings.value("systemsettings/daynightmode", SystemDayNight::DAYNIGHTMODE_DAY).toInt()) +
50                           ".ini",
51                           QSettings::IniFormat);
52
53     mp_ui->widget_Popup->setStyleSheet(settings_cs.value(QString("PopupWidget/widget_Popup")).toString());
54     mp_ui->label_Text->setStyleSheet(settings_cs.value(QString("PopupWidget/label_Text")).toString());
55 }
56
57 void PopupWidget::showPopup(int /*type*/, const QString &text)
58 {
59     this->show();
60     this->raise();
61     mp_ui->label_Text->setText(text);
62 }
63
64 void PopupWidget::on_pushButton_OK_clicked()
65 {
66     this->close();
67 }