Lumiera  0.pre.03
»edit your freedom«
viewer-panel.hpp
Go to the documentation of this file.
1 /*
2  VIEWER-PANEL.hpp - Dockable panel to hold the video display widgets and controls
3 
4  Copyright (C)
5  2008, Joel Holdsworth <joel@airwebreathe.org.uk>
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_VIEWER_PANEL_H
20 #define STAGE_PANEL_VIEWER_PANEL_H
21 
22 
23 #include "stage/panel/panel.hpp"
26 
27 namespace stage {
28 namespace panel {
29 
34  : public Panel
35  {
36  ctrl::PlaybackController playbackController_;
37 
38  public:
39  ViewerPanel (workspace::PanelManager&, Gdl::DockItem&);
40 
41  static const char* getTitle();
42  static const gchar* getStockID();
43 
44 
45  protected:
46  void on_frame(void *buffer);
47 
48  protected:
49 
52  };
53 
54 }}// namespace stage::panel
55 #endif /*STAGE_PANEL_VIEWER_PANEL_H*/
A class to manage DockItem objects for WorkspaceWindow.
The base class for all dockable panels.
Definition: panel.hpp:40
Base class and interface for all dockable panels.
Widget to create a video display embedded into the UI.
Lumiera GTK UI implementation root.
Definition: guifacade.cpp:37
widget::VideoDisplayWidget display_
widget to display the video content
This file contains the definition of the playback controller object.
A panel to display the video output.