From c6ffb4b578aaa0fbfae9f3dd42619d7c098728ac Mon Sep 17 00:00:00 2001 From: Richard Wilson Date: Mon, 30 Aug 2004 21:04:11 +0000 Subject: [project @ 2004-08-30 21:04:11 by rjw] Removal of redundant files. svn path=/import/netsurf/; revision=1255 --- riscos/toolbar.h | 68 -------------------------------------------------------- 1 file changed, 68 deletions(-) delete mode 100644 riscos/toolbar.h (limited to 'riscos/toolbar.h') diff --git a/riscos/toolbar.h b/riscos/toolbar.h deleted file mode 100644 index 4f68fd01e..000000000 --- a/riscos/toolbar.h +++ /dev/null @@ -1,68 +0,0 @@ -/* - * This file is part of NetSurf, http://netsurf.sourceforge.net/ - * Licensed under the GNU General Public License, - * http://www.opensource.org/licenses/gpl-license - * Copyright 2004 Richard Wilson - */ - -/** \file - * Toolbar creation (interface). - */ - -#ifndef _NETSURF_RISCOS_TOOLBAR_H_ -#define _NETSURF_RISCOS_TOOLBAR_H_ - -#include "netsurf/riscos/theme.h" -#include "oslib/wimp.h" - - -struct toolbar_icon; - -struct toolbar { - - /* Internal variables - */ - unsigned int resize_status; // Update status width on next reformat? - unsigned int update_pending; // Update icons on next reformat? - unsigned int icon_width; // Current width of icons - int width_internal; // Width actually used on last reformat - int status_height; // Status bar height - int status_old_width; // Old status width - int width; // Toolbar width on last reformat - unsigned int height; // Toolbar height on last reformat - - /* General options - */ - unsigned int throbber_width; // Throbber width (0 = unavaiable) - unsigned int throbber_height; // Throbber height (0 = unavaiable) - int throbber_frames; // Throbber frames (0 = unavaiable) - unsigned int status_window; // Show status window? - unsigned int standard_buttons; // Show standard buttons? - unsigned int url_bar; // Show URL bar? - unsigned int throbber; // Show Throbber? - unsigned int status_width; // Width of status window - - /* The first toolbar icon - */ - struct toolbar_icon *icon; - - /* The toolbar type - */ - int type; - - /* Window handles - */ - wimp_w toolbar_handle; - wimp_w status_handle; -}; - - -struct toolbar *ro_toolbar_create(struct theme_entry *theme, char *url_buffer, - char *status_buffer, char *throbber_buffer, int toolbar_type); -void ro_toolbar_destroy(struct toolbar *toolbar); -void ro_toolbar_resize_status(struct toolbar *toolbar, int height); -int ro_toolbar_reformat(struct toolbar *toolbar, int width); -void ro_toolbar_status_reformat(struct toolbar *toolbar, int width); -int ro_toolbar_update(struct toolbar *toolbar); - -#endif -- cgit v1.2.3