Using the Tizen application manager to receive information about installed apps and...
[staging/HomeScreen.git] / HomeScreenSimulator / 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.hpp>
22 #include "daynightmode_adapter.h"
23
24 #include "statusbar_proxy.h"
25 #include "popup_proxy.h"
26
27 namespace Ui {
28 class MainWindow;
29 }
30
31 class MainWindow : public QMainWindow
32 {
33     Q_OBJECT
34
35 public:
36     explicit MainWindow(QWidget *parent = 0);
37     ~MainWindow();
38
39 // day/night mode
40 Q_SIGNALS:
41     void dayNightMode(int mode);
42
43 private slots:
44     void on_radioButton_DayMode_toggled(bool checked);
45
46     void on_radioButton_NightMode_toggled(bool checked);
47
48     void on_pushButton_Update_clicked();
49
50     void on_pushButton_Exit_clicked();
51
52     void on_tableWidget_Status_cellChanged(int row, int column);
53
54     void on_pushButton_Send_clicked();
55
56     void on_pushButton_IconExample_clicked();
57
58     void on_pushButton_PopupExample_clicked();
59
60 private:
61     Ui::MainWindow *mp_ui;
62     DaynightmodeAdaptor *mp_dBusDayNightModeAdapter;
63     org::agl::statusbar *mp_dBusStatusBarProxy;
64     org::agl::popup *mp_dBusPopupProxy;
65 };
66
67 #endif // MAINWINDOW_H