Sayonara Player
GUI_Controls.h
1 /* GUI_Controls.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 GUI_CONTROLS_H
22 #define GUI_CONTROLS_H
23 
24 #include "GUI_ControlsBase.h"
25 
26 UI_FWD(GUI_Controls)
27 
28 class MetaData;
29 class MetaDataList;
30 class PlayManager;
31 
32 class GUI_Controls :
33  public GUI_ControlsBase
34 {
35  Q_OBJECT
36  UI_CLASS(GUI_Controls)
37 
38  public:
39  explicit GUI_Controls(PlayManager* playManager, CoverDataProvider* coverProvider, QWidget* parent = nullptr);
40  ~GUI_Controls() override;
41 
42  // GUI_ControlsBase interface
43  public:
44  QLabel* labSayonara() const override;
45  QLabel* labTitle() const override;
46  QLabel* labVersion() const override;
47  QLabel* labAlbum() const override;
48  QLabel* labArtist() const override;
49  QLabel* labWrittenBy() const override;
50  QLabel* labBitrate() const override;
51  QLabel* labFilesize() const override;
52  QLabel* labCopyright() const override;
53  QLabel* labCurrentTime() const override;
54  QLabel* labMaxTime() const override;
55  QWidget* widgetDetails() const override;
56  Gui::SearchSlider* sliProgress() const override;
57  Gui::SearchSlider* sliVolume() const override;
58  QPushButton* btnMute() const override;
59  QPushButton* btnPlay() const override;
60  QPushButton* btnRecord() const override;
61  QPushButton* btnPrevious() const override;
62  QPushButton* btnNext() const override;
63  QPushButton* btnStop() const override;
64  Gui::CoverButton* btnCover() const override;
65 
66  bool isExternResizeAllowed() const override;
67 
68  protected:
69  void languageChanged() override;
70 };
71 
72 #endif // GUI_CONTROLS_H
Definition: CoverDataProvider.h:28
Definition: GUI_ControlsBase.h:52
Definition: GUI_Controls.h:34
The CoverButton class.
Definition: CoverButton.h:40
A slider as it is used by the progress bar You can also set a different value by calling set_bufferin...
Definition: SearchSlider.h:41
The MetaDataList class.
Definition: MetaDataList.h:37
The MetaData class.
Definition: MetaData.h:47
Global handler for current playback state (Singleton)
Definition: PlayManager.h:36