Search
lxdream.org :: lxdream/src/gtkui/gtkui.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/gtkui/gtkui.h
changeset 837:4eae2ddccf9c
prev755:ab873907b00e
next887:8b3ee741c9d7
author nkeynes
date Thu Aug 28 01:39:51 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Extract the disc title (where available) and display in the title bar
file annotate diff log raw
nkeynes@435
     1
/**
nkeynes@561
     2
 * $Id$
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@736
    19
#ifndef lxdream_gtkui_H
nkeynes@736
    20
#define lxdream_gtkui_H 1
nkeynes@435
    21
nkeynes@508
    22
#include "lxdream.h"
nkeynes@435
    23
#include <gtk/gtk.h>
nkeynes@755
    24
#include "gettext.h"
nkeynes@435
    25
#include "gui.h"
nkeynes@435
    26
#include "cpu.h"
nkeynes@435
    27
nkeynes@736
    28
#ifdef __cplusplus
nkeynes@736
    29
extern "C" {
nkeynes@736
    30
#endif
nkeynes@736
    31
nkeynes@435
    32
/********************* Top-level windows *********************/
nkeynes@435
    33
nkeynes@435
    34
typedef struct main_window_info *main_window_t;
nkeynes@435
    35
typedef struct debug_window_info *debug_window_t;
nkeynes@435
    36
typedef struct mmio_window_info *mmio_window_t;
nkeynes@457
    37
typedef struct dump_window_info *dump_window_t;
nkeynes@435
    38
nkeynes@435
    39
/**
nkeynes@435
    40
 * Construct and show the main window, returning an 
nkeynes@435
    41
 * opaque pointer to the window.
nkeynes@435
    42
 */
nkeynes@455
    43
main_window_t main_window_new( const gchar *title, GtkWidget *menubar, 
nkeynes@736
    44
                               GtkWidget *toolbar, GtkAccelGroup *accel );
nkeynes@447
    45
GtkWindow *main_window_get_frame( main_window_t win );
nkeynes@435
    46
GtkWidget *main_window_get_renderarea( main_window_t win );
nkeynes@435
    47
void main_window_set_running( main_window_t win, gboolean running );
nkeynes@435
    48
void main_window_set_framerate( main_window_t win, float rate );
nkeynes@437
    49
void main_window_set_speed( main_window_t win, double speed );
nkeynes@486
    50
void main_window_set_fullscreen( main_window_t win, gboolean fullscreen );
nkeynes@608
    51
void main_window_set_use_grab( main_window_t win, gboolean grab );
nkeynes@837
    52
void main_window_update_title( main_window_t win );
nkeynes@435
    53
nkeynes@455
    54
debug_window_t debug_window_new( const gchar *title, GtkWidget *menubar,
nkeynes@736
    55
                                 GtkWidget *toolbar, GtkAccelGroup *accel );
nkeynes@435
    56
void debug_window_show( debug_window_t win, gboolean show );
nkeynes@435
    57
void debug_window_set_running( debug_window_t win, gboolean running );
nkeynes@435
    58
void debug_window_update(debug_window_t win);
nkeynes@455
    59
void debug_window_single_step( debug_window_t data );
nkeynes@455
    60
void debug_window_set_oneshot_breakpoint( debug_window_t data, int row );
nkeynes@455
    61
void debug_window_toggle_breakpoint( debug_window_t data, int row );
nkeynes@435
    62
nkeynes@455
    63
nkeynes@455
    64
mmio_window_t mmio_window_new( const gchar *title );
nkeynes@450
    65
void mmio_window_show( mmio_window_t win, gboolean show );
nkeynes@480
    66
void mmio_window_update(mmio_window_t win);
nkeynes@435
    67
nkeynes@457
    68
dump_window_t dump_window_new( const gchar *title );
nkeynes@480
    69
void dump_window_update_all();
nkeynes@455
    70
nkeynes@455
    71
void maple_dialog_run();
nkeynes@450
    72
void path_dialog_run();
nkeynes@450
    73
nkeynes@480
    74
void gtk_gui_update( void );
nkeynes@455
    75
main_window_t gtk_gui_get_main();
nkeynes@455
    76
debug_window_t gtk_gui_get_debugger();
nkeynes@455
    77
mmio_window_t gtk_gui_get_mmio();
nkeynes@480
    78
void gtk_gui_show_mmio();
nkeynes@464
    79
void gtk_gui_show_debugger();
nkeynes@455
    80
nkeynes@450
    81
/********************* Helper functions **********************/
nkeynes@450
    82
nkeynes@455
    83
typedef void (*gtk_dialog_done_fn)(GtkWidget *panel, gboolean isOK);
nkeynes@455
    84
void gtk_gui_enable_action( const gchar *action, gboolean enabled );
nkeynes@455
    85
gint gtk_gui_run_property_dialog( const gchar *title, GtkWidget *panel, gtk_dialog_done_fn fn );
nkeynes@435
    86
nkeynes@480
    87
nkeynes@480
    88
typedef gboolean (*file_callback_t)( const gchar *filename );
nkeynes@480
    89
void open_file_dialog( char *title, file_callback_t action, char *pattern, char *patname,
nkeynes@736
    90
                       gchar const *initial_dir );
nkeynes@608
    91
