Sayonara Player
src
GUI
Utils
Widgets
Widget.h
1
/* Widget.h */
2
3
/* Copyright (C) 2011-2017 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 SAYONARAWIDGET_H
22
#define SAYONARAWIDGET_H
23
24
#include "WidgetTemplate.h"
25
#include <QWidget>
26
#include <QMainWindow>
27
28
namespace
Gui
29
{
30
class
Dialog;
31
38
class
Widget
:
39
public
Gui::WidgetTemplate
<QWidget>
40
{
41
Q_OBJECT
42
43
signals:
44
void
sig_shown();
45
void
sig_closed();
46
47
public
:
48
explicit
Widget
(QWidget* parent=
nullptr
);
49
virtual
~
Widget
();
50
51
Dialog
* box_into_dialog();
52
53
protected
:
54
Dialog
* _boxed_dialog=
nullptr
;
55
56
virtual
void
showEvent(QShowEvent* e);
57
virtual
void
closeEvent(QCloseEvent* e);
58
};
59
64
class
MainWindow
:
65
public
Gui::WidgetTemplate
<QMainWindow>
66
{
67
Q_OBJECT
68
69
public
:
70
explicit
MainWindow
(QWidget* parent=
nullptr
);
71
virtual
~
MainWindow
();
72
73
void
raise
();
74
};
75
}
76
77
#endif // SAYONARAWIDGET_H
Gui::MainWindow
The SayonaraMainWindow class.
Definition:
Widget.h:64
Gui
Definition:
ComboBoxDelegate.h:26
Gui::WidgetTemplate
Template for Sayonara Widgets. This template is responsible for holding a reference to the settings...
Definition:
WidgetTemplate.h:47
Gui::Dialog
Dialog with Settings connection. Also contains triggers for language_changed() and skin_changed()...
Definition:
Dialog.h:34
Gui::Widget
Widget with Settings connection. Also contains triggers for language_changed() and skin_changed() wi...
Definition:
Widget.h:38
Generated on Thu Jan 18 2018 03:17:51 for Sayonara Player by
1.8.13