/************************************************************************/ /* KEGS: Apple //gs Emulator */ /* Copyright 2002 by Kent Dickey */ /* */ /* This code is covered by the GNU GPL */ /* */ /* The KEGS web page is kegs.sourceforge.net */ /* You may contact the author at: kadickey@alumni.princeton.edu */ /************************************************************************/ const char rcsid_protos_x_h[] = "@(#)$KmKId: protos_xdriver.h,v 1.19 2004-11-15 16:24:13-05 kentd Exp $"; /* END_HDR */ /* xdriver.c */ int main(int argc, char **argv); void x_dialog_create_kegs_conf(const char *str); int x_show_alert(int is_fatal, const char *str); void x_update_color(int col_num, int red, int green, int blue, word32 rgb); void x_update_physical_colormap(void); void show_xcolor_array(void); int my_error_handler(Display *display, XErrorEvent *ev); void xdriver_end(void); void show_colormap(char *str, Colormap cmap, int index1, int index2, int index3); void x_badpipe(int signum); void dev_video_init(void); Visual *x_try_find_visual(int depth, int screen_num, XVisualInfo **visual_list_ptr); void x_set_mask_and_shift(word32 x_mask, word32 *mask_ptr, int *shift_left_ptr, int *shift_right_ptr); int xhandle_shm_error(Display *display, XErrorEvent *event); void x_get_kimage(Kimage *kimage_ptr); int get_shm(Kimage *kimage_ptr); void get_ximage(Kimage *kimage_ptr); void x_redraw_status_lines(void); void x_push_kimage(Kimage *kimage_ptr, int destx, int desty, int srcx, int srcy, int width, int height); void x_push_done(void); int x_update_mouse(int raw_x, int raw_y, int button_states, int buttons_valid); void check_input_events(void); void x_hide_pointer(int do_hide); void handle_keysym(XEvent *xev_in); int x_keysym_to_a2code(int keysym, int is_up); void x_update_modifier_state(int state); void x_auto_repeat_on(int must); void x_auto_repeat_off(int must); void x_full_screen(int do_full);