From cafb24a3366cc0efaffcfbe417988283e96dcda2 Mon Sep 17 00:00:00 2001 From: James Bursa Date: Wed, 2 Jun 2004 21:23:27 +0000 Subject: [project @ 2004-06-02 21:23:27 by bursa] Remove obsolete files. svn path=/import/netsurf/; revision=918 --- riscos/frames.h | 74 --------------------------------------------------------- 1 file changed, 74 deletions(-) delete mode 100644 riscos/frames.h (limited to 'riscos/frames.h') diff --git a/riscos/frames.h b/riscos/frames.h deleted file mode 100644 index eee37d107..000000000 --- a/riscos/frames.h +++ /dev/null @@ -1,74 +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 2003 John M Bell - */ - -/* - * Frames are represented as a tree structure. eg: - * - * index.html - * | - * -------------------- - * | | - * nav.html main.html - * | - * -------------------- - * | | | - * top.html mid.html end.html - * - * might represent something like: - * - * ------------------------ - * | nav.html | top.html | - * | |------------| - * | | mid.html | - * | |------------| - * | | end.html | - * ------------------------- - * - * where the left frame is main.html with three sub frames (top, mid, end) - * and the entire page is index.html with two sub frames (nav, main) - * - * This is hung off the browser window structure. - */ - -#ifndef _NETSURF_RISCOS_FRAMES_H_ -#define _NETSURF_RISCOS_FRAMES_H_ - -#include "netsurf/utils/config.h" -#include "netsurf/content/content.h" -#include "netsurf/desktop/browser.h" -#include "netsurf/render/box.h" -#include "netsurf/riscos/gui.h" - -#include "oslib/wimp.h" - -#ifdef WITH_FRAMES - -struct frame_list { - - struct content *c; - struct browser_window *parent; - struct content *page; - struct box *box; - struct object_params *params; - void **state; - struct browser_window *bw; - gui_window *g; - struct frame_list *next; - struct frame_list *prev; -}; - -void frame_add_instance(struct content *c, struct browser_window *bw, - struct content *page, struct box *box, - struct object_params *params, void **state); -void frame_remove_instance(struct content *c, struct browser_window *bw, - struct content *page, struct box *box, - struct object_params *params, void **state); -void frame_reshape_instance(struct content *c, struct browser_window *bw, - struct content *page, struct box *box, - struct object_params *params, void **state); -#endif -#endif -- cgit v1.2.3