d94546af1958130150c4e5ee9a7ae6b056658f4e
[staging/HomeScreen.git] / HomeScreen / 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 "daynightmode_proxy.h"
22
23 #include "homescreencontrolinterface.h"
24
25 #include "statusbarwidget.h"
26 #include "controlbarwidget.h"
27 #include "settingswidget.h"
28 #include "applauncherwidget.h"
29 #include "popupwidget.h"
30
31 #include "layouthandler.h"
32
33
34 namespace Ui {
35 class MainWindow;
36 }
37
38 class MainWindow : public QMainWindow
39 {
40     Q_OBJECT
41
42 public:
43     explicit MainWindow(QWidget *parent = 0);
44     ~MainWindow();
45
46 // day/night mode
47 public Q_SLOTS:
48     void dayNightModeSlot(int mode);
49
50
51 public slots:
52     void updateColorScheme();
53
54 protected:
55     // called when the translator loaded a new language set
56     void changeEvent(QEvent* event);
57
58
59 private:
60     Ui::MainWindow *mp_ui;
61
62     StatusBarWidget *mp_statusBarWidget;
63     org::agl::daynightmode *mp_dBusDayNightMode_StatusBarWidget;
64     ControlBarWidget *mp_controlBarWidget;
65     org::agl::daynightmode *mp_dBusDayNightMode_ControlBarWidget;
66     SettingsWidget *mp_settingsWidget;
67     AppLauncherWidget *mp_applauncherwidget;
68     PopupWidget *mp_popupWidget;
69
70     LayoutHandler *mp_layoutHandler;
71
72     org::agl::daynightmode *mp_dBusDayNightModeProxy;
73
74     HomeScreenControlInterface *mp_homeScreenControlInterface;
75 };
76
77 #endif // MAINWINDOW_H