-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinput_choice.h
32 lines (21 loc) · 980 Bytes
/
input_choice.h
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
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
typedef struct GInputChoice GInputChoice;
typedef struct Fl_Input_Choice Fl_Input_Choice;
typedef struct Fl_Input Fl_Input;
typedef struct Fl_Menu_Button Fl_Menu_Button;
extern GInputChoice *go_fltk_new_Input_Choice(int x, int y, int w, int h, const char *label);
extern void go_fltk_Input_Choice_clear(Fl_Input_Choice *c);
extern const char *go_fltk_Input_Choice_value(Fl_Input_Choice *c);
extern void go_fltk_Input_Choice_set_value(Fl_Input_Choice *c,
const char *label);
extern void go_fltk_Input_Choice_set_value_index(Fl_Input_Choice *c,
int index);
extern int go_fltk_Input_Choice_update_menubutton(Fl_Input_Choice* c);
extern Fl_Input *go_fltk_Input_Choice_input(Fl_Input_Choice *c);
extern Fl_Menu_Button *go_fltk_Input_Choice_menubutton(Fl_Input_Choice *c);
#ifdef __cplusplus
}
#endif