Changed the "tagrelease" and "tagstable" make targets to use subversion. Also increme...
[synfig.git] / synfig-studio / tags / stable / src / gtkmm / dock_keyframes.h
1 /* === S I N F G =========================================================== */
2 /*!     \file dock_keyframes.h
3 **      \brief Template Header
4 **
5 **      $Id: dock_keyframes.h,v 1.1.1.1 2005/01/07 03:34:36 darco Exp $
6 **
7 **      \legal
8 **      Copyright (c) 2002 Robert B. Quattlebaum Jr.
9 **
10 **      This software and associated documentation
11 **      are CONFIDENTIAL and PROPRIETARY property of
12 **      the above-mentioned copyright holder.
13 **
14 **      You may not copy, print, publish, or in any
15 **      other way distribute this software without
16 **      a prior written agreement with
17 **      the copyright holder.
18 **      \endlegal
19 */
20 /* ========================================================================= */
21
22 /* === S T A R T =========================================================== */
23
24 #ifndef __SINFG_STUDIO_DOCK_KEYFRAMES_H
25 #define __SINFG_STUDIO_DOCK_KEYFRAMES_H
26
27 /* === H E A D E R S ======================================================= */
28
29 #include "dockable.h"
30 #include "dock_canvasspecific.h"
31 #include <gtkmm/treeview.h>
32 #include "instance.h"
33 #include <gtkmm/actiongroup.h>
34
35 /* === M A C R O S ========================================================= */
36
37 /* === T Y P E D E F S ===================================================== */
38
39 /* === C L A S S E S & S T R U C T S ======================================= */
40
41 namespace studio {
42
43 class KeyframeTreeStore;
44 class KeyframeTree;
45
46 class KeyframeActionManager;
47         
48 class Dock_Keyframes : public Dock_CanvasSpecific
49 {       
50         Glib::RefPtr<Gtk::ActionGroup> action_group;
51
52         /*
53         void add_keyframe_pressed();
54         void duplicate_keyframe_pressed();
55         void delete_keyframe_pressed();
56         */
57         
58         void show_keyframe_properties();
59         
60         KeyframeActionManager* keyframe_action_manager;
61         
62 protected:
63         virtual void init_canvas_view_vfunc(etl::loose_handle<CanvasView> canvas_view);
64         virtual void changed_canvas_view_vfunc(etl::loose_handle<CanvasView> canvas_view);
65
66
67 public:
68
69
70         Dock_Keyframes();
71         ~Dock_Keyframes();
72 }; // END of Dock_Keyframes
73
74 }; // END of namespace studio
75
76 /* === E N D =============================================================== */
77
78 #endif