/**
nkeynes@608
    92
 * Extract the keyval of the key event if no modifier keys were pressed -
nkeynes@608
    93
 * in other words get the keyval of the key by itself. The other way around
nkeynes@608
    94
 * would be to use the hardware keysyms directly rather than the keyvals,
nkeynes@608
    95
 * but the mapping looks to be messier.
nkeynes@608
    96
 */
nkeynes@608
    97
uint16_t gtk_get_unmodified_keyval( GdkEventKey *event );
nkeynes@480
    98
nkeynes@477
    99
/**
nkeynes@618
   100
 * Map a hardware keycode (not keyval) to a modifier state mask.
nkeynes@618
   101
 * @param display The display (containing the modifier map)
nkeynes@618
   102
 * @param keycde The hardware keycode to map
nkeynes@618
   103
 * @return The modifier mask (eg GDK_CONTROL_MASK) or 0 if the keycode
nkeynes@618
   104
 * is not recognized as a modifier key.
nkeynes@618
   105
 */
nkeynes@618
   106
guint gdk_keycode_to_modifier( GdkDisplay *display, guint keycode );
nkeynes@618
   107
nkeynes@618
   108
/**
nkeynes@630
   109
 * Return an absolute path for the given input path, as a newly allocated
nkeynes@630
   110
 * string. If the input path is already absolute, the returned string will
nkeynes@630
   111
 * be identical to the input string.
nkeynes@630
   112
 */
nkeynes@630
   113
gchar *get_absolute_path( const gchar *path );
nkeynes@630
   114
nkeynes@630
   115
/**
nkeynes@477
   116
 * Construct a new pixbuf that takes ownership of the frame buffer
nkeynes@477
   117
 */
nkeynes@480
   118
GdkPixbuf *gdk_pixbuf_new_from_frame_buffer( frame_buffer_t buffer );
nkeynes@477
   119
nkeynes@470
   120
void gdrom_menu_init();
nkeynes@470
   121
GtkWidget *gdrom_menu_new();
nkeynes@470
   122
nkeynes@669
   123
/******************** Video driver hook *********************/
nkeynes@435
   124
nkeynes@669
   125
GtkWidget *video_gtk_create_drawable();
nkeynes@435
   126
nkeynes@435
   127
/******************* Callback declarations *******************/
nkeynes@435
   128
nkeynes@543
   129
void load_binary_action_callback( GtkAction *action, gpointer user_data);
nkeynes@435
   130
void mount_action_callback( GtkAction *action, gpointer user_data);
nkeynes@435
   131
void reset_action_callback( GtkAction *action, gpointer user_data);
nkeynes@435
   132
void pause_action_callback( GtkAction *action, gpointer user_data);
nkeynes@435
   133
void resume_action_callback( GtkAction *action, gpointer user_data);
nkeynes@435
   134
void load_state_action_callback( GtkAction *action, gpointer user_data);
nkeynes@435
   135
void save_state_action_callback( GtkAction *action, gpointer user_data);
nkeynes@435
   136
void about_action_callback( GtkAction *action, gpointer user_data);
nkeynes@435
   137
void exit_action_callback( GtkAction *action, gpointer user_data);
nkeynes@435
   138
nkeynes@447
   139
void path_settings_callback( GtkAction *action, gpointer user_data);
nkeynes@435
   140
void audio_settings_callback( GtkAction *action, gpointer user_data);
nkeynes@455
   141
void maple_settings_callback( GtkAction *action, gpointer user_data);
nkeynes@435
   142
void network_settings_callback( GtkAction *action, gpointer user_data);
nkeynes@435
   143
void video_settings_callback( GtkAction *action, gpointer user_data);
nkeynes@435
   144
void fullscreen_toggle_callback( GtkToggleAction *action, gpointer user_data);
nkeynes@435
   145
nkeynes@455
   146
void debugger_action_callback( GtkAction *action, gpointer user_data);
nkeynes@455
   147
void debug_memory_action_callback( GtkAction *action, gpointer user_data);
nkeynes@455
   148
void debug_mmio_action_callback( GtkAction *action, gpointer user_data);
nkeynes@455
   149
void save_scene_action_callback( GtkAction *action, gpointer user_data);
nkeynes@455
   150
void debug_step_action_callback( GtkAction *action, gpointer user_data);
nkeynes@455
   151
void debug_runto_action_callback( GtkAction *action, gpointer user_data);
nkeynes@455
   152
void debug_breakpoint_action_callback( GtkAction *action, gpointer user_data);
nkeynes@455
   153
nkeynes@464
   154
void gdrom_open_direct_callback( GtkWidget *widget, gpointer user_data );
nkeynes@464
   155
nkeynes@435
   156
/*************** Constant colour/font values *****************/
nkeynes@435
   157
extern PangoFontDescription *gui_fixed_font;
nkeynes@435
   158
extern GdkColor gui_colour_normal, gui_colour_changed, gui_colour_error;
nkeynes@435
   159
extern GdkColor gui_colour_warn, gui_colour_pc, gui_colour_debug;
nkeynes@435
   160
extern GdkColor gui_colour_trace, gui_colour_break, gui_colour_temp_break;
nkeynes@435
   161
extern GdkColor gui_colour_white;
nkeynes@435
   162
nkeynes@736
   163
#ifdef __cplusplus
nkeynes@736
   164
}
nkeynes@736
   165
#endif
nkeynes@736
   166
nkeynes@736
   167
#endif /* lxdream_gtkui_H */
.