1 /* -*- Mode: C; tab-width: 2; indent-tabs-mode: t; c-basic-offset: 2 -*- */ 2 #ifndef _CANDWIN_H_ 3 #define _CANDWIN_H_ 4 5 typedef struct _CandidateWin CandidateWin; 6 7 struct _CandidateWin { 8 GtkWidget *window; 9 gulong destroy_handler; 10 }; 11 12 void candidate_window_show(IMJAContext *cn, gint selected); 13 gboolean candidate_window_is_shown(IMJAContext *cn); 14 void candidate_window_hide(IMJAContext* cn); 15 void candidate_window_destroy(IMJAContext* cn); 16 17 #endif 18 19