1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
/* gtkinternals.h: stuff internal to the GTK+ UI
Copyright (c) 2003-2005 Philip Kendall
$Id: gtkinternals.h 4020 2009-05-18 11:33:30Z fredm $
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Author contact information:
E-mail: philip-fuse@shadowmagic.org.uk
*/
#ifndef FUSE_GTKINTERNALS_H
#define FUSE_GTKINTERNALS_H
#include <gtk/gtk.h>
#include <libspectrum.h>
/*
* Display routines (gtkdisplay.c)
*/
/* The colour palette in use */
extern libspectrum_dword gtkdisplay_colours[ 16 ];
/*
* Keyboard routines (gtkkeyboard.c)
*/
int gtkkeyboard_keypress( GtkWidget *widget, GdkEvent *event,
gpointer data);
int gtkkeyboard_keyrelease( GtkWidget *widget, GdkEvent *event,
gpointer data);
int gtkkeyboard_release_all( GtkWidget *widget, GdkEvent *event,
gpointer data );
/*
* Mouse routines (gtkmouse.c)
*/
gboolean gtkmouse_position( GtkWidget*, GdkEventMotion*, gpointer );
gboolean gtkmouse_button( GtkWidget*, GdkEventButton*, gpointer);
/*
* General user interface routines (gtkui.c)
*/
extern GtkWidget *gtkui_window;
extern GtkWidget *gtkui_drawing_area;
void gtkui_destroy_widget_and_quit( GtkWidget *widget, gpointer data );
int gtkui_confirm( const char *string );
int gtkui_picture( const char *filename, int border );
extern void gtkui_popup_menu(void);
GtkAccelGroup* gtkstock_add_accel_group( GtkWidget *widget );
/* Set modifier=0 to use the first default accel key.
* Set modifier_alt=0 to use the second default accel key.
* For either, GDK_VoidSymbol means "no accel key".
*/
typedef struct gtkstock_button {
gchar *label;
GtkSignalFunc action; /* "clicked" func; data is actiondata. */
gpointer actiondata;
GtkSignalFunc destroy; /* "clicked" func; data is parent widget */
guint shortcut;
GdkModifierType modifier; /* primary shortcut */
guint shortcut_alt;
GdkModifierType modifier_alt; /* secondary shortcut */
} gtkstock_button;
/* GTK1: create a simple button with the given label.
* "gtk-" prefixes are stripped and are used to select default accel keys.
* GTK2: chooses between stock and normal based on "gtk-" prefix.
*
* Some stock labels are defined below for use with GTK1: their names are the
* same as in GTK2, but the strings are different.
*
* If the target widget is a GtkDialog, then created buttons are put in its
* action area.
*
* If the label begins with "!", then gtk_signal_connect_object, rather than
* gtk_signal_connect, is used to connect the action function.
*/
GtkWidget* gtkstock_create_button( GtkWidget *widget, GtkAccelGroup *accel,
const gtkstock_button *btn );
GtkAccelGroup*
gtkstock_create_buttons( GtkWidget *widget, GtkAccelGroup *accel,
const gtkstock_button *buttons, size_t count );
GtkAccelGroup* gtkstock_create_ok_cancel( GtkWidget *widget,
GtkAccelGroup *accel,
/* for OK button -> */ GtkSignalFunc action,
gpointer actiondata,
/* for both buttons -> */ GtkSignalFunc destroy );
GtkAccelGroup* gtkstock_create_close( GtkWidget *widget, GtkAccelGroup *accel,
GtkSignalFunc destroy,
gboolean esconly );
/* destroy==NULL => use DEFAULT_DESTROY */
#define DEFAULT_DESTROY ( GTK_SIGNAL_FUNC( gtkui_destroy_widget_and_quit ) )
GtkWidget *gtkstock_dialog_new( const gchar *title, GtkSignalFunc destroy );
typedef PangoFontDescription *gtkui_font;
int gtkui_get_monospaced_font( gtkui_font *font );
void gtkui_free_font( gtkui_font font );
void gtkui_set_font( GtkWidget *widget, gtkui_font font );
/*
* The menu data (menu_data.c)
*/
extern GtkItemFactoryEntry gtkui_menu_data[];
extern guint gtkui_menu_data_size;
/*
* The icon pixmaps (pixmaps.c)
*/
extern char *gtkpixmap_tape_inactive[];
extern char *gtkpixmap_tape_active[];
extern char *gtkpixmap_mdr_inactive[];
extern char *gtkpixmap_mdr_active[];
extern char *gtkpixmap_disk_inactive[];
extern char *gtkpixmap_disk_active[];
extern char *gtkpixmap_pause_inactive[];
extern char *gtkpixmap_pause_active[];
extern char *gtkpixmap_tape_marker[];
extern char *gtkpixmap_mouse_inactive[];
extern char *gtkpixmap_mouse_active[];
/*
* Statusbar routines (statusbar.c)
*/
int gtkstatusbar_create( GtkBox *parent );
int gtkstatusbar_set_visibility( int visible );
/*
* Scrolling for GtkCList widgets
*/
void gtkui_scroll_connect( GtkCList *clist, GtkAdjustment *adj );
/*
* Dialog box reset
*/
void gtkui_pokefinder_clear( void );
#endif /* #ifndef FUSE_GTKINTERNALS_H */
|