From 32db7e04d0c3bd255b2e8aa7dbd7c2b884b35614 Mon Sep 17 00:00:00 2001 From: Richard Wilson Date: Thu, 9 Dec 2004 10:30:44 +0000 Subject: [project @ 2004-12-09 10:30:43 by rjw] Re-implementation of hotlist via general tree code. Animations can be stopped once more. Purged a few xcalloc() calls. svn path=/import/netsurf/; revision=1394 --- gtk/gtk_treeview.c | 96 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 gtk/gtk_treeview.c (limited to 'gtk/gtk_treeview.c') diff --git a/gtk/gtk_treeview.c b/gtk/gtk_treeview.c new file mode 100644 index 000000000..ced83dd1c --- /dev/null +++ b/gtk/gtk_treeview.c @@ -0,0 +1,96 @@ +/* + * 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 + * Generic tree handling (implementation). + */ + + +#include "netsurf/desktop/tree.h" + + +/** + * Sets the origin variables to the correct values for a specified tree + * + * \param tree the tree to set the origin for + */ +void tree_initialise_redraw(struct tree *tree) { +} + + +/** + * Informs the current window manager that an area requires updating. + * + * \param tree the tree that is requesting a redraw + * \param x the x co-ordinate of the redraw area + * \param y the y co-ordinate of the redraw area + * \param width the width of the redraw area + * \param height the height of the redraw area + */ +void tree_redraw_area(struct tree *tree, int x, int y, int width, int height) { +} + + +/** + * Draws a line. + * + * \param tree the tree to draw a line for + * \param x the x co-ordinate + * \param x the y co-ordinate + * \param x the width of the line + * \param x the height of the line + */ +void tree_draw_line(struct tree *tree, int x, int y, int width, int height) { +} + + +/** + * Draws an element, including any expansion icons + * + * \param tree the tree to draw an element for + * \param element the element to draw + */ +void tree_draw_node_element(struct tree *tree, struct node_element *element) { +} + + +/** + * Draws an elements expansion icon + * + * \param tree the tree to draw the expansion for + * \param element the element to draw the expansion for + */ +void tree_draw_node_expansion(struct tree *tree, struct node *node) { +} + + +/** + * Recalculates the dimensions of a node element. + * + * \param element the element to recalculate + */ +void tree_recalculate_node_element(struct node_element *element) { +} + + +/** + * Updates the node details for a URL node. + * The internal node dimensions are not updated. + * + * \param node the node to update + */ +void tree_update_URL_node(struct node *node) { +} + + +/** + * Updates the tree owner following a tree resize + * + * \param tree the tree to update the owner of + */ +void tree_resized(struct tree *tree) { +} -- cgit v1.2.3