filename | src/gtkui/gtkui.h |
changeset | 1072:d82e04e6d497 |
prev | 1040:9e3e41eab2db |
next | 1109:700c5ab26a63 |
author | nkeynes |
date | Tue Jul 21 20:33:21 2009 +1000 (13 years ago) |
permissions | -rw-r--r-- |
last change | Heavy configuration management refactor - Configuration groups now take both an on_change event handler and a default keybinding handler, making most keybinding tasks quite simple - GUI configuration all merged into a unified model, drastically reducing the amount of GUI config code. Bonuses - OSX now has a hotkey preference pane - GTK keybinding editor is much more usable |
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@1072 | 39 | struct lxdream_config_group; /* Forward declaration */ |
nkeynes@1072 | 40 | |
nkeynes@435 | 41 | /** |
nkeynes@435 | 42 | * Construct and show the main window, returning an |
nkeynes@435 | 43 | * opaque pointer to the window. |
nkeynes@435 | 44 | */ |
nkeynes@455 | 45 | main_window_t main_window_new( const gchar *title, GtkWidget *menubar, |
nkeynes@736 | 46 | GtkWidget *toolbar, GtkAccelGroup *accel ); |
nkeynes@447 | 47 | GtkWindow *main_window_get_frame( main_window_t win ); |
nkeynes@435 | 48 | GtkWidget *main_window_get_renderarea( main_window_t win ); |
nkeynes@435 | 49 | void main_window_set_running( main_window_t win, gboolean running ); |
nkeynes@435 | 50 | void main_window_set_framerate( main_window_t win, float rate ); |
nkeynes@437 | 51 | void main_window_set_speed( main_window_t win, double speed ); |
nkeynes@486 | 52 | void main_window_set_fullscreen( main_window_t win, gboolean fullscreen ); |
nkeynes@608 | 53 | void main_window_set_use_grab( main_window_t win, gboolean grab ); |
nkeynes@837 | 54 | void main_window_update_title( main_window_t win ); |
nkeynes@1015 | 55 | void main_window_show_gui( main_window_t win, gboolean fullscreen ); |
nkeynes@435 | 56 | |
nkeynes@455 | 57 | debug_window_t debug_window_new( const gchar *title, GtkWidget *menubar, |
nkeynes@736 | 58 | GtkWidget *toolbar, GtkAccelGroup *accel ); |
nkeynes@435 | 59 | void debug_window_show( debug_window_t win, gboolean show ); |
nkeynes@435 | 60 | void debug_window_set_running( debug_window_t win, gboolean running ); |
nkeynes@435 | 61 | void debug_window_update(debug_window_t win); |
nkeynes@455 | 62 | void debug_window_single_step( debug_window_t data ); |
nkeynes@455 | 63 | void debug_window_set_oneshot_breakpoint( debug_window_t data, int row ); |
nkeynes@455 | 64 | void debug_window_toggle_breakpoint( debug_window_t data, int row ); |
nkeynes@435 | 65 | |
nkeynes@455 | 66 | |
nkeynes@455 | 67 | mmio_window_t mmio_window_new( const gchar *title ); |
nkeynes@450 | 68 | void mmio_window_show( mmio_window_t win, gboolean show ); |
nkeynes@480 | 69 | void mmio_window_update(mmio_window_t win); |
nkeynes@435 | 70 | |
nkeynes@457 | 71 | dump_window_t dump_window_new( const gchar *title ); |
nkeynes@480 | 72 | void dump_window_update_all(); |
nkeynes@455 | 73 | |
nkeynes@455 | 74 | void maple_dialog_run(); |
nkeynes@450 | 75 | void path_dialog_run(); |
nkeynes@1015 | 76 | void hotkeys_dialog_run(); |
nkeynes@450 | 77 | |
nkeynes@480 | 78 | void gtk_gui_update( void ); |
nkeynes@455 | 79 | main_window_t gtk_gui_get_main(); |
nkeynes@455 | 80 | debug_window_t gtk_gui_get_debugger(); |
nkeynes@455 | 81 | mmio_window_t gtk_gui_get_mmio(); |
nkeynes@480 | 82 | void gtk_gui_show_mmio(); |
nkeynes@464 | 83 | void gtk_gui_show_debugger(); |
nkeynes@455 | 84 | |
nkeynes@450 | 85 | /********************* Helper functions **********************/ |
nkeynes@450 | 86 | |
nkeynes@455 | 87 | typedef void (*gtk_dialog_done_fn)(GtkWidget *panel, gboolean isOK); |
nkeynes@455 | 88 | void gtk_gui_enable_action( const gchar *action, gboolean enabled ); |
nkeynes@455 | 89 | gint gtk_gui_run_property_dialog( const gchar *title, GtkWidget *panel, gtk_dialog_done_fn fn ); |
nkeynes@1072 | 90 | int gtk_configuration_panel_run( const gchar *title, struct lxdream_config_group *group ); |
nkeynes@480 | 91 | |
nkeynes@480 | 92 | typedef gboolean (*file_callback_t)( const gchar *filename ); |
nkeynes@1034 | 93 | gchar *open_file_dialog( const char *title, const char *pattern, const char *patname, |
nkeynes@1036 | 94 | int initial_dir_key ); |
nkeynes@1034 | 95 | gchar *save_file_dialog( const char *title, const char *pattern, const char *patname, |
nkeynes@1036 | 96 | int initial_dir_key ); |
nkeynes@1034 | 97 | void open_file_dialog_cb( const char *title, file_callback_t action, const char *pattern, const char *patname, |
nkeynes@1036 | 98 | int initial_dir_key ); |
nkeynes@1034 | 99 | void save_file_dialog_cb( const char *title, file_callback_t action, const char *pattern, const char *patname, |
nkeynes@1036 | 100 | int initial_dir_key ); |
nkeynes@608 | 101 | /** |
nkeynes@608 | 102 | * Extract the keyval of the key event if no modifier keys were pressed - |
nkeynes@608 | 103 | * in other words get the keyval of the key by itself. The other way around |
nkeynes@608 | 104 | * would be to use the hardware keysyms directly rather than the keyvals, |
nkeynes@608 | 105 | * but the mapping looks to be messier. |
nkeynes@608 | 106 | */ |
nkeynes@608 | 107 | uint16_t gtk_get_unmodified_keyval( GdkEventKey *event ); |
nkeynes@480 | 108 | |
nkeynes@477 | 109 | /** |
nkeynes@618 | 110 | * Map a hardware keycode (not keyval) to a modifier state mask. |
nkeynes@618 | 111 | * @param display The display (containing the modifier map) |
nkeynes@618 | 112 | * @param keycde The hardware keycode to map |
nkeynes@618 | 113 | * @return The modifier mask (eg GDK_CONTROL_MASK) or 0 if the keycode |
nkeynes@618 | 114 | * is not recognized as a modifier key. |
nkeynes@618 | 115 | */ |
nkeynes@618 | 116 | guint gdk_keycode_to_modifier( GdkDisplay *display, guint keycode ); |
nkeynes@618 | 117 | |
nkeynes@618 | 118 | /** |
nkeynes@477 | 119 | * Construct a new pixbuf that takes ownership of the frame buffer |
nkeynes@477 | 120 | */ |
nkeynes@480 | 121 | GdkPixbuf *gdk_pixbuf_new_from_frame_buffer( frame_buffer_t buffer ); |
nkeynes@477 | 122 | |
nkeynes@470 | 123 | void gdrom_menu_init(); |
nkeynes@470 | 124 | GtkWidget *gdrom_menu_new(); |
nkeynes@470 | 125 | |
nkeynes@669 | 126 | /******************** Video driver hook *********************/ |
nkeynes@435 | 127 | |
nkeynes@669 | 128 | GtkWidget *video_gtk_create_drawable(); |
nkeynes@435 | 129 | |
nkeynes@435 | 130 | /******************* Callback declarations *******************/ |
nkeynes@435 | 131 | |
nkeynes@543 | 132 | void load_binary_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@435 | 133 | void mount_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@435 | 134 | void reset_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@435 | 135 | void pause_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@435 | 136 | void resume_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@435 | 137 | void load_state_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@435 | 138 | void save_state_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@1040 | 139 | void quick_load_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@1040 | 140 | void quick_save_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@1040 | 141 | void quick_state_action_callback( GtkRadioAction *action, GtkRadioAction *current, gpointer user_data); |
nkeynes@435 | 142 | void about_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@435 | 143 | void exit_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@435 | 144 | |
nkeynes@447 | 145 | void path_settings_callback( GtkAction *action, gpointer user_data); |
nkeynes@435 | 146 | void audio_settings_callback( GtkAction *action, gpointer user_data); |
nkeynes@455 | 147 | void maple_settings_callback( GtkAction *action, gpointer user_data); |
nkeynes@435 | 148 | void network_settings_callback( GtkAction *action, gpointer user_data); |
nkeynes@435 | 149 | void video_settings_callback( GtkAction *action, gpointer user_data); |
nkeynes@1015 | 150 | void hotkey_settings_callback( GtkAction *action, gpointer user_data); |
nkeynes@435 | 151 | void fullscreen_toggle_callback( GtkToggleAction *action, gpointer user_data); |
nkeynes@435 | 152 | |
nkeynes@455 | 153 | void debugger_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@455 | 154 | void debug_memory_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@455 | 155 | void debug_mmio_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@455 | 156 | void save_scene_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@455 | 157 | void debug_step_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@455 | 158 | void debug_runto_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@455 | 159 | void debug_breakpoint_action_callback( GtkAction *action, gpointer user_data); |
nkeynes@455 | 160 | |
nkeynes@464 | 161 | void gdrom_open_direct_callback( GtkWidget *widget, gpointer user_data ); |
nkeynes@464 | 162 | |
nkeynes@435 | 163 | /*************** Constant colour/font values *****************/ |
nkeynes@435 | 164 | extern PangoFontDescription *gui_fixed_font; |
nkeynes@435 | 165 | extern GdkColor gui_colour_normal, gui_colour_changed, gui_colour_error; |
nkeynes@435 | 166 | extern GdkColor gui_colour_warn, gui_colour_pc, gui_colour_debug; |
nkeynes@435 | 167 | extern GdkColor gui_colour_trace, gui_colour_break, gui_colour_temp_break; |
nkeynes@435 | 168 | extern GdkColor gui_colour_white; |
nkeynes@435 | 169 | |
nkeynes@736 | 170 | #ifdef __cplusplus |
nkeynes@736 | 171 | } |
nkeynes@736 | 172 | #endif |
nkeynes@736 | 173 | |
nkeynes@736 | 174 | #endif /* lxdream_gtkui_H */ |
.