Lumiera 0.pre.04~rc.1
»edit your freedom«
Loading...
Searching...
No Matches
play-panel.hpp
Go to the documentation of this file.
1/*
2 PLAY-PANEL.hpp - Dockable panel to hold the play control and switchboard
3
4 Copyright (C)
5 2025, Hermann Vosseler <Ichthyostega@web.de>
6
7  **Lumiera** is free software; you can redistribute it and/or modify it
8  under the terms of the GNU General Public License as published by the
9  Free Software Foundation; either version 2 of the License, or (at your
10  option) any later version. See the file COPYING for further details.
11
12*/
13
19#ifndef STAGE_PANEL_PLAY_PANEL_H
20#define STAGE_PANEL_PLAY_PANEL_H
21
22
23#include "stage/panel/panel.hpp"
26
27namespace stage {
28namespace panel {
29
30 class ViewerPanel;
31
32
37 : public Panel
38 {
43
44 public:
45 PlayPanel (workspace::PanelManager&, Gdl::DockItem&);
46
47 static const char* getTitle();
48 static const gchar* getStockID();
49
50 private:
51 void dispatchStop();
52 void dispatchPlay();
53 void dispatchPause();
54
57
59 };
60
61}}// namespace stage::panel
62#endif /*STAGE_PANEL_PLAY_PANEL_H*/
A toolbar widget for use in dialogs.
The base class for all dockable panels.
Definition panel.hpp:42
A »media player« panel.
widget::MiniButton buttonPause_
widget::MiniButton buttonPlay_
static const char * getTitle()
ViewLink & accessViewer()
static const gchar * getStockID()
widget::ButtonBar buttons_
widget::MiniButton buttonStop_
A modified toolbar widget for use in dialogs.
A class to manage DockItem objects for WorkspaceWindow.
Lumiera GTK UI implementation root.
Definition guifacade.cpp:37
Base class and interface for all dockable panels.