1.1 --- a/src/gui/gui.h Sat Mar 13 00:03:32 2004 +0000
1.2 +++ b/src/gui/gui.h Sat Aug 21 06:15:49 2004 +0000
1.7 +void init_gui(void);
1.8 +void update_gui(void);
1.10 void init_debug_win(GtkWidget *);
1.11 void open_file_dialog( void );
1.12 void update_mmr_win( void );
1.13 void init_mmr_win( void );
1.14 void update_registers( void );
1.15 void update_icount( void );
1.16 +void dump_win_update_all( void );
1.17 void set_disassembly_region( unsigned int page );
1.18 void set_disassembly_pc( unsigned int pc, gboolean select );
1.19 void jump_to_disassembly( unsigned int addr, gboolean select );
1.21 -extern GtkStyle *fixed_list_style;
1.22 -extern GdkColor clrNormal, clrChanged, clrError, clrWarn, clrPC;
1.23 +extern PangoFontDescription *fixed_list_font;
1.24 +extern GdkColor clrNormal, clrChanged, clrError, clrWarn,
1.25 + clrPC, clrDebug, clrTrace;
1.27 void mmr_open_win( void );
1.28 void mmr_close_win( void );
1.29 +uint32_t gtk_entry_get_hex_value( GtkEntry *entry, uint32_t defaultValue );
1.30 +void gtk_entry_set_hex_value( GtkEntry *entry, uint32_t value );