fix opengl transform translate (again), update shell btns, tweak lv2-blacklist, Makef...
[goodguy/cinelerra.git] / cinelerra-5.1 / guicast / bcpopup.C
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 #include "bcpopup.h"
23 #include "language.h"
24
25
26 BC_FullScreen::BC_FullScreen(BC_WindowBase *parent_window, int w, int h,
27                 int bg_color, int vm_scale, int hide, BC_Pixmap *bg_pixmap)
28  : BC_WindowBase()
29 {
30 #ifdef HAVE_LIBXXF86VM
31    if (vm_scale)
32            create_window(parent_window, _("Fullscreen"),
33                    parent_window->get_screen_x(0, -1), parent_window->get_screen_y(0, -1),
34                    w, h, w, h, 0, parent_window->top_level->private_color, hide,
35                    bg_color, NULL, VIDMODE_SCALED_WINDOW, bg_pixmap, 0);
36    else
37 #endif
38    create_window(parent_window, _("Fullscreen"),
39                    parent_window->get_screen_x(0, -1), parent_window->get_screen_y(0, -1),
40                    w, h, w, h, 0, parent_window->top_level->private_color, hide,
41                    bg_color, NULL, POPUP_WINDOW, bg_pixmap, 0);
42 }
43
44
45 BC_FullScreen::~BC_FullScreen()
46 {
47 }
48
49 int BC_FullScreen::expose_event()
50 {
51         focus();
52         return 1;
53 }
54
55
56 BC_Popup::BC_Popup(BC_WindowBase *parent_window,
57                 int x, int y, int w, int h, int bg_color, int hide, BC_Pixmap *bg_pixmap)
58  : BC_WindowBase()
59 {
60         create_window(parent_window,
61                 _("Popup"), x, y, w, h, w, h, 0, parent_window->top_level->private_color,
62                 hide, bg_color, NULL, POPUP_WINDOW, bg_pixmap, 0);
63         grabbed = 0;
64 }
65
66
67 BC_Popup::~BC_Popup()
68 {
69 }
70
71 int BC_Popup::expose_event()
72 {
73         focus();
74         return 1;
75 }
76
77 void BC_Popup::grab_keyboard()
78 {
79         if( !grabbed ) {
80                 lock_window("BC_Popup::grab_keyboard");
81                 if( !getenv("NO_KEYBOARD_GRAB") )
82                         XGrabKeyboard(top_level->display, win, False,
83                                 GrabModeAsync, GrabModeAsync, CurrentTime);
84                 else
85                         XSetInputFocus(top_level->display, win, RevertToParent, CurrentTime);
86                 unlock_window();  flush();  //  printf("grabbed\n");
87                 set_active_subwindow(this);
88                 grabbed = 1;
89         }
90 }
91
92 void BC_Popup::ungrab_keyboard()
93 {
94         if( grabbed ) {
95                 lock_window("BC_Popup::ungrab_keyboard");
96                 if( !getenv("NO_KEYBOARD_GRAB") )
97                         XUngrabKeyboard(top_level->display, CurrentTime);
98                 unlock_window();  flush(); //  printf("ungrabbed\n");
99                 set_active_subwindow(0);
100                 grabbed = 0;
101         }
102 }
103