Using the Tizen application manager to receive information about installed apps and...
[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
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 // day/night mode
45 public Q_SLOTS:
46     void dayNightModeSlot(int mode);
47
48
49 public slots:
50     void updateColorScheme();
51
52 protected:
53     // called when the translator loaded a new language set
54     void changeEvent(QEvent* event);
55
56 private slots:
57     void on_pushButton_clicked();
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     org::agl::daynightmode *mp_dBusDayNightModeProxy;
71
72     HomeScreenControlInterface *mp_homeScreenControlInterface;
73 };
74
75 #endif // MAINWINDOW_H