Sayonara Player
PreferenceWidget.h
1/* PreferenceWidgetInterface.h */
2
3/* Copyright (C) 2011-2020 Michael Lugmair (Lucio Carreras)
4 *
5 * This file is part of sayonara player
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef SAYONARA_PLAYER_PREFERENCEWIDGET_H
22#define SAYONARA_PLAYER_PREFERENCEWIDGET_H
23
24#include "Gui/Utils/GuiClass.h"
25#include "Gui/Utils/Widgets/Widget.h"
26#include "Utils/Pimpl.h"
27
28namespace Preferences
29{
30 class Base :
31 public Gui::Widget
32 {
33 Q_OBJECT
34 PIMPL(Base)
35
36 public:
37 explicit Base(const QString& identifier);
38 ~Base() override;
39
40 [[nodiscard]] virtual bool isUiInitialized() const final;
41 [[nodiscard]] virtual QAction* action() final;
42
43 [[nodiscard]] virtual QString actionName() const = 0;
44 [[nodiscard]] QString identifier() const;
45
46 virtual bool commit() = 0;
47 virtual void revert() = 0;
48 virtual void initUi() = 0;
49 virtual void retranslate() = 0;
50
51 [[nodiscard]] virtual bool hasError() const;
52 [[nodiscard]] virtual QString errorString() const;
53
54 protected:
55 template<typename W, typename UiClass>
56 void setupParent(W* widget, UiClass** ui)
57 {
58 *ui = new UiClass();
59 (*ui)->setupUi(widget);
60
61 setInitialized();
62
63 widget->languageChanged();
64
65 skinChanged();
66 }
67
68 void languageChanged() final;
69 void translationAction();
70
71 void showEvent(QShowEvent* e) override;
72 void closeEvent(QCloseEvent* e) override;
73
74 private:
75 void setInitialized();
76 };
77}
78
79#endif // SAYONARA_PLAYER_PREFERENCEWIDGET_H
Widget with Settings connection. Also contains triggers for language_changed() and skin_changed() \nT...
Definition: Widget.h:39
Definition: PreferenceWidget.h:32