Sayonara Player
Loading...
Searching...
No Matches
GUI_Bookmarks.h
1/* GUI_Bookmarks.h */
2
3/* Copyright (C) 2011-2024 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
36class GUI_Bookmarks :
37 public PlayerPlugin::Base
38{
39 Q_OBJECT
40 UI_CLASS(GUI_Bookmarks)
41 PIMPL(GUI_Bookmarks)
42
43 public:
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
50 private:
51 void retranslate() override;
52 void initUi() override;
53
54 private slots:
55 void currentIndexChanged(int currentIndex);
56 void nextClicked();
57 void previousClicked();
58 void newClicked();
59 void deleteClicked();
60 void loopToggled(bool);
61
62 void previousChanged(const Bookmark& bookmark);
63 void nextChanged(const Bookmark& bookmark);
64
65 void disablePrevious();
66 void disableNext();
67
68 void bookmarksChanged();
69};
70
71#endif // GUI_BOOKMARKS_H
Definition Bookmark.h:32
Definition Bookmarks.h:35
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:47