]> Pileus Git - ~andy/gtk/blob - gtk/gtktreeprivate.h
further justify gtk_tree_model_get_flags by adding a second flag for atk.
[~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   guint in_extended_selection : 1;
163   guint in_free_motion : 1;
164 };
165
166 #ifdef __GNUC__
167
168 #define TREE_VIEW_INTERNAL_ASSERT(expr, ret)     G_STMT_START{          \
169      if (!(expr))                                                       \
170        {                                                                \
171          g_log (G_LOG_DOMAIN,                                           \
172                 G_LOG_LEVEL_CRITICAL,                                   \
173                 "file %s: line %d (%s): assertion `%s' failed.\n"       \
174                 "There is a disparity between the internal view of the GtkTreeView,\n"    \
175                 "and the GtkTreeModel.  This generally means that the model has changed\n"\
176                 "without letting the view know.  Any display from now on is likely to\n"  \
177                 "be incorrect.\n",                                                        \
178                 __FILE__,                                               \
179                 __LINE__,                                               \
180                 __PRETTY_FUNCTION__,                                    \
181                 #expr);                                                 \
182          return ret;                                                    \
183        };                               }G_STMT_END
184
185 #define TREE_VIEW_INTERNAL_ASSERT_VOID(expr)     G_STMT_START{             \
186      if (!(expr))                                                       \
187        {                                                                \
188          g_log (G_LOG_DOMAIN,                                           \
189                 G_LOG_LEVEL_CRITICAL,                                   \
190                 "file %s: line %d (%s): assertion `%s' failed.\n"       \
191                 "There is a disparity between the internal view of the GtkTreeView,\n"    \
192                 "and the GtkTreeModel.  This generally means that the model has changed\n"\
193                 "without letting the view know.  Any display from now on is likely to\n"  \
194                 "be incorrect.\n",                                                        \
195                 __FILE__,                                               \
196                 __LINE__,                                               \
197                 __PRETTY_FUNCTION__,                                    \
198                 #expr);                                                 \
199          return;                                                        \
200        };                               }G_STMT_END
201
202 #else
203
204 #define TREE_VIEW_INTERNAL_ASSERT(expr, ret)     G_STMT_START{          \
205      if (!(expr))                                                       \
206        {                                                                \
207          g_log (G_LOG_DOMAIN,                                           \
208                 G_LOG_LEVEL_CRITICAL,                                   \
209                 "file %s: line %d: assertion `%s' failed.\n"       \
210                 "There is a disparity between the internal view of the GtkTreeView,\n"    \
211                 "and the GtkTreeModel.  This generally means that the model has changed\n"\
212                 "without letting the view know.  Any display from now on is likely to\n"  \
213                 "be incorrect.\n",                                                        \
214                 __FILE__,                                               \
215                 __LINE__,                                               \
216                 #expr);                                                 \
217          return ret;                                                    \
218        };                               }G_STMT_END
219
220 #define TREE_VIEW_INTERNAL_ASSERT_VOID(expr)     G_STMT_START{          \
221      if (!(expr))                                                       \
222        {                                                                \
223          g_log (G_LOG_DOMAIN,                                           \
224                 G_LOG_LEVEL_CRITICAL,                                   \
225                 "file %s: line %d: assertion '%s' failed.\n"            \
226                 "There is a disparity between the internal view of the GtkTreeView,\n"    \
227                 "and the GtkTreeModel.  This generally means that the model has changed\n"\
228                 "without letting the view know.  Any display from now on is likely to\n"  \
229                 "be incorrect.\n",                                                        \
230                 __FILE__,                                               \
231                 __LINE__,                                               \
232                 #expr);                                                 \
233          return;                                                        \
234        };                               }G_STMT_END
235 #endif
236
237
238 /* functions that shouldn't be exported */
239 void         _gtk_tree_selection_internal_select_node (GtkTreeSelection  *selection,
240                                                        GtkRBNode         *node,
241                                                        GtkRBTree         *tree,
242                                                        GtkTreePath       *path,
243                                                        GdkModifierType    state);
244 gboolean     _gtk_tree_view_find_node                 (GtkTreeView       *tree_view,
245                                                        GtkTreePath       *path,
246                                                        GtkRBTree        **tree,
247                                                        GtkRBNode        **node);
248 GtkTreePath *_gtk_tree_view_find_path                 (GtkTreeView       *tree_view,
249                                                        GtkRBTree         *tree,
250                                                        GtkRBNode         *node);
251 void         _gtk_tree_view_update_size               (GtkTreeView       *tree_view);
252
253
254 void _gtk_tree_view_column_realize_button   (GtkTreeViewColumn *column);
255 void _gtk_tree_view_column_unrealize_button (GtkTreeViewColumn *column);
256 void _gtk_tree_view_column_set_tree_view    (GtkTreeViewColumn *column,
257                                              GtkTreeView       *tree_view);
258 void _gtk_tree_view_column_unset_tree_view  (GtkTreeViewColumn *column);
259 void _gtk_tree_view_column_set_width        (GtkTreeViewColumn *column,
260                                              gint               width);
261 void _gtk_tree_view_column_start_drag       (GtkTreeView       *tree_view,
262                                              GtkTreeViewColumn *column);
263
264 GtkTreeSelection* _gtk_tree_selection_new                (void);
265 GtkTreeSelection* _gtk_tree_selection_new_with_tree_view (GtkTreeView      *tree_view);
266 void              _gtk_tree_selection_set_tree_view      (GtkTreeSelection *selection,
267                                                           GtkTreeView      *tree_view);
268
269
270
271
272 #ifdef __cplusplus
273 }
274 #endif /* __cplusplus */
275
276
277 #endif /* __GTK_TREE_PRIVATE_H__ */
278