summaryrefslogtreecommitdiff
path: root/riscos/theme.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscos/theme.h')
-rw-r--r--riscos/theme.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/riscos/theme.h b/riscos/theme.h
index 249328674..c04c6aa6e 100644
--- a/riscos/theme.h
+++ b/riscos/theme.h
@@ -4,14 +4,14 @@
* http://www.opensource.org/licenses/gpl-license
* Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
* Copyright 2003 James Bursa <bursa@users.sourceforge.net>
+ * Copyright 2004 Richard Wilson <not_ginger_matt@users.sourceforge.net>
*/
/** \file
* Toolbar themes (interface).
*
- * A theme consists of a template for the toolbar and icons. There is one
- * current theme, which is changed by ro_theme_load(). A toolbar can then be
- * created and manipulated.
+ * A theme consists of a simple sprite file. There is one current theme, which
+ * is changed by ro_theme_load(). A toolbar can then be created and manipulated.
*/
#ifndef _NETSURF_RISCOS_THEME_H_
@@ -19,12 +19,11 @@
#include "oslib/wimp.h"
-extern unsigned int theme_throbs;
+extern int theme_throbs;
void ro_theme_load(char *pathname);
-wimp_w ro_theme_create_toolbar(char *url_buffer, char *status_buffer,
- char *throbber_buffer);
-int ro_theme_toolbar_height(void);
-void ro_theme_resize_toolbar(wimp_w w, int width, int height);
+void ro_theme_create_toolbar(gui_window *g);
+int ro_theme_update_toolbar(gui_window *g);
+int ro_theme_resize_toolbar(gui_window *g);
#endif