int d_aphoton_clear_proc (int msg, DIALOG *d, int c) { if (msg == MSG_DRAW) { clear_to_color (screen, aphoton_bg_color); return D_O_K; } return d_clear_proc (msg, d, c); }
int d_agtk_clear_proc (int msg, DIALOG *d, int c) { if (msg == MSG_DRAW) { clear_to_color (gui_get_screen(), agtk_bg_color); return D_O_K; } return d_clear_proc (msg, d, c); }
int d_abitmap_clear_proc (int msg, DIALOG *d, int c) { if (msg == MSG_DRAW) { int s = get_state (d); abitmap_draw_bmp (gui_get_screen(), &theme->bitmaps[B_CLEAR][s], 0, 0, SCREEN_W, SCREEN_H); return D_O_K; } return d_clear_proc (msg, d, c); }