Search
lxdream.org :: lxdream/src/gui/main_win.c
lxdream 0.9.1
released Jun 29
Download Now
filename src/gui/main_win.c
changeset 480:d28c2992f5ee
prev457:af605fd32c0b
next486:9af294489aad
author nkeynes
date Wed Oct 31 12:16:58 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Update release notes
view annotate diff log raw
     1 /**
     2  * $Id: main_win.c,v 1.8 2007-10-31 11:53:35 nkeynes Exp $
     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>
    30 #include "dream.h"
    31 #include "gui/gtkui.h"
    34 struct main_window_info {
    35     GtkWidget *window;
    36     GtkWidget *video;
    37     GtkWidget *statusbar;
    38     GtkActionGroup *actions;
    39 };
    41 gboolean on_main_window_deleted( GtkWidget *widget, GdkEvent event, gpointer user_data )
    42 {
    43     exit(0);
    44 }
    46 main_window_t main_window_new( const gchar *title, GtkWidget *menubar, GtkWidget *toolbar,
    47 			       GtkAccelGroup *accel_group )
    48 {
    49     GtkWidget *vbox;
    50     GtkWidget *frame;
    51     main_window_t win = g_malloc0( sizeof(struct main_window_info) );
    53     win->window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
    54     gtk_window_set_title( GTK_WINDOW(win->window), title );
    55     gtk_window_add_accel_group (GTK_WINDOW (win->window), accel_group);
    57     gtk_toolbar_set_style( GTK_TOOLBAR(toolbar), GTK_TOOLBAR_ICONS );
    59     win->video = gtk_drawing_area_new();
    60     GTK_WIDGET_SET_FLAGS(win->video, GTK_CAN_FOCUS|GTK_CAN_DEFAULT);
    61     gtk_widget_set_size_request( win->video, 640, 480 ); 
    62     frame = gtk_frame_new(NULL);
    63     gtk_frame_set_shadow_type( GTK_FRAME(frame), GTK_SHADOW_IN );
    64     gtk_container_add( GTK_CONTAINER(frame), win->video );
    66     win->statusbar = gtk_statusbar_new();
    68     vbox = gtk_vbox_new(FALSE, 0);
    69     gtk_container_add( GTK_CONTAINER(win->window), vbox );
    70     gtk_box_pack_start( GTK_BOX(vbox), menubar, FALSE, FALSE, 0 );
    71     gtk_box_pack_start( GTK_BOX(vbox), toolbar, FALSE, FALSE, 0 );
    72     gtk_box_pack_start( GTK_BOX(vbox), frame, TRUE, TRUE, 0 );
    73     gtk_box_pack_start( GTK_BOX(vbox), win->statusbar, FALSE, FALSE, 0 );
    74     gtk_widget_show_all( win->window );
    75     gtk_widget_grab_focus( win->video );
    77     gtk_statusbar_push( GTK_STATUSBAR(win->statusbar), 1, "Stopped" );
    78     g_signal_connect( win->window, "delete_event", 
    79 		      G_CALLBACK(on_main_window_deleted), win );
    80     return win;
    81 }
    83 void main_window_set_running( main_window_t win, gboolean running )
    84 {
    85     gtk_gui_enable_action( "Pause", running );
    86     gtk_gui_enable_action( "Run", !running );
    87     gtk_statusbar_pop( GTK_STATUSBAR(win->statusbar), 1 );
    88     gtk_statusbar_push( GTK_STATUSBAR(win->statusbar), 1, running ? "Running" : "Stopped" );
    89 }
    91 void main_window_set_framerate( main_window_t win, float rate )
    92 {
    95 }
    97 void main_window_set_speed( main_window_t win, double speed )
    98 {
    99     char buf[32];
   101     snprintf( buf, 32, "Running (%2.4f%%)", speed );
   102     gtk_statusbar_pop( GTK_STATUSBAR(win->statusbar), 1 );
   103     gtk_statusbar_push( GTK_STATUSBAR(win->statusbar), 1, buf );
   106 }
   108 GtkWidget *main_window_get_renderarea( main_window_t win )
   109 {
   110     return win->video;
   111 }
   113 GtkWindow *main_window_get_frame( main_window_t win )
   114 {
   115     return GTK_WINDOW(win->window);
   116 }
.