First version
[staging/HomeScreen.git] / 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 "include/daynightmode.h"
23 #include "daynightmode_adapter.h"
24
25 namespace Ui {
26 class SettingsWidget;
27 }
28
29 class SettingsWidget : public QWidget
30 {
31     Q_OBJECT
32
33 public:
34     explicit SettingsWidget(QWidget *parent = 0);
35     ~SettingsWidget();
36
37 // from daynightmode_adapter.h
38 public Q_SLOTS:
39     void setDayNightMode(int mode);
40     inline int getDayNightMode()
41     {
42         return (int)m_dayNightMode;
43     }
44
45 protected:
46     // called when the translator loaded a new language set
47     void changeEvent(QEvent* event);
48
49 private slots:
50     void on_comboBoxLanguage_currentIndexChanged(const QString &);
51
52 private:
53     Ui::SettingsWidget *mp_ui;
54
55     SystemDayNight::eDayNightMode m_dayNightMode;
56     DaynightmodeAdaptor *mp_daynightmodeAdaptor;
57
58     QTranslator *mp_translator;
59 };
60
61 #endif // SETTINGSWIDGET_H