First version
[staging/HomeScreen.git] / src / controlbarwidget.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 CONTROLBARWIDGET_H
18 #define CONTROLBARWIDGET_H
19
20 #include <QWidget>
21 #include "include/daynightmode.h"
22 #include "daynightmode_adapter.h"
23 #include "daynightmode_proxy.h"
24 #include "settingswidget.h"
25
26 namespace Ui {
27 class ControlBarWidget;
28 }
29
30 class ControlBarWidget : public QWidget
31 {
32     Q_OBJECT
33
34 public:
35     explicit ControlBarWidget(QWidget *parent = 0);
36     ~ControlBarWidget();
37
38 // from daynightmode_adapter.h
39 public Q_SLOTS:
40     void setDayNightMode(int mode);
41     inline int getDayNightMode()
42     {
43         return (int)m_dayNightMode;
44     }
45
46 private slots:
47     void on_pushButton_Settings_clicked();
48
49     void on_pushButton_Home_clicked();
50
51 private:
52     Ui::ControlBarWidget *mp_ui;
53     SettingsWidget *mp_settingsWidget;
54     org::agl::daynightmode *mp_dBusDayNightMode_SettingsWidget;
55
56     SystemDayNight::eDayNightMode m_dayNightMode;
57     DaynightmodeAdaptor *mp_daynightmodeAdaptor;
58 };
59
60 #endif // CONTROLBARWIDGET_H