Search
lxdream.org :: lxdream/src/gui/gui.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/gui/gui.h
changeset 167:71c0cc416a64
prev45:f99236f0632e
next392:39e596b3b6dd
author nkeynes
date Tue Dec 19 09:51:35 2006 +0000 (17 years ago)
permissions -rw-r--r--
last change First cut of port 576890 (sysreset) and ide enable/disable
view annotate diff log raw
     1 /**
     2  * $Id: gui.h,v 1.15 2006-06-19 11:00:42 nkeynes Exp $
     3  * 
     4  * General GUI definitions
     5  *
     6  * Copyright (c) 2005 Nathan Keynes.
     7  *
     8  * This program is free software; you can redistribute it and/or modify
     9  * it under the terms of the GNU General Public License as published by
    10  * the Free Software Foundation; either version 2 of the License, or
    11  * (at your option) any later version.
    12  *
    13  * This program is distributed in the hope that it will be useful,
    14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    16  * GNU General Public License for more details.
    17  */
    19 #ifndef dream_gui_H
    20 #define dream_gui_H 1
    22 #include <gnome.h>
    23 #include "dream.h"
    24 #include "cpu.h"
    25 #include "gui/interface.h"
    27 #ifdef __cplusplus
    28 extern "C" {
    29 #if 0
    30 }
    31 #endif
    32 #endif
    34 void gtk_gui_init(void);
    35 void gtk_gui_update(void);
    36 extern struct dreamcast_module gtk_gui_module;
    38 typedef struct debug_info_struct *debug_info_t;
    39 extern debug_info_t main_debug;
    41 typedef int (*file_callback_t)( const gchar *filename );
    42 void open_file_dialog( char *title, file_callback_t file_handler, char *pattern, char *patname, const gchar *initial_dir );
    43 void save_file_dialog( char *title, file_callback_t file_handler, char *pattern, char *patname, const gchar *initial_dir );
    45 void update_mmr_win( void );
    46 void init_mmr_win( void );
    48 debug_info_t init_debug_win(GtkWidget *, const cpu_desc_t *cpu );
    49 debug_info_t get_debug_info(GtkWidget *widget);
    50 void update_registers( debug_info_t debug );
    51 void update_icount( debug_info_t debug );
    52 void dump_win_update_all();
    53 void set_disassembly_region( debug_info_t debug, unsigned int page );
    54 void set_disassembly_pc( debug_info_t debug, unsigned int pc, gboolean select );
    55 void set_disassembly_cpu( debug_info_t debug, const gchar *cpu_name );
    56 void jump_to_disassembly( debug_info_t debug, unsigned int addr, gboolean select );
    57 void jump_to_pc( debug_info_t debug, gboolean select );
    58 void debug_win_set_running( debug_info_t debug, gboolean isRunning );
    59 void debug_win_single_step( debug_info_t debug );
    60 void debug_win_toggle_breakpoint( debug_info_t debug, int row );
    61 void debug_win_set_oneshot_breakpoint( debug_info_t debug, int row );
    62 uint32_t row_to_address( debug_info_t debug, int row );
    63 int address_to_row( debug_info_t debug, uint32_t address );
    65 extern PangoFontDescription *fixed_list_font;
    66 extern GdkColor clrNormal, clrChanged, clrError, clrWarn,
    67     clrPC, clrDebug, clrTrace, clrBreak, clrTempBreak, clrWhite;
    69 void mmr_open_win( void );
    70 void mmr_close_win( void );
    71 uint32_t gtk_entry_get_hex_value( GtkEntry *entry, uint32_t defaultValue );
    72 void gtk_entry_set_hex_value( GtkEntry *entry, uint32_t value );
    74 #ifdef __cplusplus
    75 }
    76 #endif
    77 #endif
.