Sayonara Player
GUI_Bookmarks.h
1 /* GUI_Bookmarks.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 GUI_BOOKMARKS_H
22 #define GUI_BOOKMARKS_H
23 
24 #include "Interfaces/PlayerPlugin/PlayerPluginBase.h"
25 #include "Utils/Pimpl.h"
26 
27 class Bookmarks;
28 class Bookmark;
29 
30 UI_FWD(GUI_Bookmarks)
31 
32 
37  public PlayerPlugin::Base
38 {
39  Q_OBJECT
40  UI_CLASS(GUI_Bookmarks)
41  PIMPL(GUI_Bookmarks)
42 
43 public:
44  explicit GUI_Bookmarks(QWidget *parent=nullptr);
45  virtual ~GUI_Bookmarks();
46 
47  QString get_name() const override;
48  QString get_display_name() const override;
49 
50 
51 private:
52  void retranslate_ui() override;
53  void init_ui() override;
54 
55 
56 private slots:
57  void combo_changed(int new_idx);
58  void next_clicked();
59  void prev_clicked();
60  void new_clicked();
61  void del_clicked();
62  void loop_clicked(bool);
63 
64  void prev_changed(const Bookmark& bookmark);
65  void next_changed(const Bookmark& bookmark);
66 
67  void disable_prev();
68  void disable_next();
69 
70  void bookmarks_changed();
71 };
72 
73 #endif // GUI_BOOKMARKS_H
Definition: Bookmark.h:31
Interface for PlayerPlugin classes. get_name() and language_changed() must be overwritten.
Definition: GUI_Player.h:43
The GUI_Bookmarks class.
Definition: GUI_Bookmarks.h:36
The Bookmarks logic class.
Definition: Bookmarks.h:36