1 /* === S Y N F I G ========================================================= */
2 /*! \file dock_timetrack.h
3 ** \brief Template Header
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 ** Copyright (c) 2009 Carlos López
11 ** This package is free software; you can redistribute it and/or
12 ** modify it under the terms of the GNU General Public License as
13 ** published by the Free Software Foundation; either version 2 of
14 ** the License, or (at your option) any later version.
16 ** This package is distributed in the hope that it will be useful,
17 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 ** General Public License for more details.
22 /* ========================================================================= */
24 /* === S T A R T =========================================================== */
26 #ifndef __SYNFIG_STUDIO_DOCK_TIMETRACK_H
27 #define __SYNFIG_STUDIO_DOCK_TIMETRACK_H
29 /* === H E A D E R S ======================================================= */
32 #include <gtkmm/treeview.h>
34 #include "dock_canvasspecific.h"
36 /* === M A C R O S ========================================================= */
38 /* === T Y P E D E F S ===================================================== */
40 /* === C L A S S E S & S T R U C T S ======================================= */
43 class Widget_Timeslider;
44 class Widget_Keyframe_List;
46 class Dock_Timetrack : public Dock_CanvasSpecific
48 Gtk::HScrollbar* hscrollbar_;
49 Gtk::VScrollbar* vscrollbar_;
50 Widget_Timeslider* widget_timeslider_;
51 Widget_Keyframe_List* widget_kf_list_;
55 virtual void init_canvas_view_vfunc(etl::loose_handle<CanvasView> canvas_view);
56 virtual void changed_canvas_view_vfunc(etl::loose_handle<CanvasView> canvas_view);
58 void refresh_selected_param();
65 }; // END of Dock_Timetrack
67 }; // END of namespace studio
69 /* === E N D =============================================================== */