2 * Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
20 #include <QMainWindow>
21 #include <include/daynightmode.hpp>
22 #include "daynightmode_adaptor.h"
24 #include "statusbar_proxy.h"
25 #include "popup_proxy.h"
26 #include "proximity_proxy.h"
27 #include "homescreen_proxy.h"
33 class MainWindow : public QMainWindow
38 explicit MainWindow(QWidget *parent = 0);
43 void dayNightMode(int mode);
46 void on_radioButton_DayMode_toggled(bool checked);
48 void on_radioButton_NightMode_toggled(bool checked);
50 void on_pushButton_Update_clicked();
52 void on_pushButton_Exit_clicked();
54 void on_tableWidget_Status_cellChanged(int row, int column);
56 void on_pushButton_Send_clicked();
58 void on_pushButton_IconExample_clicked();
60 void on_pushButton_PopupExample_clicked();
62 void on_pushButton_comboBoxExample_clicked();
64 void on_checkBox_ObjectDetected_clicked();
67 Ui::MainWindow *mp_ui;
68 DaynightmodeAdaptor *mp_dBusDayNightModeAdaptor;
69 org::agl::statusbar *mp_dBusStatusBarProxy;
70 org::agl::popup *mp_dBusPopupProxy;
71 org::agl::proximity *mp_dBusProximityProxy;
72 org::agl::homescreen *mp_dBusHomeScreenProxy;
75 #endif // MAINWINDOW_H