Add Play/Stop button to the Frame Dial.
[synfig.git] / synfig-studio / trunk / src / gtkmm / framedial.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file framedial.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 **
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.
15 **
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.
20 **      \endlegal
21 */
22 /* ========================================================================= */
23
24 /* === H E A D E R S ======================================================= */
25
26 #ifdef USING_PCH
27 #       include "pch.h"
28 #else
29 #ifdef HAVE_CONFIG_H
30 #       include <config.h>
31 #endif
32
33 #include "framedial.h"
34 #include <gtkmm/image.h>
35 #include <gtkmm/stock.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 FrameDial::FrameDial(): Gtk::Table(5, 1, false)
53 {
54         Gtk::IconSize iconsize = Gtk::IconSize::from_name("synfig-small_icon");
55
56         seek_begin = create_icon(iconsize, Gtk::Stock::MEDIA_PREVIOUS,
57                                         _("Seek to Begin"));
58         seek_prev_frame = create_icon(iconsize, Gtk::Stock::MEDIA_REWIND,
59                                         _("Previous Frame"));
60         play_stop = create_icon(iconsize, Gtk::Stock::MEDIA_PLAY,
61                                         _("Play"));
62         seek_next_frame = create_icon(iconsize, Gtk::Stock::MEDIA_FORWARD,
63                                         _("Next Frame"));
64         seek_end = create_icon(iconsize, Gtk::Stock::MEDIA_NEXT,
65                                         _("Seek to End"));
66
67         attach(*seek_begin, 0, 1, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0);
68         attach(*seek_prev_frame, 1, 2, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0);
69         attach(*play_stop, 2, 3, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0);
70         attach(*seek_next_frame, 3, 4, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0);
71         attach(*seek_end, 4, 5, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0);
72 }
73
74 Gtk::Button *
75 FrameDial::create_icon(Gtk::IconSize size, const Gtk::BuiltinStockID & stockid,
76                 const char * tooltip)
77 {
78         Gtk::Button *button = manage(new class Gtk::Button());
79         Gtk::Image *icon = manage(new Gtk::Image(stockid, size));
80         button->add(*icon);
81         tooltips.set_tip(*button, tooltip);
82         icon->set_padding(0, 0);
83         icon->show();
84         button->set_relief(Gtk::RELIEF_NONE);
85         button->show();
86
87         return button;
88 }
89