Add Keyframe Dial initial layout
[synfig.git] / synfig-studio / trunk / src / gtkmm / keyframedial.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file keyframedial.cpp
3 **      \brief Template File
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2009 Gerco Ballintijn
10 **      Copyright (c) 2009 Carlos Lopez
11 **
12 **      This package is free software; you can redistribute it and/or
13 **      modify it under the terms of the GNU General Public License as
14 **      published by the Free Software Foundation; either version 2 of
15 **      the License, or (at your option) any later version.
16 **
17 **      This package is distributed in the hope that it will be useful,
18 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
19 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 **      General Public License for more details.
21 **      \endlegal
22 */
23 /* ========================================================================= */
24
25 /* === H E A D E R S ======================================================= */
26
27 #ifdef USING_PCH
28 #       include "pch.h"
29 #else
30 #ifdef HAVE_CONFIG_H
31 #       include <config.h>
32 #endif
33
34 #include "keyframedial.h"
35 #include <gtkmm/image.h>
36
37 #endif
38
39 /* === U S I N G =========================================================== */
40
41 using namespace std;
42 using namespace studio;
43
44 /* === M A C R O S ========================================================= */
45
46 /* === G L O B A L S ======================================================= */
47
48 /* === P R O C E D U R E S ================================================= */
49
50 /* === M E T H O D S ======================================================= */
51
52 KeyFrameDial::KeyFrameDial(): Gtk::Table(1, 2, false)
53 {
54         Gtk::IconSize iconsize = Gtk::IconSize::from_name("synfig-small_icon");
55
56         seek_prev_keyframe = create_icon(iconsize, GTK_STOCK_GO_BACK, _("Previous KeyFrame"));
57         seek_next_keyframe = create_icon(iconsize, GTK_STOCK_GO_FORWARD, _("Next KeyFrame"));
58
59         attach(*seek_prev_keyframe, 0, 1, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0);
60         attach(*seek_next_keyframe, 1, 2, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0);
61 }
62
63 Gtk::Button *
64 KeyFrameDial::create_icon(Gtk::IconSize iconsize, const char * stockid,
65                 const char * tooltip)
66 {
67         Gtk::Button *button = manage(new class Gtk::Button());
68         Gtk::Image *icon = manage(new Gtk::Image(Gtk::StockID(stockid), iconsize));
69         button->add(*icon);
70         tooltips.set_tip(*button, tooltip);
71         icon->set_padding(0, 0);
72         icon->show();
73         button->set_relief(Gtk::RELIEF_NONE);
74         button->show();
75
76         return button;
77 }