revert de.po
[goodguy/history.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 w_argument);
57         static int calculate_h(VFrame **data = 0);
58         virtual int handle_event() { return 0; };
59         char* get_text();
60         int initialize();
61         int add_item(BC_MenuItem *item);
62         int remove_item(BC_MenuItem *item);
63         int total_items();
64         BC_MenuItem* get_item(int i);
65 // Set title of menu
66         void set_text(const char *text);
67 // Set icon of menu.  Disables text.
68         void set_icon(BC_Pixmap *pixmap);
69 // Draw title of menu
70         int draw_title(int flush);
71         int reposition_window(int x, int y);
72         int deactivate();
73         int activate_menu();
74         int deactivate_menu();
75         int focus_out_event();
76         int repeat_event(int64_t duration);
77         int button_press_event();
78         int button_release_event();
79         int cursor_leave_event();
80         int cursor_enter_event();
81         int cursor_motion_event();
82         int translation_event();
83         int drag_start_event();
84         int drag_stop_event();
85         int drag_motion_event();
86         int set_images(VFrame **data);
87
88 private:
89         char text[BCTEXTLEN];
90         int margin;
91         VFrame **data;
92         BC_Pixmap *images[9];
93         BC_Pixmap *icon;
94         int highlighted;
95         int popup_down;
96         int use_title;
97         int button_releases;
98         BC_MenuPopup *menu_popup;
99 // Remember cursor position when no title
100         int button_press_x, button_press_y;
101         int w_argument;
102         int status;
103 };
104
105
106
107 #endif