First version
[staging/HomeScreen.git] / 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
20 PopupWidget::PopupWidget(QWidget *parent) :
21     QWidget(parent),
22     mp_ui(new Ui::PopupWidget),
23     mp_popupAdaptor(0)
24 {
25     mp_ui->setupUi(this);
26
27     // publish dbus popup interface
28     mp_popupAdaptor = new PopupAdaptor((QObject*)this);
29     QDBusConnection dbus = QDBusConnection::sessionBus();
30     dbus.registerObject("/PopupWidget", this);
31     dbus.registerService("org.agl.mainwindow");
32 }
33
34 PopupWidget::~PopupWidget()
35 {
36     delete mp_popupAdaptor;
37     delete mp_ui;
38 }
39
40 void PopupWidget::showPopup(int type, const QString &text)
41 {
42     qDebug("PopupWidget::showPopup: type %d, text %s", type, text.toStdString().c_str());
43     mp_ui->label_Text->setText(text);
44 }
45
46 void PopupWidget::on_pushButton_OK_clicked()
47 {
48     this->close();
49 }