4a1bbb9051f569489f286c12d2fd05a809d929f3
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / cell_renderer_pixbuf_toggle.h
1 /*
2     Copyright (C) 2000-2009 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifdef GTKOSX
21 #include <MacTypes.h>
22 #if defined(Style)
23 #undef style
24 #endif
25 #endif
26
27 #ifndef __gtkmm2ext_cell_renderer_pixbuf_toggle_h__ 
28 #define __gtkmm2ext_cell_renderer_pixbuf_toggle_h__
29
30 #include <gtkmm/drawingarea.h>
31 #include <gtkmm/adjustment.h>
32 #include <gtkmm/widget.h>
33 #include <gtkmm/cellrenderer.h>
34 #include <gdkmm.h>
35
36 using namespace Gtk;
37
38 namespace Gtkmm2ext {
39
40 class CellRendererPixbufToggle : public Gtk::CellRenderer
41 {
42   public:
43
44         CellRendererPixbufToggle();  
45         virtual ~CellRendererPixbufToggle(){};
46
47         virtual void render_vfunc (const Glib::RefPtr<Gdk::Drawable>& window, Gtk::Widget& widget, const Gdk::Rectangle& background_area, const Gdk::Rectangle& cell_area, const Gdk::Rectangle& expose_area, Gtk::CellRendererState flags);
48
49         virtual void get_size_vfunc (Gtk::Widget& widget, const Gdk::Rectangle* cell_area, int* x_offset, int* y_offset, int* width, int* height) const;
50
51         virtual bool activate_vfunc(GdkEvent*, Gtk::Widget&, const Glib::ustring& path, const Gdk::Rectangle&, const Gdk::Rectangle&, Gtk::CellRendererState);
52
53         Glib::PropertyProxy_Base _property_renderable();
54
55         Glib::PropertyProxy< Glib::RefPtr<Gdk::Pixbuf> > property_pixbuf();
56         Glib::PropertyProxy<bool> property_active();
57
58         void set_active_pixbuf(Glib::RefPtr<Gdk::Pixbuf> pixbuf);
59         void set_inactive_pixbuf(Glib::RefPtr<Gdk::Pixbuf> pixbuf);
60
61         typedef sigc::signal<void, const Glib::ustring&> SignalToggled;
62
63         SignalToggled& signal_toggled();
64
65   protected:
66   
67   private:
68         Glib::Property< Glib::RefPtr<Gdk::Pixbuf> > property_pixbuf_; 
69         Glib::Property<bool> property_active_; 
70         
71         Glib::RefPtr<Gdk::Pixbuf> active_pixbuf;
72         Glib::RefPtr<Gdk::Pixbuf> inactive_pixbuf;
73
74         //void on_cell_toggled(const Glib::ustring& path_string);
75
76         SignalToggled signal_toggled_;
77 };
78
79 } // namespace
80
81 #endif /* __gtkmm2ext_cell_renderer_pixbuf_toggle_h__ */