Search
lxdream.org :: lxdream/src/gui/gui.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/gui/gui.h
changeset 2:42349f6ea216
prev1:eea311cfd33e
next9:2784c7660165
author nkeynes
date Sat Oct 02 05:49:23 2004 +0000 (19 years ago)
permissions -rw-r--r--
last change More work on the arm core
view annotate diff log raw
     1 /*
     2  * Gui related code
     3  */
     4 #ifndef dream_gui_H
     5 #define dream_gui_H 1
     7 #include <gnome.h>
     8 #include "dream.h"
    10 #ifdef __cplusplus
    11 extern "C" {
    12 #if 0
    13 }
    14 #endif
    15 #endif
    17 void init_gui(void);
    18 void update_gui(void);
    20 void init_debug_win(GtkWidget *);
    21 void open_file_dialog( void );
    22 void update_mmr_win( void );
    23 void init_mmr_win( void );
    24 void update_registers( void );
    25 void update_icount( void );
    26 void dump_win_update_all( void );
    27 void set_disassembly_region( unsigned int page );
    28 void set_disassembly_pc( unsigned int pc, gboolean select );
    29 void jump_to_disassembly( unsigned int addr, gboolean select );
    31 extern PangoFontDescription *fixed_list_font;
    32 extern GdkColor clrNormal, clrChanged, clrError, clrWarn,
    33     clrPC, clrDebug, clrTrace;
    35 void mmr_open_win( void );
    36 void mmr_close_win( void );
    37 uint32_t gtk_entry_get_hex_value( GtkEntry *entry, uint32_t defaultValue );
    38 void gtk_entry_set_hex_value( GtkEntry *entry, uint32_t value );
    40 #ifdef __cplusplus
    41 }
    42 #endif
    43 #endif
.