imtk

view src/imtk.h @ 20:c7a7ddbe7714

half-arsed automatic layout
author John Tsiombikas <nuclear@siggraph.org>
date Sat, 30 Apr 2011 05:23:59 +0300
parents 737e9047d9c9
children 4c2b3e281409
line source
1 #ifndef IMTK_H_
2 #define IMTK_H_
4 #include <stdlib.h>
5 #include <limits.h>
7 #define IMUID (__LINE__ << 10)
8 #define IMUID_IDX(i) ((__LINE__ << 10) + ((i) << 1))
11 /* key/button state enum */
12 enum {
13 IMTK_UP,
14 IMTK_DOWN
15 };
17 enum {
18 IMTK_LEFT_BUTTON,
19 IMTK_MIDDLE_BUTTON,
20 IMTK_RIGHT_BUTTON
21 };
23 enum {
24 IMTK_TEXT_COLOR,
25 IMTK_TOP_COLOR,
26 IMTK_BOTTOM_COLOR,
27 IMTK_BEVEL_LIT_COLOR,
28 IMTK_BEVEL_SHAD_COLOR,
29 IMTK_CURSOR_COLOR,
30 IMTK_SELECTION_COLOR,
31 IMTK_CHECK_COLOR
32 };
34 enum {
35 IMTK_HORIZONTAL,
36 IMTK_VERTICAL
37 };
39 #define IMTK_FOCUS_BIT 0x100
40 #define IMTK_PRESS_BIT 0x200
41 #define IMTK_SEL_BIT 0x400
43 #define IMTK_AUTO INT_MIN
45 #ifdef __cplusplus
46 extern "C" {
47 #endif
50 void imtk_inp_key(int key, int state);
51 void imtk_inp_mouse(int bn, int state);
52 void imtk_inp_motion(int x, int y);
54 void imtk_set_viewport(int x, int y);
55 void imtk_get_viewport(int *width, int *height);
57 void imtk_post_redisplay(void);
59 void imtk_begin(void);
60 void imtk_end(void);
62 void imtk_label(const char *str, int x, int y);
63 int imtk_button(int id, const char *label, int x, int y);
64 int imtk_checkbox(int id, const char *label, int x, int y, int state);
65 void imtk_textbox(int id, char *textbuf, size_t buf_sz, int x, int y);
66 float imtk_slider(int id, float pos, float min, float max, int x, int y);
67 void imtk_progress(int id, float pos, int x, int y);
68 int imtk_listbox(int id, const char *list, int sel, int x, int y);
69 int imtk_radiogroup(int id, const char *list, int sel, int x, int y);
71 /* helper functions to create and destroy item lists for listboxes */
72 char *imtk_create_list(const char *first, ...);
73 void imtk_free_list(char *list);
75 /* automatic layout */
76 void imtk_layout_start(int x, int y, int spacing, int dir);
77 void imtk_layout_dir(int dir);
78 void imtk_layout_advance(int width, int height);
79 void imtk_layout_newline(void);
80 void imtk_layout_get_pos(int *x, int *y);
81 void imtk_layout_get_bounds(int *bbox);
83 /* defined in draw.c */
84 void imtk_set_color(unsigned int col, float r, float g, float b, float a);
85 float *imtk_get_color(unsigned int col);
86 void imtk_set_alpha(float a);
87 float imtk_get_alpha(void);
88 void imtk_set_bevel_width(float b);
89 float imtk_get_bevel_width(void);
90 void imtk_set_focus_factor(float fact);
91 float imtk_get_focus_factor(void);
92 void imtk_set_press_factor(float fact);
93 float imtk_get_press_factor(void);
95 #ifdef __cplusplus
96 }
97 #endif
99 #endif /* IMTK_H_ */