Search
lxdream.org :: lxdream/src/gtkui/main_win.c
lxdream 0.9.1
released Jun 29
Download Now
filename src/gtkui/main_win.c
changeset 618:3ade50e8603c
prev614:a2d239d4438a
next635:76c63aac3590
author nkeynes
date Tue Feb 12 08:36:29 2008 +0000 (16 years ago)
permissions -rw-r--r--
last change Bug #55: Fix relative path handling
Canonicalize paths before passing to the file dialog
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     if( !video_glx_init(display, screen_no) ) {
   254         ERROR( "Unable to initialize GLX, aborting" );
   255 	exit(3);
   256     }
   258     XVisualInfo *visual = video_glx_get_visual();
   259     GdkVisual *gdkvis = gdk_x11_screen_lookup_visual( gtk_widget_get_screen(win->window), visual->visualid );
   260     GdkColormap *colormap = gdk_colormap_new( gdkvis, FALSE );
   261     win->video = gtk_drawing_area_new();
   262     gtk_widget_set_colormap( win->video, colormap );
   263     GTK_WIDGET_SET_FLAGS(win->video, GTK_CAN_FOCUS|GTK_CAN_DEFAULT);
   264     gtk_widget_set_size_request( win->video, 640, 480 ); 
   265     gtk_widget_set_double_buffered( win->video, FALSE );
   266     frame = gtk_frame_new(NULL);
   267     gtk_frame_set_shadow_type( GTK_FRAME(frame), GTK_SHADOW_IN );
   268     gtk_container_add( GTK_CONTAINER(frame), win->video );
   270     win->statusbar = gtk_statusbar_new();
   272     vbox = gtk_vbox_new(FALSE, 0);
   273     gtk_container_add( GTK_CONTAINER(win->window), vbox );
   274     gtk_box_pack_start( GTK_BOX(vbox), menubar, FALSE, FALSE, 0 );
   275     gtk_box_pack_start( GTK_BOX(vbox), toolbar, FALSE, FALSE, 0 );
   276     gtk_box_pack_start( GTK_BOX(vbox), frame, TRUE, TRUE, 0 );
   277     gtk_box_pack_start( GTK_BOX(vbox), win->statusbar, FALSE, FALSE, 0 );
   278     gtk_widget_show_all( win->window );
   279     gtk_widget_grab_focus( win->video );
   281     gtk_statusbar_push( GTK_STATUSBAR(win->statusbar), 1, "Stopped" );
   283     g_signal_connect( win->window, "delete_event", 
   284 		      G_CALLBACK(on_main_window_deleted), win );
   285     g_signal_connect( win->window, "window-state-event",
   286 		      G_CALLBACK(on_main_window_state_changed), win );
   288     g_signal_connect( win->video, "key-press-event",
   289 		      G_CALLBACK(on_video_window_key_pressed), win );
   290     g_signal_connect( win->video, "key-release-event",
   291 		      G_CALLBACK(on_video_window_key_released), win );
   292     g_signal_connect( win->video, "motion-notify-event",
   293 		      G_CALLBACK(on_video_window_mouse_motion), win );
   294     g_signal_connect( win->video, "button-press-event",
   295 		      G_CALLBACK(on_video_window_mouse_pressed), win );
   296     g_signal_connect( win->video, "button-release-event", 
   297 		      G_CALLBACK(on_video_window_mouse_released), win );
   298     g_signal_connect( win->video, "focus-in-event",
   299 		      G_CALLBACK(on_video_window_focus_changed), win);
   300     g_signal_connect( win->video, "focus-out-event",
   301 		      G_CALLBACK(on_video_window_focus_changed), win);
   303     gtk_widget_add_events( win->video, 
   304 			   GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK |
   305 			   GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
   306 			   GDK_POINTER_MOTION_MASK | GDK_FOCUS_CHANGE_MASK );
   308     return win;
   309 }
   311 void main_window_set_status_text( main_window_t win, char *text )
   312 {
   313     gtk_statusbar_pop( GTK_STATUSBAR(win->statusbar), 1 );
   314     if( win->is_grabbed ) {
   315 	char buf[128];
   316 	snprintf( buf, sizeof(buf), "%s %s", text, _("(Press <ctrl><alt> to release grab)") );
   317 	gtk_statusbar_push( GTK_STATUSBAR(win->statusbar), 1, buf );
   318     } else {
   319 	gtk_statusbar_push( GTK_STATUSBAR(win->statusbar), 1, text );
   320     }
   321 }
   323 void main_window_set_running( main_window_t win, gboolean running )
   324 {
   325     char *text = running ? _("Running") : _("Stopped");
   326     gtk_gui_enable_action( "Pause", running );
   327     gtk_gui_enable_action( "Run", !running && dreamcast_can_run() );
   328     main_window_set_status_text( win, text );
   329 }
   331 void main_window_set_framerate( main_window_t win, float rate )
   332 {
   335 }
   337 void main_window_set_speed( main_window_t win, double speed )
   338 {
   339     char buf[32];
   341     snprintf( buf, 32, "Running (%2.4f%%)", speed );
   342     main_window_set_status_text( win, buf );
   343 }
   345 GtkWidget *main_window_get_renderarea( main_window_t win )
   346 {
   347     return win->video;
   348 }
   350 GtkWindow *main_window_get_frame( main_window_t win )
   351 {
   352     return GTK_WINDOW(win->window);
   353 }
   355 void main_window_set_fullscreen( main_window_t win, gboolean fullscreen )
   356 {
   357     if( fullscreen ) {
   358 	gtk_window_fullscreen( GTK_WINDOW(win->window) );
   359     } else {
   360 	gtk_window_unfullscreen( GTK_WINDOW(win->window) );
   361     }
   362 }
   364 void main_window_set_use_grab( main_window_t win, gboolean use_grab )
   365 {
   366     if( use_grab != win->use_grab ) {
   367 	if( use_grab ) {
   368 	    GdkCursor *cursor = gdk_cursor_new( GDK_HAND2 );
   369 	    gdk_window_set_cursor( win->video->window, cursor );
   370 	    gdk_cursor_unref( cursor );
   371 	} else {
   372 	    gdk_window_set_cursor( win->video->window, NULL );
   373 	    if( gdk_pointer_is_grabbed() ) {
   374 		video_window_ungrab_display(win);
   375 	    }
   376 	}
   377 	win->use_grab = use_grab;
   378     }
   379 }
.