Sayonara Player
GUI_ControlsNew.h
1 /* GUI_ControlsNew.h */
2 
3 /* Copyright (C) 2011-2019 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_CONTROLSNEW_H
22 #define GUI_CONTROLSNEW_H
23 
24 #include "GUI_ControlsBase.h"
25 
26 UI_FWD(GUI_ControlsNew)
27 
28 class MetaData;
29 class MetaDataList;
30 
32  public GUI_ControlsBase
33 {
34  Q_OBJECT
35  UI_CLASS(GUI_ControlsNew)
36 
37  public:
38  explicit GUI_ControlsNew(QWidget *parent=nullptr);
39  ~GUI_ControlsNew();
40 
41  // GUI_ControlsBase interface
42  public:
43  QLabel* lab_sayonara() const override;
44  QLabel* lab_title() const override;
45  QLabel* lab_version() const override;
46  QLabel* lab_album() const override;
47  QLabel* lab_artist() const override;
48  QLabel* lab_writtenby() const override;
49  QLabel* lab_bitrate() const override;
50  QLabel* lab_filesize() const override;
51  QLabel* lab_copyright() const override;
52  QLabel* lab_current_time() const override;
53  QLabel* lab_max_time() const override;
54  QWidget* widget_details() const override;
55  Gui::RatingEditor* lab_rating() const override;
56  Gui::SearchSlider* sli_progress() const override;
57  Gui::SearchSlider* sli_volume() const override;
58  QPushButton* btn_mute() const override;
59  QPushButton* btn_play() const override;
60  QPushButton* btn_rec() const override;
61  QPushButton* btn_bwd() const override;
62  QPushButton* btn_fwd() const override;
63  QPushButton* btn_stop() const override;
64  Gui::CoverButton* btn_cover() const override;
65 
66  void rating_changed_here(bool save);
67  bool is_extern_resize_allowed() const override;
68 
69  protected:
70  void language_changed() override;
71 };
72 
73 #endif // GUI_CONTROLSNEW_H
MetaDataList
The MetaDataList class.
Definition: MetaDataList.h:37
Gui::RatingEditor
This class is used for the actual editing of a RatingLabel While the RatingLabel class is used in pai...
Definition: RatingLabel.h:96
Gui::SearchSlider
A slider as it is used by the progress bar You can also set a different value by calling set_bufferin...
Definition: SearchSlider.h:39
Gui::CoverButton
The CoverButton class.
Definition: CoverButton.h:63
GUI_ControlsNew
Definition: GUI_ControlsNew.h:31
MetaData
The MetaData class.
Definition: MetaData.h:44
GUI_ControlsBase
Definition: GUI_ControlsBase.h:45