Search
lxdream.org :: lxdream/src/gui/gtkui.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/gui/gtkui.h
changeset 455:3080881d00d4
prev450:207461e79f21
next457:af605fd32c0b
author nkeynes
date Sun Oct 21 05:21:35 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change More GUI WIP
file annotate diff log raw
nkeynes@435
     1
/**
nkeynes@455
     2
 * $Id: gtkui.h,v 1.5 2007-10-21 05:21:35 nkeynes Exp $
nkeynes@435
     3
 *
nkeynes@435
     4
 * Core GTK-based user interface
nkeynes@435
     5
 *
nkeynes@435
     6
 * Copyright (c) 2005 Nathan Keynes.
nkeynes@435
     7
 *
nkeynes@435
     8
 * This program is free software; you can redistribute it and/or modify
nkeynes@435
     9
 * it under the terms of the GNU General Public License as published by
nkeynes@435
    10
 * the Free Software Foundation; either version 2 of the License, or
nkeynes@435
    11
 * (at your option) any later version.
nkeynes@435
    12
 *
nkeynes@435
    13
 * This program is distributed in the hope that it will be useful,
nkeynes@435
    14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
nkeynes@435
    15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
nkeynes@435
    16
 * GNU General Public License for more details.
nkeynes@435
    17
 */
nkeynes@435
    18
nkeynes@435
    19
#ifndef __lxdream_gtkui_H
nkeynes@435
    20
#define __lxdream_gtkui_H
nkeynes@435
    21
nkeynes@435
    22
#include <gtk/gtk.h>
nkeynes@435
    23
#include "gui.h"
nkeynes@435
    24
#include "cpu.h"
nkeynes@435
    25
nkeynes@435
    26
/********************* Top-level windows *********************/
nkeynes@435
    27
nkeynes@435
    28
typedef struct main_window_info *main_window_t;
nkeynes@435
    29
typedef struct debug_window_info *debug_window_t;
nkeynes@435
    30
typedef struct mmio_window_info *mmio_window_t;
nkeynes@435
    31
nkeynes@435
    32
/**
nkeynes@435
    33
 * Construct and show the main window, returning an 
nkeynes@435
    34
 * opaque pointer to the window.
nkeynes@435
    35
 */
nkeynes@455
    36
main_window_t main_window_new( const gchar *title, GtkWidget *menubar, 
nkeynes@455
    37
			       GtkWidget *toolbar, GtkAccelGroup *accel );
nkeynes@447
    38
GtkWindow *main_window_get_frame( main_window_t win );
nkeynes@435
    39
GtkWidget *main_window_get_renderarea( main_window_t win );
nkeynes@435
    40
void main_window_set_running( main_window_t win, gboolean running );
nkeynes@435
    41
void main_window_set_framerate( main_window_t win, float rate );
nkeynes@437
    42
void main_window_set_speed( main_window_t win, double speed );
nkeynes@435
    43
nkeynes@455
    44
debug_window_t debug_window_new( const gchar *title, GtkWidget *menubar,
nkeynes@455
    45
				 GtkWidget *toolbar, GtkAccelGroup *accel );
nkeynes@435
    46
void debug_window_show( debug_window_t win, gboolean show );
nkeynes@435
    47
void debug_window_set_running( debug_window_t win, gboolean running );
nkeynes@435
    48
void debug_window_update(debug_window_t win);
nkeynes@455
    49
void debug_window_single_step( debug_window_t data );
nkeynes@455
    50
void debug_window_set_oneshot_breakpoint( debug_window_t data, int row );
nkeynes@455
    51
void debug_window_toggle_breakpoint( debug_window_t data, int row );
nkeynes@435
    52
nkeynes@455
    53
nkeynes@455
    54
mmio_window_t mmio_window_new( const gchar *title );
nkeynes@450
    55
void mmio_window_show( mmio_window_t win, gboolean show );
nkeynes@435
    56
nkeynes@455
    57
void dump_window_new( const gchar *title );
nkeynes@455
    58
