Search
lxdream.org :: lxdream/src/gui/gui.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/gui/gui.h
changeset 30:89b30313d757
prev28:81c206f59dc7
next35:21a4be098304
author nkeynes
date Sun Dec 25 05:57:00 2005 +0000 (18 years ago)
permissions -rw-r--r--
last change Change timeslice to nanoseconds (was microseconds)
Generize single step (now steps through active CPU)
Add lots of header blocks
view annotate diff log raw
     1 /**
     2  * $Id: gui.h,v 1.11 2005-12-25 05:57:00 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 "modules.h"
    26 #include "gui/interface.h"
    28 #ifdef __cplusplus
    29 extern "C" {
    30 #if 0
    31 }
    32 #endif
    33 #endif
    35 void gtk_gui_init(void);
    36 void gtk_gui_update(void);
    37 extern struct dreamcast_module gtk_gui_module;
    39 typedef struct debug_info_struct *debug_info_t;
    40 extern debug_info_t main_debug;
    42 typedef int (*file_callback_t)( const gchar *filename );
    43 void open_file_dialog( char *title, file_callback_t file_handler, char *pattern, char *patname );
    44 void save_file_dialog( char *title, file_callback_t file_handler, char *pattern, char *patname );
    46 void update_mmr_win( void );
    47 void init_mmr_win( void );
    49 debug_info_t init_debug_win(GtkWidget *, const cpu_desc_t *cpu );
    50 debug_info_t get_debug_info(GtkWidget *widget);
    51 void update_registers( debug_info_t debug );
    52 void update_icount( debug_info_t debug );
    53 void dump_win_update_all();
    54 void set_disassembly_region( debug_info_t debug, unsigned int page );
    55 void set_disassembly_pc( debug_info_t debug, unsigned int pc, gboolean select );
    56 void set_disassembly_cpu( debug_info_t debug, const gchar *cpu_name );
    57 void jump_to_disassembly( debug_info_t debug, unsigned int addr, gboolean select );
    58 void jump_to_pc( debug_info_t debug, gboolean select );
    59 void debug_win_set_running( debug_info_t debug, gboolean isRunning );
    60 void debug_win_single_step( debug_info_t debug );
    61 uint32_t row_to_address( debug_info_t debug, int row );
    62 int address_to_row( debug_info_t debug, uint32_t address );
    64 extern PangoFontDescription *fixed_list_font;
    65 extern GdkColor clrNormal, clrChanged, clrError, clrWarn,
    66     clrPC, clrDebug, clrTrace;
    68 void mmr_open_win( void );
    69 void mmr_close_win( void );
    70 uint32_t gtk_entry_get_hex_value( GtkEntry *entry, uint32_t defaultValue );
    71 void gtk_entry_set_hex_value( GtkEntry *entry, uint32_t value );
    73 #ifdef __cplusplus
    74 }
    75 #endif
    76 #endif
.