Corrects a bug in gtk_tree_remove_items and gtk_tree_item_destroy. Adds the possibility to connect all items by lines. This is the default now. You can overide this with the function gtk_tree_set_view_line which take a tree and a boolean. This tree widget looks way more finished with the lines. Very nice. Check it out and run gtk/testtree. -Shawn
		
			
				
	
	
		
			115 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			115 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* GTK - The GIMP Toolkit
 | 
						|
 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
 | 
						|
 *
 | 
						|
 * This library is free software; you can redistribute it and/or
 | 
						|
 * modify it under the terms of the GNU Library General Public
 | 
						|
 * License as published by the Free Software Foundation; either
 | 
						|
 * version 2 of the License, or (at your option) any later version.
 | 
						|
 *
 | 
						|
 * This library 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
 | 
						|
 * Library General Public License for more details.
 | 
						|
 *
 | 
						|
 * You should have received a copy of the GNU Library General Public
 | 
						|
 * License along with this library; if not, write to the Free
 | 
						|
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 | 
						|
 */
 | 
						|
#ifndef __GTK_TREE_H__
 | 
						|
#define __GTK_TREE_H__
 | 
						|
 | 
						|
 | 
						|
#include <gdk/gdk.h>
 | 
						|
#include <gtk/gtkcontainer.h>
 | 
						|
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif /* __cplusplus */
 | 
						|
 | 
						|
 | 
						|
#define GTK_TREE(obj)          GTK_CHECK_CAST (obj, gtk_tree_get_type (), GtkTree)
 | 
						|
#define GTK_TREE_CLASS(klass)  GTK_CHECK_CLASS_CAST (klass, gtk_tree_get_type (), GtkTreeClass)
 | 
						|
#define GTK_IS_TREE(obj)       GTK_CHECK_TYPE (obj, gtk_tree_get_type ())
 | 
						|
 | 
						|
#define GTK_IS_ROOT_TREE(obj)   (GTK_TREE(obj)->root_tree == NULL)
 | 
						|
#define GTK_TREE_ROOT_TREE(obj) (GTK_TREE(obj)->root_tree ? GTK_TREE(obj)->root_tree : GTK_TREE(obj))
 | 
						|
#define GTK_TREE_SELECTION(obj) (GTK_TREE_ROOT_TREE(obj)->selection)
 | 
						|
 | 
						|
typedef enum 
 | 
						|
{
 | 
						|
  GTK_TREE_VIEW_LINE,  /* default view mode */
 | 
						|
  GTK_TREE_VIEW_ITEM
 | 
						|
} GtkTreeViewMode;
 | 
						|
 | 
						|
typedef struct _GtkTree       GtkTree;
 | 
						|
typedef struct _GtkTreeClass  GtkTreeClass;
 | 
						|
 | 
						|
struct _GtkTree
 | 
						|
{
 | 
						|
  GtkContainer container;
 | 
						|
 | 
						|
  GList *children;
 | 
						|
  
 | 
						|
  GtkTree* root_tree; /* owner of selection list */
 | 
						|
  GtkWidget* tree_owner;
 | 
						|
  GList *selection;
 | 
						|
  guint level;
 | 
						|
  guint indent_value;
 | 
						|
  guint current_indent;
 | 
						|
  guint selection_mode : 2;
 | 
						|
  guint view_mode : 1;
 | 
						|
  guint view_line : 1;
 | 
						|
};
 | 
						|
 | 
						|
struct _GtkTreeClass
 | 
						|
{
 | 
						|
  GtkContainerClass parent_class;
 | 
						|
 | 
						|
  void (* selection_changed) (GtkTree   *tree);
 | 
						|
  void (* select_child)      (GtkTree   *tree,
 | 
						|
			      GtkWidget *child);
 | 
						|
  void (* unselect_child)    (GtkTree   *tree,
 | 
						|
			      GtkWidget *child);
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
guint      gtk_tree_get_type           (void);
 | 
						|
GtkWidget* gtk_tree_new                (void);
 | 
						|
void       gtk_tree_append             (GtkTree          *tree,
 | 
						|
				        GtkWidget        *child);
 | 
						|
void       gtk_tree_prepend            (GtkTree          *tree,
 | 
						|
				        GtkWidget        *child);
 | 
						|
void       gtk_tree_insert             (GtkTree          *tree,
 | 
						|
				        GtkWidget        *child,
 | 
						|
				        gint              position);
 | 
						|
void       gtk_tree_remove_item        (GtkTree          *tree,
 | 
						|
				        GtkWidget        *child);
 | 
						|
void       gtk_tree_remove_items       (GtkTree          *tree,
 | 
						|
				        GList            *items);
 | 
						|
void       gtk_tree_clear_items        (GtkTree          *tree,
 | 
						|
				        gint              start,
 | 
						|
				        gint              end);
 | 
						|
void       gtk_tree_select_item        (GtkTree          *tree,
 | 
						|
				        gint              item);
 | 
						|
void       gtk_tree_unselect_item      (GtkTree          *tree,
 | 
						|
				        gint              item);
 | 
						|
void       gtk_tree_select_child       (GtkTree          *tree,
 | 
						|
				        GtkWidget        *child);
 | 
						|
void       gtk_tree_unselect_child     (GtkTree          *tree,
 | 
						|
				        GtkWidget        *child);
 | 
						|
gint       gtk_tree_child_position     (GtkTree          *tree,
 | 
						|
				        GtkWidget        *child);
 | 
						|
void       gtk_tree_set_selection_mode (GtkTree          *tree,
 | 
						|
				        GtkSelectionMode  mode);
 | 
						|
void       gtk_tree_set_view_mode      (GtkTree          *tree,
 | 
						|
				        GtkTreeViewMode   mode); 
 | 
						|
void       gtk_tree_set_view_lines     (GtkTree          *tree,
 | 
						|
					guint            flag);
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif /* __cplusplus */
 | 
						|
 | 
						|
 | 
						|
#endif /* __GTK_TREE_H__ */
 |