a8765761bdef2b74b4f4e1ba0924ca9f7b1158a6
[staging/HomeScreen.git] / HomeScreen / src / popupwidget.h
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 #ifndef POPUPWIDGET_H
18 #define POPUPWIDGET_H
19
20 #include <QWidget>
21 #include "../interfaces/popup.h"
22 #include "popup_adapter.h"
23 #include "../interfaces/daynightmode.h"
24 #include "daynightmode_proxy.h"
25
26
27 namespace Ui {
28 class PopupWidget;
29 }
30
31 class PopupWidget : public QWidget
32 {
33     Q_OBJECT
34
35 public:
36     explicit PopupWidget(QWidget *parent = 0);
37     ~PopupWidget();
38
39 // day/night mode
40 public Q_SLOTS:
41     void dayNightModeSlot(int mode);
42
43     // from popup_adapter.h
44 public Q_SLOTS: // METHODS
45     void showPopup(int type, const QString &text);
46
47 private slots:
48     void on_pushButton_OK_clicked();
49
50 private:
51     Ui::PopupWidget *mp_ui;
52
53     SystemDayNight::eDayNightMode m_dayNightMode;
54     org::agl::daynightmode *mp_dayNightModeProxy;
55     PopupAdaptor *mp_popupAdaptor;
56 };
57
58 #endif // POPUPWIDGET_H