synfig-studio  1.0.3
cellrenderer_time.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
21 /* ========================================================================= */
22 
23 /* === S T A R T =========================================================== */
24 
25 #ifndef __SYNFIG_STUDIO_CELLRENDERER_TIME_H
26 #define __SYNFIG_STUDIO_CELLRENDERER_TIME_H
27 
28 /* === H E A D E R S ======================================================= */
29 
30 #include <glibmm/property.h>
31 #include <gtkmm/entry.h>
32 #include <gtkmm/cellrenderertext.h>
33 
34 #include <sigc++/signal.h>
35 #include <sigc++/slot.h>
36 
37 #include <synfig/time.h>
38 
39 /* === M A C R O S ========================================================= */
40 
41 /* === T Y P E D E F S ===================================================== */
42 
43 /* === C L A S S E S & S T R U C T S ======================================= */
44 
45 namespace Gtk { class Entry; class Button; };
46 
47 namespace studio {
48 
49 class CellRenderer_Time : public Gtk::CellRendererText
50 {
51  sigc::signal<void, const Glib::ustring&> signal_secondary_click_;
52  sigc::signal<void, const Glib::ustring&, synfig::Time> signal_edited_;
53 
54  Glib::Property<synfig::Time> property_time_;
55  Glib::Property<synfig::Time> property_fps_;
56 
57  void string_edited_(const Glib::ustring&,const Glib::ustring&);
58 
59  void on_value_editing_done();
60 
61 public:
62  sigc::signal<void, const Glib::ustring&, synfig::Time> &signal_edited()
63  {return signal_edited_; }
64 
65  Glib::PropertyProxy<synfig::Time> property_time() { return property_time_.get_proxy();}
66  Glib::PropertyProxy<synfig::Time> property_fps() { return property_fps_.get_proxy();}
67 
70 
71 protected:
72 
73  virtual void
75  const ::Cairo::RefPtr< ::Cairo::Context>& cr,
76  Gtk::Widget& widget,
77  const Gdk::Rectangle& background_area,
78  const Gdk::Rectangle& cell_area,
79  Gtk::CellRendererState flags);
80 
81  virtual Gtk::CellEditable* start_editing_vfunc(GdkEvent* event,
82  Gtk::Widget& widget,
83  const Glib::ustring& path,
84  const Gdk::Rectangle& background_area,
85  const Gdk::Rectangle& cell_area,
86  Gtk::CellRendererState flags);
87 
88 }; // END of class CellRenderer_Time
89 
90 }; // END of namespace studio
91 
92 /* === E N D =============================================================== */
93 
94 #endif