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) Lumiera.org
5  2008, Joel Holdsworth <joel@airwebreathe.org.uk>
6 
7  This program is free software; you can redistribute it and/or
8  modify it under the terms of the GNU General Public License as
9  published by the Free Software Foundation; either version 2 of
10  the License, or (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, write to the Free Software
19  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 
21 */
22 
28 #ifndef STAGE_PANEL_VIEWER_PANEL_H
29 #define STAGE_PANEL_VIEWER_PANEL_H
30 
31 
32 #include "stage/panel/panel.hpp"
35 
36 namespace stage {
37 namespace panel{
38 
43  : public Panel
44  {
45  ctrl::PlaybackController playbackController_;
46 
47  public:
48  ViewerPanel (workspace::PanelManager&, Gdl::DockItem&);
49 
50  static const char* getTitle();
51  static const gchar* getStockID();
52 
53 
54  protected:
55  void on_frame(void *buffer);
56 
57  protected:
58 
61  };
62 
63 }}// namespace stage::panel
64 #endif /*STAGE_PANEL_VIEWER_PANEL_H*/
A class to manage DockItem objects for WorkspaceWindow.
The base class for all dockable panels.
Definition: panel.hpp:49
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:46
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.