b267eb243b2f000f2c44014626a04008e6fa83ec
[synfig.git] / synfig-studio / trunk / src / gtkmm / cellrenderer_time.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file cellrenderer_time.cpp
3 **      \brief Template File
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
10 **      This package is free software; you can redistribute it and/or
11 **      modify it under the terms of the GNU General Public License as
12 **      published by the Free Software Foundation; either version 2 of
13 **      the License, or (at your option) any later version.
14 **
15 **      This package is distributed in the hope that it will be useful,
16 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 **      General Public License for more details.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === H E A D E R S ======================================================= */
24
25 #ifdef USING_PCH
26 #       include "pch.h"
27 #else
28 #ifdef HAVE_CONFIG_H
29 #       include <config.h>
30 #endif
31
32 #include <gtkmm/entry.h>
33 #include <gtkmm/button.h>
34 #include "cellrenderer_time.h"
35 #include "app.h"
36 #include "widget_time.h"
37
38 #include "general.h"
39
40 #endif
41
42 /* === U S I N G =========================================================== */
43
44 using namespace std;
45 //using namespace etl;
46 using namespace synfig;
47 using namespace studio;
48
49 /* === M A C R O S ========================================================= */
50
51 /* === G L O B A L S ======================================================= */
52
53 /* === P R O C E D U R E S ================================================= */
54
55 /* === M E T H O D S ======================================================= */
56
57 CellRenderer_Time::CellRenderer_Time():
58         Glib::ObjectBase        (typeid(CellRenderer_Time)),
59         Gtk::CellRendererText   (),
60         property_time_(*this,"time",synfig::Time(0)),
61         property_fps_(*this,"fps", float(0))
62 {
63         CellRendererText::signal_edited().connect(sigc::mem_fun(*this,&studio::CellRenderer_Time::string_edited_));
64 }
65
66 CellRenderer_Time::~CellRenderer_Time()
67 {
68         if (getenv("SYNFIG_DEBUG_DESTRUCTORS"))
69                 synfig::info("CellRenderer_Time::~CellRenderer_Time(): Deleted");
70 }
71
72 void
73 CellRenderer_Time::string_edited_(const Glib::ustring&path,const Glib::ustring&str)
74 {
75         signal_edited_(path,Time((String)str,(Real)Time(property_fps_)));
76 }
77
78 void
79 CellRenderer_Time::render_vfunc(
80                 const Glib::RefPtr<Gdk::Drawable>& window,
81                 Gtk::Widget& widget,
82                 const Gdk::Rectangle& background_area,
83                 const Gdk::Rectangle& ca,
84                 const Gdk::Rectangle& expose_area,
85                 Gtk::CellRendererState flags)
86 {
87         if(!window)
88                 return;
89         //int   height = ca.get_height();
90
91         Gtk::StateType state = Gtk::STATE_INSENSITIVE;
92         if(property_editable())
93                 state = Gtk::STATE_NORMAL;
94         if((flags & Gtk::CELL_RENDERER_SELECTED) != 0)
95                 state = (widget.has_focus()) ? Gtk::STATE_SELECTED : Gtk::STATE_ACTIVE;
96
97         const Time time(property_time_);
98         const float fps((Real)Time(property_fps_));
99
100         property_text()=(Glib::ustring)time.get_string(fps,App::get_time_format());
101
102         CellRendererText::render_vfunc(window,widget,background_area,ca,expose_area,flags);
103 }
104
105
106 Gtk::CellEditable*
107 CellRenderer_Time::start_editing_vfunc(
108         GdkEvent* event,
109         Gtk::Widget& widget,
110         const Glib::ustring& path,
111         const Gdk::Rectangle& background_area,
112         const Gdk::Rectangle& cell_area,
113         Gtk::CellRendererState flags)
114 {
115         // If we aren't editable, then there is nothing to do
116         if(!property_editable())
117                 return 0;
118
119         const Time time(property_time_);
120         const float fps((Real)Time(property_fps_));
121
122         property_text()=(Glib::ustring)time.get_string(fps,App::get_time_format()|Time::FORMAT_FULL);
123 #if 0
124         Widget_Time* widget_time(manage(new Widget_Time));
125         widget_time->set_fps(fps);
126         widget_time->set_value(time);
127         widget_time->signal_editing_done().connect(sigc::mem_fun(*this, &CellRenderer_Time::on_value_editing_done));
128         return widget_time;
129 #else
130         return CellRendererText::start_editing_vfunc(event,widget,path,background_area,cell_area,flags);
131 #endif
132 }