nkeynes@455
    59
void maple_dialog_run();
nkeynes@450
    60
void path_dialog_run();
nkeynes@450
    61
nkeynes@455
    62
main_window_t gtk_gui_get_main();
nkeynes@455
    63
debug_window_t gtk_gui_get_debugger();
nkeynes@455
    64
mmio_window_t gtk_gui_get_mmio();
nkeynes@455
    65
nkeynes@450
    66
/********************* Helper functions **********************/
nkeynes@450
    67
nkeynes@455
    68
typedef void (*gtk_dialog_done_fn)(GtkWidget *panel, gboolean isOK);
nkeynes@455
    69
void gtk_gui_enable_action( const gchar *action, gboolean enabled );
nkeynes@455
    70
gint gtk_gui_run_property_dialog( const gchar *title, GtkWidget *panel, gtk_dialog_done_fn fn );
nkeynes@435
    71
nkeynes@435
    72
/******************** Video driver hooks *********************/
nkeynes@435
    73
nkeynes@435
    74
GtkWidget *gtk_gui_get_renderarea();
nkeynes@435
    75
nkeynes@435
    76
/******************* Callback declarations *******************/
nkeynes@435
    77
nkeynes@435
    78
void mount_action_callback( GtkAction *action, gpointer user_data);
nkeynes@435
    79
void reset_action_callback( GtkAction *action, gpointer user_data);
nkeynes@435
    80
void pause_action_callback( GtkAction *action, gpointer user_data);
nkeynes@435
    81
void resume_action_callback( GtkAction *action, gpointer user_data);
nkeynes@435
    82
void load_state_action_callback( GtkAction *action, gpointer user_data);
nkeynes@435
    83
void save_state_action_callback( GtkAction *action, gpointer user_data);
nkeynes@435
    84
void about_action_callback( GtkAction *action, gpointer user_data);
nkeynes@435
    85
void exit_action_callback( GtkAction *action, gpointer user_data);
nkeynes@435
    86
nkeynes@447
    87
void path_settings_callback( GtkAction *action, gpointer user_data);
nkeynes@435
    88
void audio_settings_callback( GtkAction *action, gpointer user_data);
nkeynes@455
    89
void maple_settings_callback( GtkAction *action, gpointer user_data);
nkeynes@435
    90
void network_settings_callback( GtkAction *action, gpointer user_data);
nkeynes@435
    91
void video_settings_callback( GtkAction *action, gpointer user_data);
nkeynes@435
    92
void fullscreen_toggle_callback( GtkToggleAction *action, gpointer user_data);
nkeynes@435
    93
nkeynes@455
    94
void debugger_action_callback( GtkAction *action, gpointer user_data);
nkeynes@455
    95
void debug_memory_action_callback( GtkAction *action, gpointer user_data);
nkeynes@455
    96
void debug_mmio_action_callback( GtkAction *action, gpointer user_data);
nkeynes@455
    97
void save_scene_action_callback( GtkAction *action, gpointer user_data);
nkeynes@455
    98
void debug_step_action_callback( GtkAction *action, gpointer user_data);
nkeynes@455
    99
void debug_runto_action_callback( GtkAction *action, gpointer user_data);
nkeynes@455
   100
void debug_breakpoint_action_callback( GtkAction *action, gpointer user_data);
nkeynes@455
   101
nkeynes@435
   102
/*************** Constant colour/font values *****************/
nkeynes@435
   103
extern PangoFontDescription *gui_fixed_font;
nkeynes@435
   104
extern GdkColor gui_colour_normal, gui_colour_changed, gui_colour_error;
nkeynes@435
   105
extern GdkColor gui_colour_warn, gui_colour_pc, gui_colour_debug;
nkeynes@435
   106
extern GdkColor gui_colour_trace, gui_colour_break, gui_colour_temp_break;
nkeynes@435
   107
extern GdkColor gui_colour_white;
nkeynes@435
   108
nkeynes@435
   109
#endif /* __lxdream_gtkui_H */
.