Lumiera  0.pre.03
»edit your freedom«
assets-panel.hpp
Go to the documentation of this file.
1 /*
2  assets-panel.hpp - Definition of the assets panel
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 
23 
36 #ifndef STAGE_PANEL_ASSETS_PANEL_H
37 #define STAGE_PANEL_ASSETS_PANEL_H
38 
39 
40 #include "stage/panel/panel.hpp"
41 
42 namespace stage {
43 namespace panel{
44 
46  : public Panel
47  {
48  public:
53  AssetsPanel (workspace::PanelManager&, Gdl::DockItem&);
54 
55 
56  static const char* getTitle();
57  static const gchar* getStockID();
58 
59 
60  protected:
61  Gtk::Notebook notebook_;
62 
63  Gtk::IconView media_;
64  Gtk::IconView clips_;
65  Gtk::IconView effects_;
66  Gtk::IconView transitions_;
67  };
68 
69 
70 }}// namespace stage::panel
71 #endif /*STAGE_PANEL_ASSETS_PANEL_H*/
AssetsPanel(workspace::PanelManager &, Gdl::DockItem &)
Build a new Asset-Panel.
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.
Lumiera GTK UI implementation root.
Definition: guifacade.cpp:46