2 Copyright (C) 2009 Paul Davis
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.
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.
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.
20 #include "cairo_widget.h"
21 #include "gui_thread.h"
23 CairoWidget::CairoWidget ()
32 CairoWidget::~CairoWidget ()
35 g_object_unref (_pixmap
);
40 CairoWidget::on_expose_event (GdkEventExpose
*event
)
42 Gdk::Rectangle
const exposure (
43 event
->area
.x
, event
->area
.y
, event
->area
.width
, event
->area
.height
46 Gdk::Rectangle r
= exposure
;
47 Gdk::Rectangle
content (0, 0, _width
, _height
);
49 r
.intersect (content
, intersects
);
53 GdkDrawable
* drawable
= get_window()->gobj ();
58 g_object_unref (_pixmap
);
61 _pixmap
= gdk_pixmap_new (drawable
, _width
, _height
, -1);
63 cairo_t
* cr
= gdk_cairo_create (_pixmap
);
72 get_style()->get_fg_gc (Gtk::STATE_NORMAL
)->gobj(),
86 /** Marks the widget as dirty, so that render () will be called on
87 * the next GTK expose event.
91 CairoWidget::set_dirty ()
93 ENSURE_GUI_THREAD (*this, &CairoWidget::set_dirty
)
99 /** Handle a size allocation.
100 * @param alloc GTK allocation.
103 CairoWidget::on_size_allocate (Gtk::Allocation
& alloc
)
105 Gtk::EventBox::on_size_allocate (alloc
);
107 _width
= alloc
.get_width ();
108 _height
= alloc
.get_height ();