/* * Copyright 2004 Richard Wilson * Copyright 2010 Stephen Fryatt * * This file is part of NetSurf, http://www.netsurf-browser.org/ * * NetSurf is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. * * NetSurf is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /** \file * Generic tree handling (interface). */ #ifndef _NETSURF_RISCOS_TREEVIEW_H_ #define _NETSURF_RISCOS_TREEVIEW_H_ #include #include #include #include "desktop/tree.h" typedef struct ro_treeview ro_treeview; struct ro_treeview_table { void (*open_menu)(wimp_pointer *pointer); }; ro_treeview *ro_treeview_create(wimp_w window, struct toolbar *toolbar, unsigned int flags); void ro_treeview_destroy(ro_treeview *tv); struct tree *ro_treeview_get_tree(ro_treeview *tv); wimp_w ro_treeview_get_window(ro_treeview *tv); bool ro_treeview_has_selection(ro_treeview *tv); void ro_treeview_set_origin(ro_treeview *tv, int x, int y); void ro_treeview_mouse_at(wimp_w w, wimp_pointer *pointer); void ro_treeview_update_theme(ro_treeview *tv); int ro_treeview_get_help(help_full_message_request *message_data); #endif