Sayonara Player
GUI_Bookmarks.h
1/* GUI_Bookmarks.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_BOOKMARKS_H
22#define GUI_BOOKMARKS_H
23
24#include "Gui/Plugins/PlayerPluginBase.h"
25#include "Utils/Pimpl.h"
26
27class Bookmarks;
28class Bookmark;
29
30UI_FWD(GUI_Bookmarks)
31
32
37 public PlayerPlugin::Base
38{
39 Q_OBJECT
40 UI_CLASS(GUI_Bookmarks)
41 PIMPL(GUI_Bookmarks)
42
43public:
44 explicit GUI_Bookmarks(Bookmarks* bookmarks, QWidget* parent=nullptr);
45 ~GUI_Bookmarks() override;
46
47 QString name() const override;
48 QString displayName() const override;
49
50private:
51 void retranslate() override;
52 void initUi() override;
53
54
55private slots:
56 void currentIndexChanged(int currentIndex);
57 void nextClicked();
58 void previousClicked();
59 void newClicked();
60 void deleteClicked();
61 void loopToggled(bool);
62
63 void previousChanged(const Bookmark& bookmark);
64 void nextChanged(const Bookmark& bookmark);
65
66 void disablePrevious();
67 void disableNext();
68
69 void bookmarksChanged();
70};
71
72#endif // GUI_BOOKMARKS_H
Definition: Bookmark.h:32
The Bookmarks logic class.
Definition: Bookmarks.h:39
The GUI_Bookmarks class.
Definition: GUI_Bookmarks.h:38
QString displayName() const override
must be overwritten
QString name() const override
must be overwritten
Interface for PlayerPlugin classes. get_name() and language_changed() must be overwritten.
Definition: GUI_Player.h:43