summaryrefslogtreecommitdiff
path: root/desktop/gui.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-01-12 23:50:54 +0000
committerVincent Sanders <vince@kyllikki.org>2014-01-12 23:50:54 +0000
commit5a962586fb161651fc612ed8a8f6da99d8d22f65 (patch)
treec31bb23578c4b60ec575952cd51e6bdbac6a28dc /desktop/gui.h
parent4b49b4ac775a1e3ca0c59f390f3f2427e31bce2b (diff)
downloadnetsurf-5a962586fb161651fc612ed8a8f6da99d8d22f65.tar.gz
netsurf-5a962586fb161651fc612ed8a8f6da99d8d22f65.tar.bz2
move mandantory window update and redraw operations into table
Diffstat (limited to 'desktop/gui.h')
-rw-r--r--desktop/gui.h18
1 files changed, 15 insertions, 3 deletions
diff --git a/desktop/gui.h b/desktop/gui.h
index 1ab871f33..0b7bdcca6 100644
--- a/desktop/gui.h
+++ b/desktop/gui.h
@@ -79,6 +79,21 @@ struct gui_window_table {
/** destroy previously created gui window */
void (*destroy)(struct gui_window *g);
+ /**
+ * Force a redraw of the entire contents of a window.
+ *
+ * \param g gui_window to redraw
+ */
+ void (*redraw)(struct gui_window *g);
+
+ /**
+ * Redraw an area of a window.
+ *
+ * \param g gui_window
+ * \param rect area to redraw
+ */
+ void (*update)(struct gui_window *g, const struct rect *rect);
+
/* Optional entries */
@@ -164,9 +179,6 @@ struct gui_table {
extern struct gui_table *guit; /* the gui vtable */
-void gui_window_redraw_window(struct gui_window *g);
-void gui_window_update_box(struct gui_window *g,
- const struct rect *rect);
bool gui_window_get_scroll(struct gui_window *g, int *sx, int *sy);
void gui_window_set_scroll(struct gui_window *g, int sx, int sy);
void gui_window_get_dimensions(struct gui_window *g, int *width, int *height,