66719675f94f92292ec5a453e58ac9fd64d655f0
[pspp] / src / ui / gui / pspp-sheet-private.h
1  /* PSPPIRE - a graphical user interface for PSPP.
2     Copyright (C) 2011, 2012, 2013 Free Software Foundation, Inc.
3
4     This program is free software: you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation, either version 3 of the License, or
7     (at your option) any later version.
8
9     This program 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
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 /* gtktreeprivate.h
18  * Copyright (C) 2000  Red Hat, Inc.,  Jonathan Blandford <jrb@redhat.com>
19  *
20  * This library is free software; you can redistribute it and/or
21  * modify it under the terms of the GNU Library General Public
22  * License as published by the Free Software Foundation; either
23  * version 2 of the License, or (at your option) any later version.
24  *
25  * This library is distributed in the hope that it will be useful,
26  * but WITHOUT ANY WARRANTY; without even the implied warranty of
27  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
28  * Library General Public License for more details.
29  *
30  * You should have received a copy of the GNU Library General Public
31  * License along with this library; if not, write to the
32  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
33  * Boston, MA 02111-1307, USA.
34  */
35
36 #ifndef __GTK_TREE_PRIVATE_H__
37 #define __GTK_TREE_PRIVATE_H__
38
39
40 #include <gtk/gtk.h>
41 #include "libpspp/range-tower.h"
42 #include "ui/gui/pspp-sheet-view.h"
43 #include "ui/gui/pspp-sheet-view-column.h"
44
45 #define TREE_VIEW_DRAG_WIDTH 6
46
47 typedef enum
48 {
49   PSPP_SHEET_VIEW_IN_COLUMN_RESIZE = 1 << 2,
50   PSPP_SHEET_VIEW_HEADERS_VISIBLE = 1 << 4,
51   PSPP_SHEET_VIEW_DRAW_KEYFOCUS = 1 << 5,
52   PSPP_SHEET_VIEW_MODEL_SETUP = 1 << 6,
53   PSPP_SHEET_VIEW_IN_COLUMN_DRAG = 1 << 7
54 } PsppSheetViewFlags;
55
56 enum
57 {
58   DRAG_COLUMN_WINDOW_STATE_UNSET = 0,
59   DRAG_COLUMN_WINDOW_STATE_ORIGINAL = 1,
60   DRAG_COLUMN_WINDOW_STATE_ARROW = 2,
61   DRAG_COLUMN_WINDOW_STATE_ARROW_LEFT = 3,
62   DRAG_COLUMN_WINDOW_STATE_ARROW_RIGHT = 4
63 };
64
65 enum
66 {
67   RUBBER_BAND_OFF = 0,
68   RUBBER_BAND_MAYBE_START = 1,
69   RUBBER_BAND_ACTIVE = 2
70 };
71
72 #define PSPP_SHEET_VIEW_SET_FLAG(tree_view, flag)   G_STMT_START{ (tree_view->priv->flags|=flag); }G_STMT_END
73 #define PSPP_SHEET_VIEW_UNSET_FLAG(tree_view, flag) G_STMT_START{ (tree_view->priv->flags&=~(flag)); }G_STMT_END
74 #define PSPP_SHEET_VIEW_FLAG_SET(tree_view, flag)   ((tree_view->priv->flags&flag)==flag)
75 #define TREE_VIEW_HEADER_HEIGHT(tree_view)        (PSPP_SHEET_VIEW_FLAG_SET (tree_view, PSPP_SHEET_VIEW_HEADERS_VISIBLE)?tree_view->priv->header_height:0)
76 #define TREE_VIEW_COLUMN_REQUESTED_WIDTH(column)  (CLAMP (column->requested_width, (column->min_width!=-1)?column->min_width:column->requested_width, (column->max_width!=-1)?column->max_width:column->requested_width))
77
78  /* This lovely little value is used to determine how far away from the title bar
79   * you can move the mouse and still have a column drag work.
80   */
81 #define TREE_VIEW_COLUMN_DRAG_DEAD_MULTIPLIER(tree_view) (10*TREE_VIEW_HEADER_HEIGHT(tree_view))
82
83 typedef struct _PsppSheetViewColumnReorder PsppSheetViewColumnReorder;
84 struct _PsppSheetViewColumnReorder
85 {
86   gint left_align;
87   gint right_align;
88   PsppSheetViewColumn *left_column;
89   PsppSheetViewColumn *right_column;
90 };
91
92 struct _PsppSheetViewPrivate
93 {
94   GtkTreeModel *model;
95
96   guint flags;
97   /* tree information */
98   gint row_count;
99   struct range_tower *selected;
100
101   /* Container info */
102   GList *children;
103   gint width;
104   gint height;
105
106   /* Adjustments */
107   GtkAdjustment *hadjustment;
108   GtkAdjustment *vadjustment;
109
110   /* Sub windows */
111   GdkWindow *bin_window;
112   GdkWindow *header_window;
113
114   /* Scroll position state keeping */
115   GtkTreeRowReference *top_row;
116   gint top_row_dy;
117   /* dy == y pos of top_row + top_row_dy */
118   /* we cache it for simplicity of the code */
119   gint dy;
120
121   guint presize_handler_timer;
122   guint validate_rows_timer;
123   guint scroll_sync_timer;
124
125   /* Indentation and expander layout */
126   gint expander_size;
127
128   /* Key navigation (focus), selection */
129   gint cursor_offset;
130
131   GtkTreeRowReference *anchor;
132   GtkTreeRowReference *cursor;
133
134   PsppSheetViewColumn *focus_column;
135
136   /* Current pressed node, previously pressed, prelight */
137   gint pressed_button;
138   gint press_start_x;
139   gint press_start_y;
140   gint press_start_node;
141
142   gint event_last_x;
143   gint event_last_y;
144
145   guint last_button_time;
146   gint last_button_x;
147   gint last_button_y;
148
149   int prelight_node;
150
151   /* Cell Editing */
152   PsppSheetViewColumn *edited_column;
153   gint edited_row;
154
155   /* Selection information */
156   PsppSheetSelection *selection;
157
158   /* Header information */
159   gint n_columns;
160   GList *columns;
161   gint header_height;
162   gint n_selected_columns;
163
164   PsppSheetViewColumnDropFunc column_drop_func;
165   gpointer column_drop_func_data;
166   GDestroyNotify column_drop_func_data_destroy;
167   GList *column_drag_info;
168   PsppSheetViewColumnReorder *cur_reorder;
169
170   /* Interactive Header reordering */
171   GdkWindow *drag_window;
172   GdkWindow *drag_highlight_window;
173   PsppSheetViewColumn *drag_column;
174   gint drag_column_x;
175
176   /* Interactive Header Resizing */
177   gint drag_pos;
178   gint x_drag;
179
180   /* Non-interactive Header Resizing, expand flag support */
181   gint prev_width;
182
183   /* ATK Hack */
184   PsppSheetDestroyCountFunc destroy_count_func;
185   gpointer destroy_count_data;
186   GDestroyNotify destroy_count_destroy;
187
188   /* Scroll timeout (e.g. during dnd, rubber banding) */
189   guint scroll_timeout;
190
191   /* Row drag-and-drop */
192   GtkTreeRowReference *drag_dest_row;
193   PsppSheetViewDropPosition drag_dest_pos;
194   guint open_dest_timeout;
195
196   /* Rubber banding */
197   GdkDevice *drag_device;
198   gint rubber_band_status;
199   gint rubber_band_x;
200   gint rubber_band_y;
201   gint rubber_band_shift;
202   gint rubber_band_ctrl;
203
204   int rubber_band_start_node;
205
206   int rubber_band_end_node;
207
208   /* Rectangular selection. */
209   PsppSheetViewColumn *anchor_column; /* XXX needs to be a weak pointer? */
210
211   /* fixed height */
212   gint fixed_height;
213   gboolean fixed_height_set;
214
215   /* Scroll-to functionality when unrealized */
216   GtkTreeRowReference *scroll_to_path;
217   PsppSheetViewColumn *scroll_to_column;
218   gfloat scroll_to_row_align;
219   gfloat scroll_to_col_align;
220
221   /* Interactive search */
222   gint selected_iter;
223   gint search_column;
224   PsppSheetViewSearchPositionFunc search_position_func;
225   PsppSheetViewSearchEqualFunc search_equal_func;
226   gpointer search_user_data;
227   GDestroyNotify search_destroy;
228   gpointer search_position_user_data;
229   GDestroyNotify search_position_destroy;
230   GtkWidget *search_window;
231   GtkWidget *search_entry;
232   guint search_entry_changed_id;
233   guint typeselect_flush_timeout;
234
235   /* Grid and tree lines */
236   PsppSheetViewGridLines grid_lines;
237
238   /* Special cells. */
239   PsppSheetViewSpecialCells special_cells;
240
241   /* Tooltip support */
242   gint tooltip_column;
243
244   /* Cached style for button facades in columns. */
245   GtkStyle *button_style;
246
247   /* Here comes the bitfield */
248   guint scroll_to_use_align : 1;
249
250   guint reorderable : 1;
251   guint header_has_focus : 1;
252   guint drag_column_window_state : 3;
253   /* hint to display rows in alternating colors */
254   guint has_rules : 1;
255
256   /* for DnD */
257   guint empty_view_drop : 1;
258
259   guint init_hadjust_value : 1;
260
261   guint in_top_row_to_dy : 1;
262
263   /* interactive search */
264   guint enable_search : 1;
265   guint disable_popdown : 1;
266   guint search_custom_entry_set : 1;
267   
268   guint hover_selection : 1;
269   guint imcontext_changed : 1;
270
271   guint rubber_banding_enable : 1;
272
273   guint in_grab : 1;
274
275   guint post_validation_flag : 1;
276
277   /* Whether our key press handler is to avoid sending an unhandled binding to the search entry */
278
279   guint search_entry_avoid_unhandled_binding : 1;
280   /* GtkScrollablePolicy needs to be checked when
281    * driving the scrollable adjustment values */
282   guint hscroll_policy : 1;
283   guint vscroll_policy : 1;
284  };
285
286 #ifdef __GNUC__
287
288 #define TREE_VIEW_INTERNAL_ASSERT(expr, ret)     G_STMT_START{          \
289      if (!(expr))                                                       \
290        {                                                                \
291          g_log (G_LOG_DOMAIN,                                           \
292                 G_LOG_LEVEL_CRITICAL,                                   \
293                 "%s (%s): assertion `%s' failed.\n"                     \
294                 "There is a disparity between the internal view of the PsppSheetView,\n"    \
295                 "and the GtkTreeModel.  This generally means that the model has changed\n"\
296                 "without letting the view know.  Any display from now on is likely to\n"  \
297                 "be incorrect.\n",                                                        \
298                 G_STRLOC,                                               \
299                 G_STRFUNC,                                              \
300                 #expr);                                                 \
301          return ret;                                                    \
302        };                               }G_STMT_END
303
304 #define TREE_VIEW_INTERNAL_ASSERT_VOID(expr)     G_STMT_START{          \
305      if (!(expr))                                                       \
306        {                                                                \
307          g_log (G_LOG_DOMAIN,                                           \
308                 G_LOG_LEVEL_CRITICAL,                                   \
309                 "%s (%s): assertion `%s' failed.\n"                     \
310                 "There is a disparity between the internal view of the PsppSheetView,\n"    \
311                 "and the GtkTreeModel.  This generally means that the model has changed\n"\
312                 "without letting the view know.  Any display from now on is likely to\n"  \
313                 "be incorrect.\n",                                                        \
314                 G_STRLOC,                                               \
315                 G_STRFUNC,                                              \
316                 #expr);                                                 \
317          return;                                                        \
318        };                               }G_STMT_END
319
320 #else
321
322 #define TREE_VIEW_INTERNAL_ASSERT(expr, ret)     G_STMT_START{          \
323      if (!(expr))                                                       \
324        {                                                                \
325          g_log (G_LOG_DOMAIN,                                           \
326                 G_LOG_LEVEL_CRITICAL,                                   \
327                 "file %s: line %d: assertion `%s' failed.\n"       \
328                 "There is a disparity between the internal view of the PsppSheetView,\n"    \
329                 "and the GtkTreeModel.  This generally means that the model has changed\n"\
330                 "without letting the view know.  Any display from now on is likely to\n"  \
331                 "be incorrect.\n",                                                        \
332                 __FILE__,                                               \
333                 __LINE__,                                               \
334                 #expr);                                                 \
335          return ret;                                                    \
336        };                               }G_STMT_END
337
338 #define TREE_VIEW_INTERNAL_ASSERT_VOID(expr)     G_STMT_START{          \
339      if (!(expr))                                                       \
340        {                                                                \
341          g_log (G_LOG_DOMAIN,                                           \
342                 G_LOG_LEVEL_CRITICAL,                                   \
343                 "file %s: line %d: assertion '%s' failed.\n"            \
344                 "There is a disparity between the internal view of the PsppSheetView,\n"    \
345                 "and the GtkTreeModel.  This generally means that the model has changed\n"\
346                 "without letting the view know.  Any display from now on is likely to\n"  \
347                 "be incorrect.\n",                                                        \
348                 __FILE__,                                               \
349                 __LINE__,                                               \
350                 #expr);                                                 \
351          return;                                                        \
352        };                               }G_STMT_END
353 #endif
354
355
356 /* functions that shouldn't be exported */
357 void         _pspp_sheet_selection_internal_select_node (PsppSheetSelection  *selection,
358                                                        int                node,
359                                                        GtkTreePath       *path,
360                                                        PsppSheetSelectMode  mode,
361                                                        gboolean           override_browse_mode);
362 void         _pspp_sheet_selection_emit_changed         (PsppSheetSelection  *selection);
363 void         _pspp_sheet_view_find_node                 (PsppSheetView       *tree_view,
364                                                        GtkTreePath       *path,
365                                                        int              *node);
366 GtkTreePath *_pspp_sheet_view_find_path                 (PsppSheetView       *tree_view,
367                                                        int                    node);
368 void         _pspp_sheet_view_child_move_resize         (PsppSheetView       *tree_view,
369                                                        GtkWidget         *widget,
370                                                        gint               x,
371                                                        gint               y,
372                                                        gint               width,
373                                                        gint               height);
374 void         _pspp_sheet_view_queue_draw_node           (PsppSheetView       *tree_view,
375                                                        int                    node,
376                                                        const GdkRectangle *clip_rect);
377
378 void _pspp_sheet_view_column_realize_button   (PsppSheetViewColumn *column);
379 void _pspp_sheet_view_column_unrealize_button (PsppSheetViewColumn *column);
380 void _pspp_sheet_view_column_set_tree_view    (PsppSheetViewColumn *column,
381                                              PsppSheetView       *tree_view);
382 void _pspp_sheet_view_column_unset_model      (PsppSheetViewColumn *column,
383                                              GtkTreeModel      *old_model);
384 void _pspp_sheet_view_column_unset_tree_view  (PsppSheetViewColumn *column);
385 void _pspp_sheet_view_column_set_width        (PsppSheetViewColumn *column,
386                                              gint               width);
387 void _pspp_sheet_view_column_start_drag       (PsppSheetView       *tree_view,
388                                              PsppSheetViewColumn *column);
389 gboolean _pspp_sheet_view_column_cell_event   (PsppSheetViewColumn  *tree_column,
390                                              GtkCellEditable   **editable_widget,
391                                              GdkEvent           *event,
392                                              gchar              *path_string,
393                                              const GdkRectangle *background_area,
394                                              const GdkRectangle *cell_area,
395                                              guint               flags);
396 void _pspp_sheet_view_column_start_editing (PsppSheetViewColumn *tree_column,
397                                           GtkCellEditable   *editable_widget);
398 void _pspp_sheet_view_column_stop_editing  (PsppSheetViewColumn *tree_column);
399 void _pspp_sheet_view_install_mark_rows_col_dirty (PsppSheetView *tree_view);
400 void             _pspp_sheet_view_column_autosize          (PsppSheetView       *tree_view,
401                                                           PsppSheetViewColumn *column);
402
403 gboolean         _pspp_sheet_view_column_has_editable_cell (PsppSheetViewColumn *column);
404 GtkCellRenderer *_pspp_sheet_view_column_get_edited_cell   (PsppSheetViewColumn *column);
405 gint             _pspp_sheet_view_column_count_special_cells (PsppSheetViewColumn *column);
406 GtkCellRenderer *_pspp_sheet_view_column_get_cell_at_pos   (PsppSheetViewColumn *column,
407                                                           gint               x);
408
409 PsppSheetSelection* _pspp_sheet_selection_new                (void);
410 PsppSheetSelection* _pspp_sheet_selection_new_with_tree_view (PsppSheetView      *tree_view);
411 void              _pspp_sheet_selection_set_tree_view      (PsppSheetSelection *selection,
412                                                           PsppSheetView      *tree_view);
413
414 void              _pspp_sheet_view_column_cell_render      (PsppSheetViewColumn  *tree_column,
415                                                             cairo_t *cr,
416                                                           const GdkRectangle *background_area,
417                                                           const GdkRectangle *cell_area,
418                                                           guint               flags);
419 void              _pspp_sheet_view_column_get_focus_area   (PsppSheetViewColumn  *tree_column,
420                                                           const GdkRectangle *background_area,
421                                                           const GdkRectangle *cell_area,
422                                                           GdkRectangle       *focus_area);
423 gboolean          _pspp_sheet_view_column_cell_focus       (PsppSheetViewColumn  *tree_column,
424                                                           gint                direction,
425                                                           gboolean            left,
426                                                           gboolean            right);
427 void              _pspp_sheet_view_column_cell_draw_focus  (PsppSheetViewColumn  *tree_column,
428                                                             cairo_t *cr,
429                                                           const GdkRectangle *background_area,
430                                                           const GdkRectangle *cell_area,
431                                                           guint               flags);
432 void              _pspp_sheet_view_column_cell_set_dirty         (PsppSheetViewColumn  *tree_column);
433 void              _pspp_sheet_view_column_get_neighbor_sizes (PsppSheetViewColumn *column,
434                                                             GtkCellRenderer   *cell,
435                                                             gint              *left,
436                                                             gint              *right);
437
438 gboolean pspp_sheet_view_node_is_selected (PsppSheetView *tree_view,
439                                            int node);
440 void pspp_sheet_view_node_select (PsppSheetView *tree_view,
441                                   int node);
442 void pspp_sheet_view_node_unselect (PsppSheetView *tree_view,
443                                     int node);
444
445 gint
446 pspp_sheet_view_node_next (PsppSheetView *tree_view,
447                            gint node);
448 gint
449 pspp_sheet_view_node_prev (PsppSheetView *tree_view,
450                            gint node);
451
452 #endif /* __GTK_TREE_PRIVATE_H__ */
453