Lumiera 0.pre.04
»edit your freedom«
Loading...
Searching...
No Matches
assets-panel.hpp
Go to the documentation of this file.
1/*
2 assets-panel.hpp - Definition of the assets panel
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
14
27#ifndef STAGE_PANEL_ASSETS_PANEL_H
28#define STAGE_PANEL_ASSETS_PANEL_H
29
30
31#include "stage/panel/panel.hpp"
32
33namespace stage {
34namespace panel{
35
37 : public Panel
38 {
39 public:
44 AssetsPanel (workspace::PanelManager&, Gdl::DockItem&);
45
46
47 static const char* getTitle();
48 static const gchar* getStockID();
49
50
51 protected:
52 Gtk::Notebook notebook_;
53
54 Gtk::IconView media_;
55 Gtk::IconView clips_;
56 Gtk::IconView effects_;
57 Gtk::IconView transitions_;
58 };
59
60
61}}// namespace stage::panel
62#endif /*STAGE_PANEL_ASSETS_PANEL_H*/
static const char * getTitle()
static const gchar * getStockID()
The base class for all dockable panels.
Definition panel.hpp:42
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.