Sayonara Player
Loading...
Searching...
No Matches
src
Gui
Preferences
PreferenceWidget.h
1
/* PreferenceWidgetInterface.h */
2
3
/* Copyright (C) 2011-2024 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
28
namespace
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
void
showEvent(QShowEvent* e)
override
;
56
void
closeEvent(QCloseEvent* e)
override
;
57
58
private
:
59
void
init();
60
void
translationAction();
61
void
languageChanged()
final
;
62
};
63
}
64
65
#endif
// SAYONARA_PLAYER_PREFERENCEWIDGET_H
Gui::Widget
Widget with Settings connection. Also contains triggers for language_changed() and skin_changed() \nT...
Definition
Widget.h:39
Generated on
for Sayonara Player by
1.14.0