First version
[staging/HomeScreen.git] / src / mainwindow.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 MAINWINDOW_H
18 #define MAINWINDOW_H
19
20 #include <QMainWindow>
21 #include "include/daynightmode.h"
22 #include "daynightmode_adapter.h"
23 #include "daynightmode_proxy.h"
24 #include "popupwidget.h"
25 #include "include/popup.h"
26 #include "popup_adapter.h"
27 #include "popup_proxy.h"
28
29 #include "statusbarwidget.h"
30 #include "controlbarwidget.h"
31
32 namespace Ui {
33 class MainWindow;
34 }
35
36 class MainWindow : public QMainWindow
37 {
38     Q_OBJECT
39
40 public:
41     explicit MainWindow(QWidget *parent = 0);
42     ~MainWindow();
43
44 // from daynightmode_adapter.h
45 public Q_SLOTS:
46     void setDayNightMode(int mode);
47     inline int getDayNightMode()
48     {
49         return (int)m_dayNightMode;
50     }
51
52 // from popup_adapter.h
53 public Q_SLOTS: // METHODS
54     void showPopup(int type, const QString &text);
55
56 protected:
57     // called when the translator loaded a new language set
58     void changeEvent(QEvent* event);
59
60 private:
61     Ui::MainWindow *mp_ui;
62
63     StatusBarWidget *mp_statusBarWidget;
64     org::agl::daynightmode *mp_dBusDayNightMode_StatusBarWidget;
65     ControlBarWidget *mp_controlBarWidget;
66     org::agl::daynightmode *mp_dBusDayNightMode_ControlBarWidget;
67
68     // dbus daynightmode
69     SystemDayNight::eDayNightMode m_dayNightMode;
70     DaynightmodeAdaptor *mp_daynightmodeAdaptor;
71
72     // dbus popup
73     PopupAdaptor *mp_popupAdaptor;
74     org::agl::popup *mp_dBusPopup;
75
76     PopupWidget *mp_popupWidget;
77 };
78
79 #endif // MAINWINDOW_H