Preferences: add a new page for language

This is not hooked into anything - It's the bare minimum that I
need to continue creating the new preferences dialog. But take a
look at it... very simple. :)

Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Tomaz Canabrava 2015-09-17 15:58:26 -03:00 committed by Dirk Hohndel
parent b35ccc3a35
commit 255325e219
4 changed files with 158 additions and 2 deletions

View file

@ -0,0 +1,21 @@
#ifndef PREFERENCES_LANGUAGE_H
#define PREFERENCES_LANGUAGE_H
#include "abstractpreferenceswidget.h"
namespace Ui {
class PreferencesLanguage;
}
class PreferencesLanguage : public AbstractPreferencesWidget {
Q_OBJECT
public:
PreferencesLanguage();
virtual ~PreferencesLanguage();
virtual void refreshSettings();
virtual void syncSettings();
private:
Ui::PreferencesLanguage *ui;
};
#endif