Sayonara Player
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  signals:
70  void sig_shown();
71 
72  public:
73  explicit MainWindow(QWidget* parent=nullptr);
74  virtual ~MainWindow();
75 
76  void raise();
77 
78  protected:
79  virtual void showEvent(QShowEvent *e) override;
80  };
81 }
82 
83 #endif // SAYONARAWIDGET_H
The SayonaraMainWindow class.
Definition: Widget.h:64
Definition: GUI_ControlsBase.h:43
Template for Sayonara Widgets. This template is responsible for holding a reference to the settings...
Definition: WidgetTemplate.h:78
Dialog with Settings connection. Also contains triggers for language_changed() and skin_changed()...
Definition: Dialog.h:34
Widget with Settings connection. Also contains triggers for language_changed() and skin_changed() wi...
Definition: Widget.h:38