add bins/folders, fix listbox bad wdw ref, hide vicons fix, remove sort by time
[goodguy/history.git] / cinelerra-5.1 / guicast / bclistbox.h
1 /*
2  * CINELERRA
3  * Copyright (C) 2010 Adam Williams <broadcast at earthling dot net>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  *
19  */
20
21 #ifndef BCLISTBOX_H
22 #define BCLISTBOX_H
23
24 #include "bcdragwindow.inc"
25 #include "bclistboxitem.inc"
26 #include "bcpixmap.inc"
27 #include "bcscrollbar.h"
28 #include "bcsubwindow.h"
29 #include "bctoggle.h"
30 #include "bccolors.h"
31
32 #define BCPOPUPLISTBOX_W 25
33 #define BCPOPUPLISTBOX_H 25
34
35 class BC_ListBoxYScroll;
36 class BC_ListBoxXScroll;
37 class BC_ListBoxToggle;
38 class BC_ListBox;
39
40 #define MIN_COLUMN_WIDTH 10
41
42
43 class BC_ListBoxYScroll : public BC_ScrollBar
44 {
45         BC_ListBox *listbox;
46 public:
47         BC_ListBoxYScroll(BC_ListBox *listbox);
48         ~BC_ListBoxYScroll();
49         int handle_event();
50 };
51
52 class BC_ListBoxXScroll : public BC_ScrollBar
53 {
54         BC_ListBox *listbox;
55 public:
56         BC_ListBoxXScroll(BC_ListBox *listbox);
57         ~BC_ListBoxXScroll();
58         int handle_event();
59 };
60
61 class BC_ListBoxToggle
62 {
63 public:
64         BC_ListBoxToggle(BC_ListBox *listbox, BC_ListBoxItem *item, int x, int y);
65
66         int cursor_motion_event(int *redraw_toggles);
67         int cursor_leave_event(int *redraw_toggles);
68         int button_press_event();
69         int button_release_event(int *redraw_toggles);
70         void update(BC_ListBoxItem *item, int x, int y, int flash);
71         void draw(int flash);
72
73         BC_ListBox *listbox;
74         BC_ListBoxItem *item;
75         int x, y;
76         int value, state;
77         enum
78         {
79                 TOGGLE_UP,
80                 TOGGLE_UPHI,
81                 TOGGLE_CHECKED,
82                 TOGGLE_DOWN,
83                 TOGGLE_CHECKEDHI,
84 // Button pressed then moved out
85                 TOGGLE_DOWN_EXIT
86         };
87 };
88
89
90 class BC_ListBox : public BC_SubWindow
91 {
92         friend class BC_ListBoxYScroll;
93         friend class BC_ListBoxXScroll;
94         friend class BC_ListBoxToggle;
95 public:
96         BC_ListBox(int x, int y, int w, int h,
97                 int display_format,                   // Display text list or icons
98                 ArrayList<BC_ListBoxItem*> *data = 0, // Each column has an ArrayList of BC_ListBoxItems.
99                 const char **column_titles = 0,             // Titles for columns.  Set to 0 for no titles
100                 int *column_width = 0,                // width of each column
101                 int columns = 1,                      // Total columns.  Only 1 in icon mode
102                 int yposition = 0,                    // Pixel of top of window.
103                 int is_popup = 0,                     // If this listbox is a popup window with a button
104                 int selection_mode = LISTBOX_SINGLE,  // Select one item or multiple items
105                 int icon_position = ICON_LEFT,        // Position of icon relative to text of each item
106                 int allow_drag = 0);                  // Allow user to drag icons around
107         virtual ~BC_ListBox();
108
109         int initialize();
110
111 // User event handler for new selections
112         virtual int selection_changed() { return 0; };
113 // User event handler for triggering a selection
114         virtual int handle_event() { return 0; };
115 // User event handler for a column resize
116         virtual int column_resize_event() { return 0; };
117 // Draw background on bg_surface
118         virtual void draw_background();
119 // Draw on bg_surface
120         virtual int draw_images() { return 0; }
121 // Column sort order.  This must return 1 or BC_ListBox will perform a default
122 // action.
123         virtual int sort_order_event() { return 0; };
124 // Column moved
125         virtual int move_column_event() { return 0; };
126
127         int enable();
128         int disable();
129
130 // Get the column movement
131         int get_from_column();
132         int get_to_column();
133
134 // Get the item in the given column which is the selection_number of the total
135 // selected rows.  Returns 0 on failure.
136         BC_ListBoxItem* get_selection(int column, int selection_number);
137         BC_ListBoxItem* get_selection_recursive(ArrayList<BC_ListBoxItem*> *data,
138                 int column,
139                 int selection_number);
140
141 // Get the flat index of the item in the given column which is the selection_number
142 // of the total selected rows.  Returns -1 on failure.  The column
143 // argument is really useless because it only checks column 1 and returns the row
144 // number.
145         int get_selection_number(int column, int selection_number);
146         int get_selection_number_recursive(ArrayList<BC_ListBoxItem*> *data,
147                 int column,
148                 int selection_number,
149                 int *counter = 0);
150
151         virtual int evaluate_query(char *string);
152         void expand_item(BC_ListBoxItem *item, int expand);
153 // Collapse all items
154         static void collapse_recursive(ArrayList<BC_ListBoxItem*> *data,
155                 int master_column);
156 // Convert recursive pointer to flat index.
157 // The pointer can be any item in the row corresponding to the index.
158 // Returns -1 if no item was found.
159         int item_to_index(ArrayList<BC_ListBoxItem*> *data,
160                 BC_ListBoxItem *item,
161                 int *counter = 0);
162 // Convert flat index and column to desired item.
163         BC_ListBoxItem* index_to_item(ArrayList<BC_ListBoxItem*> *data,
164                 int number,
165                 int column,
166                 int *counter = 0);
167 // Get all items with recursion for text mode
168         static int get_total_items(ArrayList<BC_ListBoxItem*> *data,
169                 int *result /* = 0 */,
170                 int master_column);
171
172         virtual int focus_out_event();
173         virtual int keypress_event();
174         virtual int button_press_event();
175         virtual int button_release_event();
176         virtual int cursor_enter_event();
177         virtual int cursor_leave_event();
178         virtual int cursor_motion_event();
179         virtual int drag_start_event();
180         virtual int drag_motion_event();
181         virtual int drag_stop_event();
182
183 // After popping up a menu call this to interrupt the selection process
184         void deactivate_selection();
185
186 // take_focus - used by the suggestion box to keep it from taking focus from the
187 // textbox
188         int activate(int take_focus = 1);
189         int activate(int x, int y, int w=-1, int h=-1);
190         int deactivate();
191         int is_active();
192
193         int translation_event();
194         int repeat_event(int64_t duration);
195         BC_DragWindow* get_drag_popup();
196 // If the popup window should show a button.
197 // Must be called in the constructor.
198         void set_use_button(int value);
199         void set_is_suggestions(int value);
200         void set_scroll_repeat();
201         void unset_scroll_repeat();
202         int scroll_repeat;
203
204 // change the contents
205         int update(ArrayList<BC_ListBoxItem*> *data,
206                 const char **column_titles, int *column_widths, int columns,
207                 int xposition = 0, int yposition = 0,
208                 int highlighted_number = -1,  // Flat index of item cursor is over
209                 int recalc_positions = 0,     // set all autoplace flags to 1
210                 int draw = 1);
211         void center_selection();
212         void update_format(int display_format, int redraw);
213         int get_format();
214
215 // Allow scrolling when dragging items
216         void set_drag_scroll(int value);
217 // Allow column repositioning
218         void set_allow_drag_column(int value);
219 // Allow automatic moving of objects after drag
220         void set_process_drag(int value);
221
222 // Set the column to use for icons and sublists.
223         void set_master_column(int value, int redraw);
224 // Set column to search
225         void set_search_column(int value);
226         int set_selection_mode(int mode);
227         int set_yposition(int position, int draw_items = 1);
228         int get_yposition();
229         int set_xposition(int position);
230         int get_xposition();
231 // Return the flat index of the highlighted item
232         int get_highlighted_item();
233         int get_yscroll_x();
234         int get_yscroll_y();
235         int get_yscroll_height();
236         int get_xscroll_x();
237         int get_xscroll_y();
238         int get_xscroll_width();
239         void set_scroll_stretch(int xv, int yv);
240         int get_column_offset(int column);
241         int get_column_width(int column, int clamp_right = 0);
242         int get_title_h();
243         int get_display_mode();
244         void set_justify(int value);
245         int get_w() { return is_popup ? BCPOPUPLISTBOX_W : popup_w; }
246         int get_h() { return is_popup ? BCPOPUPLISTBOX_H : popup_h; }
247         int gui_tooltip(const char *text) {
248                 return is_popup && gui ? gui->show_tooltip(text, gui->get_w(),0, -1,-1) : -1;
249         }
250         int get_view_w() { return view_w; }
251         int get_view_h() { return view_h; }
252         int get_row_height() { return row_height; }
253         int get_row_ascent() { return row_ascent; }
254         int get_row_descent() { return row_descent; }
255         int get_first_visible() { return first_in_view; }
256         int get_last_visible() { return last_in_view; }
257
258         enum
259         {
260                 SORT_ASCENDING,
261                 SORT_DESCENDING
262         };
263
264         int get_sort_column();
265         void set_sort_column(int value, int redraw = 0);
266         int get_sort_order();
267         void set_sort_order(int value, int redraw = 0);
268
269
270         void reset_query();
271         int get_show_query() { return show_query; }
272         void set_show_query(int v) { show_query = v; }
273
274         int reposition_window(int x,
275                 int y,
276                 int w = -1,
277                 int h = -1,
278                 int flush = 1);
279         BC_Pixmap* get_bg_surface();
280 // Set all items for autoplacement with recursion into sublists
281         void set_autoplacement(ArrayList<BC_ListBoxItem*> *data,
282                 int do_icon,
283                 int do_text);
284 // Set selection status on all items with recursion
285         void set_all_selected(ArrayList<BC_ListBoxItem*> *data, int value);
286 // Set selection status of single row with recursion
287 // item_number - the flat index of the row to select
288         void set_selected(ArrayList<BC_ListBoxItem*> *data,
289                 int item_number,
290                 int value,
291                 int *counter = 0);
292
293 // Called by keypress_event for cursor up.  Selects previous and next visible
294 // row, skipping desired number of visible rows.
295         int select_previous(int skip,
296                 BC_ListBoxItem *selected_item = 0,
297                 int *counter = 0,
298                 ArrayList<BC_ListBoxItem*> *data = 0,
299                 int *got_it = 0,
300                 int *got_second = 0);
301         int select_next(int skip,
302                 BC_ListBoxItem *selected_item = 0,
303                 int *counter = 0,
304                 ArrayList<BC_ListBoxItem*> *data = 0,
305                 int *got_it = 0,
306                 int *got_second = 0);
307
308 // Called by cursor_motion_event to select different item if selection_number
309 // changed.  Returns 1 if redraw is required.
310         int update_selection(ArrayList<BC_ListBoxItem*> *data,
311                 int selection_number,
312                 int *counter = 0);
313
314         static void dump(ArrayList<BC_ListBoxItem*> *data,
315                 int columns,
316                 int indent /* = 0 */,
317                 int master_column);
318
319         int get_item_x(BC_ListBoxItem *item);
320         int get_item_y(BC_ListBoxItem *item);
321         int get_item_w(BC_ListBoxItem *item);
322         int get_item_h(BC_ListBoxItem *item);
323
324 // Draw the list items
325         int draw_items(int flash, int bg_draw=0);
326
327         int get_cursor_item();
328
329 private:
330         void delete_columns();
331         void set_columns(const char **column_titles,
332                 int *column_widths,
333                 int columns);
334 // Draw the button for a popup listbox
335         int draw_button(int flush);
336 // Draw list border
337         int draw_border(int flash);
338 // Draw column titles
339         void draw_title(int number);
340         int draw_titles(int flash);
341 // Draw expanders
342         void draw_toggles(int flash);
343 // Draw selection rectangle
344         int draw_rectangle(int flash);
345
346
347         void draw_text_recursive(ArrayList<BC_ListBoxItem*> *data,
348                 int column,
349                 int indent,
350                 int *current_toggle);
351 // Returns 1 if selection changed
352         int query_list();
353         void init_column_width();
354         void reset_cursor(int new_cursor);
355 // Fix boundary conditions after resize
356         void column_width_boundaries();
357 // Recursive function to get the first item selected in text mode.
358 // Returns > -1 only if it got it.  Always increments *result
359         int get_first_selection(ArrayList<BC_ListBoxItem*> *data, int *result = 0);
360 // Recursive function to get the last item selected in text mode.
361 // Returns > -1 only if it got it.  Always increments *result
362         int get_last_selection(ArrayList<BC_ListBoxItem*> *data, int *result = 0);
363 // Called by button_press_event and cursor_motion_event to expand the selection.
364 // Returns 1 if redraw is required.
365         int expand_selection(int button_press, int selection_number);
366 // Called by button_press_event and cursor_motion_event
367 // to select a range in text mode
368         void select_range(ArrayList<BC_ListBoxItem*> *data,
369                 int start,
370                 int end,
371                 int *current = 0);
372 // Called by button_press_event to toggle the selection status of a single item.
373 // Called for both text and icon mode.  In text mode it's recursive and fills
374 // the entire row with the first item's value.  Returns 1 when the item was toggled.
375         int toggle_item_selection(ArrayList<BC_ListBoxItem*> *data,
376                 int selection_number,
377                 int *counter = 0);
378 // Set value of selected in all selected items to new value
379         void promote_selections(ArrayList<BC_ListBoxItem*> *data,
380                 int old_value,
381                 int new_value);
382
383
384         int test_column_divisions(int cursor_x, int cursor_y, int &new_cursor);
385         int test_column_titles(int cursor_x, int cursor_y);
386         int test_expanders();
387
388         int calculate_item_coords();
389         void calculate_last_coords_recursive(
390                 ArrayList<BC_ListBoxItem*> *data,
391                 int *icon_x,
392                 int *next_icon_x,
393                 int *next_icon_y,
394                 int *next_text_y,
395                 int top_level);
396         void calculate_item_coords_recursive(
397                 ArrayList<BC_ListBoxItem*> *data,
398                 int *icon_x,
399                 int *next_icon_x,
400                 int *next_icon_y,
401                 int *next_text_y,
402                 int top_level);
403
404         int get_items_width();
405         int get_items_height(ArrayList<BC_ListBoxItem*> *data,
406                 int columns,
407                 int *result = 0);
408         int get_icon_w(BC_ListBoxItem *item);
409         int get_icon_h(BC_ListBoxItem *item);
410         int get_text_w(BC_ListBoxItem *item);
411         int get_text_h(BC_ListBoxItem *item);
412         int get_baseline(BC_ListBoxItem *item);
413         int get_item_highlight(ArrayList<BC_ListBoxItem*> *data, int column, int item);
414         int get_item_color(ArrayList<BC_ListBoxItem*> *data, int column, int item);
415         int get_icon_mask(BC_ListBoxItem *item, int &x, int &y, int &w, int &h);
416         int get_text_mask(BC_ListBoxItem *item, int &x, int &y, int &w, int &h);
417 // Copy sections of the bg_surface to the gui
418         void clear_listbox(int x, int y, int w, int h);
419
420 // Tests for cursor outside boundaries
421         int test_drag_scroll(int cursor_x, int cursor_y);
422 // Called by select_scroll_event, rectangle_scroll_event to execute for movement
423         int drag_scroll_event();
424         int select_scroll_event();
425         int rectangle_scroll_event();
426
427
428         void move_vertical(int pixels);
429         void move_horizontal(int pixels);
430         void clamp_positions();
431
432         int get_scrollbars();
433         void update_scrollbars(int flush);
434
435 // Flat index of the item the cursor is over.
436 // Points *item_return to the first item in the row or 0 if no item was found.
437 // if it's nonzero.  Returns -1 if no item was found.  Clamps the y coordinate
438 // only if the current operation is not SELECT, so scrolling is possible.
439 // expanded - 1 if items in this table should be tested for cursor coverage
440         int get_cursor_item(ArrayList<BC_ListBoxItem*> *data,
441                 int cursor_x,
442                 int cursor_y,
443                 BC_ListBoxItem **item_return = 0,
444                 int *counter = 0,
445                 int expanded = 1);
446 // Select the items in the rectangle and deselect the items outside of it.
447 // Returns 1 if redraw is required.
448         int select_rectangle(ArrayList<BC_ListBoxItem*> *data,
449                 int x1,
450                 int y1,
451                 int x2,
452                 int y2);
453 // Convert the row of the item to a pointer.
454         BC_ListBoxItem* number_to_item(int row);
455         int reposition_item(ArrayList<BC_ListBoxItem*> *data,
456                 int selection_number,
457                 int x,
458                 int y,
459                 int *counter = 0);
460 // Move selected items to src_items
461         void move_selection(ArrayList<BC_ListBoxItem*> *dst,
462                 ArrayList<BC_ListBoxItem*> *src);
463 // Put items from the src table into the data table starting at flat item number
464 // destination.
465         int put_selection(ArrayList<BC_ListBoxItem*> *data,
466                 ArrayList<BC_ListBoxItem*> *src,
467                 int destination,
468                 int *counter = 0);
469
470         int center_selection(int selection,
471                 ArrayList<BC_ListBoxItem*> *data = 0,
472                 int *counter = 0);
473
474 // Array of one list of pointers for each column
475         ArrayList<BC_ListBoxItem*> *data;
476
477
478 // 1 if a button is used to make the listbox display
479         int is_popup;      // popup
480 // If the button for a popup should be shown
481         int use_button;
482 // background update needed
483         int bg_draw;
484
485 // Dimensions for a popup if there is one
486         int popup_w, popup_h;
487 // pixel of top of display relative to top of list
488         int yposition;
489 // pixel of left display relative to first column
490         int xposition;
491 // dimensions of a row in the list
492         int row_height, row_ascent, row_descent;
493
494
495         int selection_mode;
496         int display_format;
497         int temp_display_format;
498         int icon_position;
499 // Scrollbars are created as needed
500         BC_ListBoxXScroll *xscrollbar;
501         BC_ListBoxYScroll *yscrollbar;
502         ArrayList<BC_ListBoxToggle*> expanders;
503         char query[BCTEXTLEN];
504         int show_query;
505
506 // Window containing the listbox
507         BC_WindowBase *gui;
508         int disabled;
509 // Size of the popup if there is one
510         char **column_titles;
511         int *column_width;
512         int default_column_width[32];
513         int columns;
514         int master_column;
515         int search_column;
516
517         int view_h, view_w;
518         int first_in_view, last_in_view;
519         int title_h;
520 // Maximum width of items.  Calculated by get_items_width
521         int items_w;
522         int items_h;
523 // In BCLISTBOX_SELECT mode determines the value to set items to
524         int new_value;
525         int need_xscroll, need_yscroll;
526         int xscroll_orientation, yscroll_orientation;
527 // Move items during drag operation of text items.
528         int process_drag;
529         int allow_drag;
530         int allow_drag_scroll;
531         int allow_drag_column;
532 // Background color of listbox
533         int list_background;
534
535
536 // Popup button
537         BC_Pixmap *button_images[4];
538 // Expander
539         BC_Pixmap *toggle_images[5];
540 // Background for drawing on
541         BC_Pixmap *bg_surface;
542 // Background if 9 segment
543         BC_Pixmap *bg_tile;
544 // Drag icon for text mode
545         VFrame *drag_icon_vframe;
546 // Drag column icon
547         VFrame *drag_column_icon_vframe;
548 // Background picon to be drawn in the upper right
549         BC_Pixmap *bg_pixmap;
550
551
552 // Column title backgrounds
553         BC_Pixmap *column_bg[3];
554 // Column sort order
555         BC_Pixmap *column_sort_up;
556         BC_Pixmap *column_sort_dn;
557
558
559
560
561 // Number of column to sort
562         int sort_column;
563 // Sort order.  -1 means no column is being sorted.
564         int sort_order;
565
566
567
568
569
570 // State of the list box and button when the mouse button is pressed.
571         int current_operation;
572
573         enum
574         {
575                 NO_OPERATION,
576                 BUTTON_DOWN_SELECT, // Pressed button and slid off to select items.
577                 BUTTON_DN,
578                 DRAG_DIVISION,    // Dragging column division
579                 DRAG_COLUMN,      // Dragging column
580                 DRAG_ITEM,        // Dragging item
581                 SELECT,                   // Select item
582                 SELECT_RECT,      // Selection rectangle
583                 WHEEL,                    // Wheel mouse
584                 COLUMN_DN,                // column title down
585                 COLUMN_DRAG,      // column title is being dragged
586                 EXPAND_DN         // Expander is down
587         };
588
589
590 // More state variables
591         int button_highlighted;
592         int list_highlighted;
593         int packed_icons;
594 // item cursor is over.  May not exist in tables.
595 // Must be an index since this is needed to change the database.
596         int highlighted_item;
597         BC_ListBoxItem* highlighted_ptr;
598 // column title if the cursor is over a column title
599         int highlighted_title;
600 // Division the cursor is operating on when resizing
601         int highlighted_division;
602 // Column title being dragged
603         int dragged_title;
604 // start of column title drag
605         int drag_cursor_x;
606         int drag_column_w;
607
608 // Selection range being extended
609         int selection_start, selection_end, selection_center;
610 // Item being dragged or last item selected in a double click operation
611         int selection_number;
612 // Used in button_press_event and button_release_event to detect double clicks
613         int selection_number1, selection_number2;
614
615
616
617
618         int active;
619 // Popup listboxes have different behavior for suggestion boxes where the
620 // textbox needs to be active when the listbox is visible.
621         int is_suggestions;
622
623 // Button release counter for double clicking
624         int button_releases;
625         int current_cursor;
626 // Starting coordinates of rectangle
627         int rect_x1, rect_y1;
628         int rect_x2, rect_y2;
629
630
631
632 // Window for dragging
633         BC_DragWindow *drag_popup;
634         int justify;
635 };
636
637
638
639
640 #endif