15b24bd11bfbd520093042379ecb50e4a637d72e
[staging/HomeScreen.git] / HomeScreen / src / settingswidget.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 SETTINGSWIDGET_H
18 #define SETTINGSWIDGET_H
19
20 #include <QWidget>
21 #include <QTranslator>
22 #include "../interfaces/daynightmode.h"
23 #include "daynightmode_proxy.h"
24
25
26 namespace Ui {
27 class SettingsWidget;
28 }
29
30 class SettingsWidget : public QWidget
31 {
32     Q_OBJECT
33
34 public:
35     explicit SettingsWidget(QWidget *parent = 0);
36     ~SettingsWidget();
37
38 // day/night mode
39 public Q_SLOTS:
40     void dayNightModeSlot(int mode);
41
42 protected:
43     // called when the translator loaded a new language set
44     void changeEvent(QEvent* event);
45
46 private slots:
47     void on_comboBoxLanguage_currentIndexChanged(const QString &);
48
49 private:
50     Ui::SettingsWidget *mp_ui;
51
52     SystemDayNight::eDayNightMode m_dayNightMode;
53     org::agl::daynightmode *mp_dayNightModeProxy;
54
55     QTranslator *mp_translator;
56 };
57
58 #endif // SETTINGSWIDGET_H