From fa820efaf01f9c743dc11a04fd85bcb68ef038dc Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Wed, 25 Jul 2012 14:33:42 +0200 Subject: [PATCH] gears: add fullscreen support --- clients/gears.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/clients/gears.c b/clients/gears.c index 166e6a4..70ec86c 100644 --- a/clients/gears.c +++ b/clients/gears.c @@ -58,6 +58,7 @@ struct gears { int last_x, last_y; GLint gear_list[3]; + int fullscreen; }; struct gear_template { @@ -353,6 +354,15 @@ keyboard_focus_handler(struct window *window, window_schedule_redraw(window); } +static void +fullscreen_handler(struct window *window, void *data) +{ + struct gears *gears = data; + + gears->fullscreen ^= 1; + window_set_fullscreen(window, gears->fullscreen); +} + static struct gears * gears_create(struct display *display) { @@ -418,6 +428,7 @@ gears_create(struct display *display) widget_set_motion_handler(gears->widget, motion_handler); window_set_keyboard_focus_handler(gears->window, keyboard_focus_handler); + window_set_fullscreen_handler(gears->window, fullscreen_handler); window_schedule_resize(gears->window, width, height); -- 2.7.4