summaryrefslogtreecommitdiff
path: root/riscos/theme.h
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2004-05-04 22:23:44 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2004-05-04 22:23:44 +0000
commite7da747f5f51a71254113552087e07d67efe0851 (patch)
treea031b0e1683678fc4c6f4c95bc181a8b8429cb1f /riscos/theme.h
parent1692e9c33d59ba8794d134d5f40cdad9c1572522 (diff)
downloadnetsurf-e7da747f5f51a71254113552087e07d67efe0851.tar.gz
netsurf-e7da747f5f51a71254113552087e07d67efe0851.tar.bz2
[project @ 2004-05-04 22:21:37 by rjw]
Revised GUI. svn path=/import/netsurf/; revision=823
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