4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
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.
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.
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
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)
30 #ifdef HAVE_LIBXXF86VM
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);
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);
45 BC_FullScreen::~BC_FullScreen()
49 int BC_FullScreen::expose_event()
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)
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);
71 int BC_Popup::expose_event()
77 void BC_Popup::grab_keyboard()
80 lock_window("BC_Popup::grab_keyboard");
81 if( !getenv("NO_KEYBOARD_GRAB") )
82 XGrabKeyboard(top_level->display, win, False,
83 GrabModeAsync, GrabModeAsync, CurrentTime);
85 XSetInputFocus(top_level->display, win, RevertToParent, CurrentTime);
86 unlock_window(); flush(); // printf("grabbed\n");
87 set_active_subwindow(this);
92 void BC_Popup::ungrab_keyboard()
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);