Sayonara Player
MenuButtonViews.h
1 #ifndef MENUBUTTONVIEWS_H
2 #define MENUBUTTONVIEWS_H
3 
4 #include "Gui/Utils/MenuTool/MenuToolButton.h"
5 #include "Gui/Utils/Shortcuts/ShortcutIdentifier.h"
6 
7 namespace Library
8 {
10  {
11  Q_OBJECT
12  PIMPL(MenuButtonViews)
13 
14  public:
15  MenuButtonViews(QWidget* parent = nullptr);
16  ~MenuButtonViews() override;
17 
18  private slots:
19  void actionTriggered(bool b);
20  void viewTypeChanged();
21  void shortcutChanged(ShortcutIdentifier identifier);
22 
23  protected:
24  void languageChanged() override;
25  void skinChanged() override;
26  };
27 }
28 
29 #endif // MENUBUTTONVIEWS_H
Gui::MenuToolButton
This is the little button you often see near comboboxes It opens up a menu when clicked....
Definition: MenuToolButton.h:42
Library
An interface class needed when implementing a library plugin.
Definition: LocalLibraryWatcher.h:31
Library::MenuButtonViews
Definition: MenuButtonViews.h:10