Add 2017 to copyright
[staging/HomeScreen.git] / HomeScreen / src / settingswidget.h
1 /*
2  * Copyright (C) 2016, 2017 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
23 namespace Ui {
24 class SettingsWidget;
25 }
26
27 class SettingsWidget : public QWidget
28 {
29     Q_OBJECT
30
31 public:
32     explicit SettingsWidget(QWidget *parent = 0);
33     ~SettingsWidget();
34 public slots:
35     void updateColorScheme();
36
37 protected:
38     // called when the translator loaded a new language set
39     void changeEvent(QEvent* event);
40
41 private slots:
42     void on_comboBox_language_currentIndexChanged(const QString &);
43     void on_comboBox_colorScheme_currentIndexChanged(const QString &);
44
45 signals:
46     void colorSchemeChanged(void);
47
48 private:
49     Ui::SettingsWidget *mp_ui;
50     QTranslator *mp_translator;
51 };
52
53 #endif // SETTINGSWIDGET_H