aboutsummaryrefslogtreecommitdiff
path: root/body/c_fl_static.h
blob: f39e5574b634a392739c399f59441d7d3a885d68 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136


//  Programmed by Jedidiah Barber
//  Released into the public domain


#ifndef FL_STATIC_GUARD
#define FL_STATIC_GUARD


extern "C" void fl_static_box_draw_marshal(void * f, int x, int y, int w, int h, unsigned int t);


extern "C" const char * const fl_help_usage_string_ptr;


extern "C" int fl_static_arg(int c, void * v, int &i);
extern "C" void fl_static_args(int c, void * v);
extern "C" int fl_static_args2(int c, void * v, int &i, void * h);


extern "C" int fl_static_add_awake_handler(void * h, void * f);
extern "C" int fl_static_get_awake_handler(void * &h, void * &f);
extern "C" int fl_static_awake2(void * h, void * f);
extern "C" void fl_static_awake(void * msg);
extern "C" void fl_static_lock();
extern "C" void fl_static_unlock();


extern "C" void fl_static_add_check(void * h, void * f);
extern "C" int fl_static_has_check(void * h, void * f);
extern "C" void fl_static_remove_check(void * h, void * f);


extern "C" void fl_static_add_timeout(double s, void * h, void * f);
extern "C" int fl_static_has_timeout(void * h, void * f);
extern "C" void fl_static_remove_timeout(void * h, void * f);
extern "C" void fl_static_repeat_timeout(double s, void * h, void * f);


extern "C" void fl_static_add_clipboard_notify(void * h, void * f);
extern "C" void fl_static_remove_clipboard_notify(void * h);


extern "C" void fl_static_add_fd(int d, void * h, void * f);
extern "C" void fl_static_add_fd2(int d, int m, void * h, void * f);
extern "C" void fl_static_remove_fd(int d);
extern "C" void fl_static_remove_fd2(int d, int m);


extern "C" void fl_static_add_idle(void * h, void * f);
extern "C" int fl_static_has_idle(void * h, void * f);
extern "C" void fl_static_remove_idle(void * h, void * f);


extern "C" unsigned int fl_static_get_color2(unsigned int c);
extern "C" void fl_static_get_color(unsigned int c,
    unsigned char &r, unsigned char &g, unsigned char &b);
extern "C" void fl_static_set_color2(unsigned int t, unsigned int f);
extern "C" void fl_static_set_color(unsigned int c,
    unsigned char r, unsigned char g, unsigned char b);
extern "C" void fl_static_free_color(unsigned int c, int b);
extern "C" unsigned int fl_static_get_box_color(unsigned int t);
extern "C" void fl_static_set_box_color(unsigned int t);
extern "C" void fl_static_own_colormap();
extern "C" void fl_static_foreground(unsigned int r, unsigned int g, unsigned int b);
extern "C" void fl_static_background(unsigned int r, unsigned int g, unsigned int b);
extern "C" void fl_static_background2(unsigned int r, unsigned int g, unsigned int b);
extern "C" void fl_static_get_system_colors();


extern "C" const char * fl_static_get_font(int f);
extern "C" const char * fl_static_get_font_name(int f);
extern "C" void fl_static_set_font(int t, int f);
extern "C" void fl_static_set_font2(int t, char * s);
extern "C" int fl_static_get_font_sizes(int f, int * &a);
extern "C" int fl_static_font_size_array_get(int * a, int i);
extern "C" int fl_static_set_fonts();


extern "C" int fl_static_box_dh(int b);
extern "C" int fl_static_box_dw(int b);
extern "C" int fl_static_box_dx(int b);
extern "C" int fl_static_box_dy(int b);
extern "C" void * fl_static_get_boxtype(int t);
extern "C" void fl_static_set_boxtype(int t, int f);
extern "C" void fl_static_set_boxtype2(int t, void * f,
    unsigned char dx, unsigned char dy, unsigned char dw, unsigned char dh);
extern "C" int fl_static_draw_box_active();


extern "C" void fl_static_set_labeltype(int k, void * d, void * m);


extern "C" void fl_static_copy(const char * t, int l, int k);
extern "C" void fl_static_paste(void * r, int s);
extern "C" void fl_static_selection(void * o, char * t, int l);
extern "C" int fl_static_clipboard_contains(const char * k);


extern "C" int fl_static_dnd();
extern "C" int fl_static_get_dnd_text_ops();
extern "C" void fl_static_set_dnd_text_ops(int t);


extern "C" void fl_static_enable_im();
extern "C" void fl_static_disable_im();


extern "C" void fl_static_default_atclose(void * w, void * u);
extern "C" void * fl_static_get_first_window();
extern "C" void fl_static_set_first_window(void * w);
extern "C" void * fl_static_next_window(void * w);
extern "C" void * fl_static_modal();


extern "C" void * fl_static_readqueue();


extern "C" const char * fl_static_get_scheme();
extern "C" void fl_static_set_scheme(const char *n);
extern "C" int fl_static_is_scheme(const char *n);
extern "C" void fl_static_reload_scheme();


extern "C" int fl_static_get_option(int o);
extern "C" void fl_static_set_option(int o, int t);


extern "C" int fl_static_get_scrollbar_size();
extern "C" void fl_static_set_scrollbar_size(int s);


#endif