]> Pileus Git - ~andy/gtk/blob - gtk/gtktreeprivate.h
made fil mode GDK_STIPPLED actually work -> check boxes and radio buttons
[~andy/gtk] / gtk / gtktreeprivate.h
1 /* gtktreeprivate.h
2  * Copyright (C) 2000  Red Hat, Inc.,  Jonathan Blandford <jrb@redhat.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __GTK_TREE_PRIVATE_H__
21 #define __GTK_TREE_PRIVATE_H__
22
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif /* __cplusplus */
27
28 #include <gtk/gtktreeview.h>
29 #include <gtk/gtktreeselection.h>
30 #include <gtk/gtkrbtree.h>
31
32
33   
34 #define TREE_VIEW_DRAG_WIDTH 6
35
36 typedef enum
37 {
38   GTK_TREE_VIEW_IS_LIST = 1 << 0,
39   GTK_TREE_VIEW_SHOW_EXPANDERS = 1 << 1,
40   GTK_TREE_VIEW_IN_COLUMN_RESIZE = 1 << 2,
41   GTK_TREE_VIEW_ARROW_PRELIT = 1 << 3,
42   GTK_TREE_VIEW_HEADERS_VISIBLE = 1 << 4,
43   GTK_TREE_VIEW_DRAW_KEYFOCUS = 1 << 5,
44   GTK_TREE_VIEW_MODEL_SETUP = 1 << 6,
45   GTK_TREE_VIEW_IN_COLUMN_DRAG = 1 << 7,
46 } GtkTreeViewFlags;
47
48 enum
49 {
50   DRAG_COLUMN_WINDOW_STATE_UNSET = 0,
51   DRAG_COLUMN_WINDOW_STATE_ORIGINAL = 1,
52   DRAG_COLUMN_WINDOW_STATE_ARROW = 2,
53   DRAG_COLUMN_WINDOW_STATE_ARROW_LEFT = 3,
54   DRAG_COLUMN_WINDOW_STATE_ARROW_RIGHT = 4,
55   
56 };
57 #define GTK_TREE_VIEW_SET_FLAG(tree_view, flag)   G_STMT_START{ (tree_view->priv->flags|=flag); }G_STMT_END
58 #define GTK_TREE_VIEW_UNSET_FLAG(tree_view, flag) G_STMT_START{ (tree_view->priv->flags&=~(flag)); }G_STMT_END
59 #define GTK_TREE_VIEW_FLAG_SET(tree_view, flag)   ((tree_view->priv->flags&flag)==flag)
60 #define TREE_VIEW_HEADER_HEIGHT(tree_view)        (GTK_TREE_VIEW_FLAG_SET (tree_view, GTK_TREE_VIEW_HEADERS_VISIBLE)?tree_view->priv->header_height:0)
61 #define TREE_VIEW_COLUMN_WIDTH(column)             (CLAMP (column->width, (column->min_width!=-1)?column->min_width:column->width, (column->max_width!=-1)?column->max_width:column->width))
62 #define TREE_VIEW_DRAW_EXPANDERS(tree_view)       (!GTK_TREE_VIEW_FLAG_SET (tree_view, GTK_TREE_VIEW_IS_LIST)&&GTK_TREE_VIEW_FLAG_SET (tree_view, GTK_TREE_VIEW_SHOW_EXPANDERS))
63
64  /* This lovely little value is used to determine how far away from the title bar
65   * you can move the mouse and still have a column drag work.
66   */
67 #define TREE_VIEW_COLUMN_DRAG_DEAD_MULTIPLIER(tree_view) (10*TREE_VIEW_HEADER_HEIGHT(tree_view))
68
69 typedef struct _GtkTreeViewColumnReorder GtkTreeViewColumnReorder;
70 struct _GtkTreeViewColumnReorder
71 {
72   gint left_align;
73   gint right_align;
74   GtkTreeViewColumn *left_column;
75   GtkTreeViewColumn *right_column;
76 };
77
78 struct _GtkTreeViewPrivate
79 {
80   GtkTreeModel *model;
81
82   guint flags;
83   /* tree information */
84   GtkRBTree *tree;
85
86   gint tab_offset;
87   GtkRBNode *button_pressed_node;
88   GtkRBTree *button_pressed_tree;
89
90   GList *children;
91   gint width;
92   gint height;
93
94   GtkAdjustment *hadjustment;
95   GtkAdjustment *vadjustment;
96
97   GdkWindow *bin_window;
98   GdkWindow *header_window;
99   GdkWindow *drag_window;
100   GdkWindow *drag_highlight_window;
101   GtkTreeViewColumn *drag_column;
102   gint drag_column_x;
103
104   gint expander_column;
105
106   /* Focus code */
107   GtkTreeViewColumn *focus_column;
108   GtkTreeViewColumn *scroll_column;
109
110   /* Selection stuff */
111   GtkTreeRowReference *anchor;
112   GtkTreeRowReference *cursor;
113
114   /* Column Resizing */
115   GdkCursor *cursor_drag;
116   GdkGC *xor_gc;
117   gint drag_pos;
118   gint x_drag;
119
120   /* Prelight information */
121   GtkRBNode *prelight_node;
122   GtkRBTree *prelight_tree;
123
124   /* Selection information */
125   GtkTreeSelection *selection;
126
127   /* Header information */
128   gint n_columns;
129   GList *columns;
130   gint header_height;
131
132   GtkTreeViewColumnDropFunc column_drop_func;
133   gpointer column_drop_func_data;
134   GtkDestroyNotify column_drop_func_data_destroy;
135   GList *column_drag_info;
136   GtkTreeViewColumnReorder *cur_reorder;
137
138   /* Scroll timeout (e.g. during dnd) */
139   guint scroll_timeout;
140
141   /* Row drag-and-drop */
142   GtkTreeRowReference *drag_dest_row;
143   GtkTreeViewDropPosition drag_dest_pos;
144   guint open_dest_timeout;
145
146   gint pressed_button;
147   gint press_start_x;
148   gint press_start_y;
149
150   /* Scroll-to functionality when unrealized */
151   GtkTreePath *scroll_to_path;
152   GtkTreeViewColumn *scroll_to_column;
153   gfloat scroll_to_row_align;
154   gfloat scroll_to_col_align;
155
156   guint reorderable : 1;
157   guint header_has_focus : 1;
158   guint drag_column_window_state : 3;
159   /* hint to display rows in alternating colors */
160   guint has_rules : 1;
161 };
162
163 #ifdef __GNUC__
164
165 #define TREE_VIEW_INTERNAL_ASSERT(expr, ret)     G_STMT_START{          \
166      if (!(expr))                                                       \
167        {                                                                \
168          g_log (G_LOG_DOMAIN,                                           \
169                 G_LOG_LEVEL_CRITICAL,                                   \
170                 "file %s: line %d (%s): assertion `%s' failed.\n"       \
171                 "There is a disparity between the internal view of the GtkTreeView,\n"    \
172                 "and the GtkTreeModel.  This generally means that the model has changed\n"\
173                 "without letting the view know.  Any display from now on is likely to\n"  \
174                 "be incorrect.\n",                                                        \
175                 __FILE__,                                               \
176                 __LINE__,                                               \
177                 __PRETTY_FUNCTION__,                                    \
178                 #expr);                                                 \
179          return ret;                                                    \
180        };                               }G_STMT_END
181
182 #define TREE_VIEW_INTERNAL_ASSERT_VOID(expr)     G_STMT_START{             \
183      if (!(expr))                                                       \
184        {                                                                \
185          g_log (G_LOG_DOMAIN,                                           \
186                 G_LOG_LEVEL_CRITICAL,                                   \
187                 "file %s: line %d (%s): assertion `%s' failed.\n"       \
188                 "There is a disparity between the internal view of the GtkTreeView,\n"    \
189                 "and the GtkTreeModel.  This generally means that the model has changed\n"\
190                 "without letting the view know.  Any display from now on is likely to\n"  \
191                 "be incorrect.\n",                                                        \
192                 __FILE__,                                               \
193                 __LINE__,                                               \
194                 __PRETTY_FUNCTION__,                                    \
195                 #expr);                                                 \
196          return;                                                        \
197        };                               }G_STMT_END
198
199 #else
200
201 #define TREE_VIEW_INTERNAL_ASSERT(expr, ret)     G_STMT_START{          \
202      if (!(expr))                                                       \
203        {                                                                \
204          g_log (G_LOG_DOMAIN,                                           \
205                 G_LOG_LEVEL_CRITICAL,                                   \
206                 "file %s: line %d: assertion `%s' failed.\n"       \
207                 "There is a disparity between the internal view of the GtkTreeView,\n"    \
208                 "and the GtkTreeModel.  This generally means that the model has changed\n"\
209                 "without letting the view know.  Any display from now on is likely to\n"  \
210                 "be incorrect.\n",                                                        \
211                 __FILE__,                                               \
212                 __LINE__,                                               \
213                 #expr);                                                 \
214          return ret;                                                    \
215        };                               }G_STMT_END
216
217 #define TREE_VIEW_INTERNAL_ASSERT_VOID(expr)     G_STMT_START{          \
218      if (!(expr))                                                       \
219        {                                                                \
220          g_log (G_LOG_DOMAIN,                                           \
221                 G_LOG_LEVEL_CRITICAL,                                   \
222                 "file %s: line %d: assertion '%s' failed.\n"            \
223                 "There is a disparity between the internal view of the GtkTreeView,\n"    \
224                 "and the GtkTreeModel.  This generally means that the model has changed\n"\
225                 "without letting the view know.  Any display from now on is likely to\n"  \
226                 "be incorrect.\n",                                                        \
227                 __FILE__,                                               \
228                 __LINE__,                                               \
229                 #expr);                                                 \
230          return;                                                        \
231        };                               }G_STMT_END
232 #endif
233
234 /* functions that shouldn't be exported */
235 void         _gtk_tree_selection_internal_select_node (GtkTreeSelection  *selection,
236                                                        GtkRBNode         *node,
237                                                        GtkRBTree         *tree,
238                                                        GtkTreePath       *path,
239                                                        GdkModifierType    state);
240 gboolean     _gtk_tree_view_find_node                 (GtkTreeView       *tree_view,
241                                                        GtkTreePath       *path,
242                                                        GtkRBTree        **tree,
243                                                        GtkRBNode        **node);
244 GtkTreePath *_gtk_tree_view_find_path                 (GtkTreeView       *tree_view,
245                                                        GtkRBTree         *tree,
246                                                        GtkRBNode         *node);
247 void         _gtk_tree_view_update_size               (GtkTreeView       *tree_view);
248
249
250 void _gtk_tree_view_column_realize_button   (GtkTreeViewColumn *column);
251 void _gtk_tree_view_column_unrealize_button (GtkTreeViewColumn *column);
252 void _gtk_tree_view_column_set_tree_view    (GtkTreeViewColumn *column,
253                                              GtkTreeView       *tree_view);
254 void _gtk_tree_view_column_unset_tree_view  (GtkTreeViewColumn *column);
255 void _gtk_tree_view_column_set_width        (GtkTreeViewColumn *column,
256                                              gint               width);
257 void _gtk_tree_view_column_start_drag       (GtkTreeView       *tree_view,
258                                              GtkTreeViewColumn *column);
259
260 GtkTreeSelection* _gtk_tree_selection_new                (void);
261 GtkTreeSelection* _gtk_tree_selection_new_with_tree_view (GtkTreeView      *tree_view);
262 void              _gtk_tree_selection_set_tree_view      (GtkTreeSelection *selection,
263                                                           GtkTreeView      *tree_view);
264
265
266
267
268 #ifdef __cplusplus
269 }
270 #endif /* __cplusplus */
271
272
273 #endif /* __GTK_TREE_PRIVATE_H__ */
274