summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorRob Kendrick <rjek@netsurf-browser.org>2006-03-21 17:22:41 +0000
committerRob Kendrick <rjek@netsurf-browser.org>2006-03-21 17:22:41 +0000
commit388ce7b8c46ae20b97f891605f014db7fcb2fc6f (patch)
treea3d5ec3fd55c255fdbef57317ed84a6ad2a9f93d /desktop
parent0d445d0f41b6a4da0581511c38f4b8d7404b6a59 (diff)
downloadnetsurf-388ce7b8c46ae20b97f891605f014db7fcb2fc6f.tar.gz
netsurf-388ce7b8c46ae20b97f891605f014db7fcb2fc6f.tar.bz2
[project @ 2006-03-21 17:22:41 by rjek]
Radio and checkbox widgets are now 3D, and implemented arc plotting for them svn path=/import/netsurf/; revision=2145
Diffstat (limited to 'desktop')
-rw-r--r--desktop/plotters.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/desktop/plotters.h b/desktop/plotters.h
index f191654e5..65abd1774 100644
--- a/desktop/plotters.h
+++ b/desktop/plotters.h
@@ -32,6 +32,8 @@ struct plotter_table {
bool (*text)(int x, int y, struct css_style *style, const char *text,
size_t length, colour bg, colour c);
bool (*disc)(int x, int y, int radius, colour c, bool filled);
+ bool (*arc)(int x, int y, int radius, int angle1, int angle2,
+ colour c);
bool (*bitmap)(int x, int y, int width, int height,
struct bitmap *bitmap, colour bg);
bool (*bitmap_tile)(int x, int y, int width, int height,