fullscreen segv fix, popup for 4opts preview, renderfarm print fix, pan widget upgrad...
[goodguy/cinelerra.git] / cinelerra-5.1 / guicast / bcpopupmenu.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #ifndef BCPOPUPMENU_H
23 #define BCPOPUPMENU_H
24
25 #include "bcmenubar.inc"
26 #include "bcmenuitem.inc"
27 #include "bcmenupopup.inc"
28 #include "bcsubwindow.h"
29
30
31 // A menu that pops up in the middle of a window or under a button.
32
33
34
35 class BC_PopupMenu : public BC_SubWindow
36 {
37 public:
38         BC_PopupMenu(int x,
39                 int y,
40                 int w,
41                 const char *text,
42                 int use_title = 1,
43 // Data for alternative title images
44                 VFrame **data = 0,
45 // Alternative text margin
46                 int margin = -1);
47         BC_PopupMenu(int x,
48                 int y,
49                 const char *text,
50                 int use_title = 1,
51 // Data for alternative title images
52                 VFrame **data = 0);
53         virtual ~BC_PopupMenu();
54
55 // Adds popupmenu_margin to width
56         static int calculate_w(int margin, int text_width, int use_title);
57         static int calculate_w(int text_width);
58         static int calculate_h(VFrame **data = 0);
59         virtual int handle_event() { return 0; };
60         virtual int draw_face(int dx);
61         char* get_text();
62         int initialize();
63         int add_item(BC_MenuItem *item);
64         int del_item(BC_MenuItem *item);
65         int remove_item(BC_MenuItem *item);
66         int total_items();
67         BC_MenuItem* get_item(int i);
68         int get_margin();
69 // Set title of menu
70         void set_text(const char *text);
71 // Set icon of menu.  Disables text.
72         void set_icon(BC_Pixmap *pixmap);
73 // Draw title of menu
74         int draw_title(int flush);
75         int reposition_window(int x, int y);
76         int deactivate();
77         int activate_menu();
78         int menu_activate();
79         int deactivate_menu();
80         int focus_out_event();
81         int repeat_event(int64_t duration);
82         int button_press_event();
83         int button_release_event();
84         int cursor_leave_event();
85         int cursor_enter_event();
86         int cursor_motion_event();
87         int translation_event();
88         int drag_start_event();
89         int drag_stop_event();
90         int drag_motion_event();
91         int set_images(VFrame **data);
92
93 private:
94         char text[BCTEXTLEN];
95         int margin;
96         VFrame **data;
97         BC_Pixmap *images[9];
98         BC_Pixmap *icon;
99         int highlighted;
100         int popup_down;
101         int use_title;
102         BC_MenuPopup *menu_popup;
103 // Remember cursor position when no title
104         int button_press_x, button_press_y;
105         int w_argument;
106         int status;
107         int pending;
108 };
109
110
111
112 #endif