filename | src/gtkui/main_win.c |
changeset | 635:76c63aac3590 |
prev | 618:3ade50e8603c |
next | 658:f5926310bfbe |
author | nkeynes |
date | Thu Feb 14 13:54:11 2008 +0000 (15 years ago) |
branch | lxdream-render |
permissions | -rw-r--r-- |
last change | Commit render work in progress. Main changes: * Preliminary OSMesa support * Move the generic gl code out to pvr2/ * Implement scene data structure + reader * Remove the 1/z adjustments |
view | annotate | diff | log | raw |
1 /**
2 * $Id$
3 *
4 * Define the main (emu) GTK window, along with its menubars,
5 * toolbars, etc.
6 *
7 * Copyright (c) 2005 Nathan Keynes.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 */
20 #include <assert.h>
21 #include <sys/types.h>
22 #include <sys/stat.h>
23 #include <unistd.h>
24 #include <string.h>
25 #include <stdio.h>
26 #include <stdlib.h>
28 #include <gtk/gtk.h>
29 #include <gdk/gdk.h>
30 #include <gdk/gdkx.h>
31 #include <gdk/gdkkeysyms.h>
32 #include <X11/Xutil.h>
34 #include "dream.h"
35 #include "gtkui/gtkui.h"
36 #include "drivers/video_glx.h"
39 struct main_window_info {
40 GtkWidget *window;
41 GtkWidget *video;
42 GtkWidget *menubar;
43 GtkWidget *toolbar;
44 GtkWidget *statusbar;
45 GtkActionGroup *actions;
46 gboolean use_grab;
47 gboolean is_grabbed;
48 int32_t mouse_x, mouse_y;
49 };
52 /******************** Video window **************************/
54 /**
55 * Adjust the mouse pointer so that it appears in the center of the video
56 * window. Mainly used for when we have the mouse grab
57 */
58 void video_window_center_pointer( main_window_t win )
59 {
60 GdkDisplay *display = gtk_widget_get_display(win->video);
61 GdkScreen *screen = gtk_widget_get_screen(win->video);
62 int x,y;
63 int width, height;
65 gdk_window_get_origin(win->video->window, &x, &y);
66 gdk_drawable_get_size(GDK_DRAWABLE(win->video->window), &width, &height);
67 x += width / 2;
68 y += height / 2;
70 gdk_display_warp_pointer( display, screen, x, y );
71 win->mouse_x = width/2;
72 win->mouse_y = height/2;
73 }
75 /**
76 * Grab the keyboard and mouse for the display. The mouse cursor is hidden and
77 * moved to the centre of the window.
78 *
79 * @param win The window receiving the grab
80 * @return TRUE if the grab was successful, FALSE on failure.
81 */
82 gboolean video_window_grab_display( main_window_t win )
83 {
84 GdkWindow *gdkwin = win->video->window;
85 GdkColor color = { 0,0,0,0 };
86 char bytes[32]; /* 16 * 16 / 8 */
87 memset(bytes, 0, 32);
88 GdkPixmap *pixmap = gdk_bitmap_create_from_data(NULL, bytes, 16, 16);
89 GdkCursor *cursor = gdk_cursor_new_from_pixmap(pixmap, pixmap, &color, &color, 16, 16);
90 gdk_pixmap_unref(pixmap);
92 gboolean success =
93 gdk_pointer_grab( gdkwin, FALSE,
94 GDK_POINTER_MOTION_MASK|GDK_BUTTON_PRESS_MASK|GDK_BUTTON_RELEASE_MASK,
95 gdkwin, cursor, GDK_CURRENT_TIME ) == GDK_GRAB_SUCCESS;
96 gdk_cursor_unref(cursor);
97 if( success ) {
98 success = gdk_keyboard_grab( gdkwin, FALSE, GDK_CURRENT_TIME ) == GDK_GRAB_SUCCESS;
99 if( !success ) {
100 gdk_pointer_ungrab(GDK_CURRENT_TIME);
101 }
102 }
103 win->is_grabbed = success;
104 main_window_set_running(win, dreamcast_is_running());
105 return success;
106 }
108 /**
109 * Release the display grab.
110 */
111 void video_window_ungrab_display( main_window_t win )
112 {
113 gdk_pointer_ungrab(GDK_CURRENT_TIME);
114 gdk_keyboard_ungrab(GDK_CURRENT_TIME);
115 win->is_grabbed = FALSE;
116 main_window_set_running(win, dreamcast_is_running());
117 }
119 static gboolean on_video_window_mouse_motion( GtkWidget *widget, GdkEventMotion *event,
120 gpointer user_data )
121 {
122 main_window_t win = (main_window_t)user_data;
123 int32_t x = (int32_t)event->x;
124 int32_t y = (int32_t)event->y;
125 if( win->is_grabbed &&
126 (x != win->mouse_x || y != win->mouse_y) ) {
127 uint32_t buttons = (event->state >> 8)&0x1F;
128 input_event_mouse( buttons, x - win->mouse_x, y - win->mouse_y );
129 video_window_center_pointer(win);
130 }
131 return TRUE;
132 }
134 static gboolean on_video_window_mouse_pressed( GtkWidget *widget, GdkEventButton *event,
135 gpointer user_data )
136 {
137 main_window_t win = (main_window_t)user_data;
138 if( win->is_grabbed ) {
139 // Get the buttons from the event state, and remove the released button
140 uint32_t buttons = ((event->state >> 8) & 0x1F) | (1<<(event->button-1));
141 input_event_mouse( buttons, 0, 0 );
142 }
143 return TRUE;
144 }
146 static gboolean on_video_window_mouse_released( GtkWidget *widget, GdkEventButton *event,
147 gpointer user_data )
148 {
149 main_window_t win = (main_window_t)user_data;
150 if( win->is_grabbed ) {
151 // Get the buttons from the event state, and remove the released button
152 uint32_t buttons = ((event->state >> 8) & 0x1F) & (~(1<<(event->button-1)));
153 input_event_mouse( buttons, 0, 0 );
154 } else if( win->use_grab) {
155 video_window_grab_display(win);
156 }
157 return TRUE;
158 }
160 static gboolean on_video_window_key_pressed( GtkWidget *widget, GdkEventKey *event,
161 gpointer user_data )
162 {
163 main_window_t win = (main_window_t)user_data;
164 if( win->is_grabbed ) {
165 /* Check for ungrab key combo (ctrl-alt). Unfortunately GDK sends it as
166 * a singly-modified keypress rather than a double-modified 'null' press,
167 * so we have to do a little more work.
168 * Only check Ctrl/Shift/Alt for state - don't want to check numlock/capslock/
169 * mouse buttons/etc
170 */
171 int mod = gdk_keycode_to_modifier(gtk_widget_get_display(widget), event->hardware_keycode);
172 int state = event->state & gtk_accelerator_get_default_mod_mask();
173 if( (state == GDK_CONTROL_MASK && mod == GDK_MOD1_MASK) ||
174 (state == GDK_MOD1_MASK && mod == GDK_CONTROL_MASK) ) {
175 video_window_ungrab_display(win);
176 // Consume the keypress, DC doesn't get it.
177 return TRUE;
178 }
179 }
180 input_event_keydown( NULL, gtk_get_unmodified_keyval(event), 1 );
181 return TRUE;
182 }
184 static gboolean on_video_window_key_released( GtkWidget *widget, GdkEventKey *event,
185 gpointer user_data )
186 {
187 main_window_t win = (main_window_t)user_data;
188 input_event_keyup( NULL, gtk_get_unmodified_keyval(event), 0 );
189 return TRUE;
190 }
192 static gboolean on_video_window_focus_changed( GtkWidget *widget, GdkEventFocus *event,
193 gpointer user_data )
194 {
195 display_set_focused(event->in);
196 }
198 /*************************** Main window (frame) ******************************/
200 static gboolean on_main_window_deleted( GtkWidget *widget, GdkEvent event, gpointer user_data )
201 {
202 exit(0);
203 }
205 static void on_main_window_state_changed( GtkWidget *widget, GdkEventWindowState *state,
206 gpointer userdata )
207 {
208 main_window_t win = (main_window_t)userdata;
209 if( state->changed_mask & GDK_WINDOW_STATE_FULLSCREEN ) {
210 gboolean fs = (state->new_window_state & GDK_WINDOW_STATE_FULLSCREEN);
211 GtkWidget *frame = gtk_widget_get_parent(win->video);
212 if( frame->style == NULL ) {
213 gtk_widget_set_style( frame, gtk_style_new() );
214 }
215 if( fs ) {
216 gtk_widget_hide( win->menubar );
217 gtk_widget_hide( win->toolbar );
218 gtk_widget_hide( win->statusbar );
220 frame->style->xthickness = 0;
221 frame->style->ythickness = 0;
222 } else {
223 frame->style->xthickness = 2;
224 frame->style->ythickness = 2;
225 gtk_widget_show( win->menubar );
226 gtk_widget_show( win->toolbar );
227 gtk_widget_show( win->statusbar );
228 }
229 gtk_widget_queue_draw( win->window );
230 }
231 }
233 main_window_t main_window_new( const gchar *title, GtkWidget *menubar, GtkWidget *toolbar,
234 GtkAccelGroup *accel_group )
235 {
236 GtkWidget *vbox;
237 GtkWidget *frame;
238 main_window_t win = g_malloc0( sizeof(struct main_window_info) );
240 win->window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
241 win->menubar = menubar;
242 win->toolbar = toolbar;
243 win->use_grab = FALSE;
244 win->is_grabbed = FALSE;
245 gtk_window_set_title( GTK_WINDOW(win->window), title );
246 gtk_window_add_accel_group (GTK_WINDOW (win->window), accel_group);
248 gtk_toolbar_set_style( GTK_TOOLBAR(toolbar), GTK_TOOLBAR_ICONS );
250 Display *display = gdk_x11_display_get_xdisplay( gtk_widget_get_display(win->window));
251 Screen *screen = gdk_x11_screen_get_xscreen( gtk_widget_get_screen(win->window));
252 int screen_no = XScreenNumberOfScreen(screen);
253 #ifndef HAVE_LIBOSMESA
254 if( !video_glx_init(display, screen_no) ) {
255 ERROR( "Unable to initialize GLX, aborting" );
256 exit(3);
257 }
258 #endif
260 win->video = gtk_drawing_area_new();
262 XVisualInfo *visual = video_gtk_get_visual();
263 if( visual != NULL ) {
264 GdkVisual *gdkvis = gdk_x11_screen_lookup_visual( gtk_widget_get_screen(win->window), visual->visualid );
265 GdkColormap *colormap = gdk_colormap_new( gdkvis, FALSE );
266 gtk_widget_set_colormap( win->video, colormap );
267 }
268 GTK_WIDGET_SET_FLAGS(win->video, GTK_CAN_FOCUS|GTK_CAN_DEFAULT);
269 gtk_widget_set_size_request( win->video, 640, 480 );
270 gtk_widget_set_double_buffered( win->video, FALSE );
271 frame = gtk_frame_new(NULL);
272 gtk_frame_set_shadow_type( GTK_FRAME(frame), GTK_SHADOW_IN );
273 gtk_container_add( GTK_CONTAINER(frame), win->video );
275 win->statusbar = gtk_statusbar_new();
277 vbox = gtk_vbox_new(FALSE, 0);
278 gtk_container_add( GTK_CONTAINER(win->window), vbox );
279 gtk_box_pack_start( GTK_BOX(vbox), menubar, FALSE, FALSE, 0 );
280 gtk_box_pack_start( GTK_BOX(vbox), toolbar, FALSE, FALSE, 0 );
281 gtk_box_pack_start( GTK_BOX(vbox), frame, TRUE, TRUE, 0 );
282 gtk_box_pack_start( GTK_BOX(vbox), win->statusbar, FALSE, FALSE, 0 );
283 gtk_widget_show_all( win->window );
284 gtk_widget_grab_focus( win->video );
286 gtk_statusbar_push( GTK_STATUSBAR(win->statusbar), 1, "Stopped" );
288 g_signal_connect( win->window, "delete_event",
289 G_CALLBACK(on_main_window_deleted), win );
290 g_signal_connect( win->window, "window-state-event",
291 G_CALLBACK(on_main_window_state_changed), win );
293 g_signal_connect( win->video, "key-press-event",
294 G_CALLBACK(on_video_window_key_pressed), win );
295 g_signal_connect( win->video, "key-release-event",
296 G_CALLBACK(on_video_window_key_released), win );
297 g_signal_connect( win->video, "motion-notify-event",
298 G_CALLBACK(on_video_window_mouse_motion), win );
299 g_signal_connect( win->video, "button-press-event",
300 G_CALLBACK(on_video_window_mouse_pressed), win );
301 g_signal_connect( win->video, "button-release-event",
302 G_CALLBACK(on_video_window_mouse_released), win );
303 g_signal_connect( win->video, "focus-in-event",
304 G_CALLBACK(on_video_window_focus_changed), win);
305 g_signal_connect( win->video, "focus-out-event",
306 G_CALLBACK(on_video_window_focus_changed), win);
308 gtk_widget_add_events( win->video,
309 GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK |
310 GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
311 GDK_POINTER_MOTION_MASK | GDK_FOCUS_CHANGE_MASK );
313 return win;
314 }
316 void main_window_set_status_text( main_window_t win, char *text )
317 {
318 gtk_statusbar_pop( GTK_STATUSBAR(win->statusbar), 1 );
319 if( win->is_grabbed ) {
320 char buf[128];
321 snprintf( buf, sizeof(buf), "%s %s", text, _("(Press <ctrl><alt> to release grab)") );
322 gtk_statusbar_push( GTK_STATUSBAR(win->statusbar), 1, buf );
323 } else {
324 gtk_statusbar_push( GTK_STATUSBAR(win->statusbar), 1, text );
325 }
326 }
328 void main_window_set_running( main_window_t win, gboolean running )
329 {
330 char *text = running ? _("Running") : _("Stopped");
331 gtk_gui_enable_action( "Pause", running );
332 gtk_gui_enable_action( "Run", !running && dreamcast_can_run() );
333 main_window_set_status_text( win, text );
334 }
336 void main_window_set_framerate( main_window_t win, float rate )
337 {
340 }
342 void main_window_set_speed( main_window_t win, double speed )
343 {
344 char buf[32];
346 snprintf( buf, 32, "Running (%2.4f%%)", speed );
347 main_window_set_status_text( win, buf );
348 }
350 GtkWidget *main_window_get_renderarea( main_window_t win )
351 {
352 return win->video;
353 }
355 GtkWindow *main_window_get_frame( main_window_t win )
356 {
357 return GTK_WINDOW(win->window);
358 }
360 void main_window_set_fullscreen( main_window_t win, gboolean fullscreen )
361 {
362 if( fullscreen ) {
363 gtk_window_fullscreen( GTK_WINDOW(win->window) );
364 } else {
365 gtk_window_unfullscreen( GTK_WINDOW(win->window) );
366 }
367 }
369 void main_window_set_use_grab( main_window_t win, gboolean use_grab )
370 {
371 if( use_grab != win->use_grab ) {
372 if( use_grab ) {
373 GdkCursor *cursor = gdk_cursor_new( GDK_HAND2 );
374 gdk_window_set_cursor( win->video->window, cursor );
375 gdk_cursor_unref( cursor );
376 } else {
377 gdk_window_set_cursor( win->video->window, NULL );
378 if( gdk_pointer_is_grabbed() ) {
379 video_window_ungrab_display(win);
380 }
381 }
382 win->use_grab = use_grab;
383 }
384 }
.