summaryrefslogtreecommitdiff
path: root/src/c_fl_value_input.cpp
blob: 91404a61c301eb3441cc1251f83e55baf8f7cb6f (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
137


#include <FL/Fl_Value_Input.H>
#include "c_fl_value_input.h"
#include "c_fl_type.h"




class My_Value_Input : public Fl_Value_Input {
    public:
        using Fl_Value_Input::Fl_Value_Input;
        friend void value_input_set_draw_hook(VALUE_INPUT a, void * d);
        friend void fl_value_input_draw(VALUE_INPUT a);
        friend void value_input_set_handle_hook(VALUE_INPUT a, void * h);
        friend int fl_value_input_handle(VALUE_INPUT a, int e);
    protected:
        void draw();
        void real_draw();
        int handle(int e);
        int real_handle(int e);
        d_hook_p draw_hook;
        h_hook_p handle_hook;
};

void My_Value_Input::draw() {
    (*draw_hook)(this->user_data());
}

void My_Value_Input::real_draw() {
    Fl_Value_Input::draw();
}

int My_Value_Input::handle(int e) {
    return (*handle_hook)(this->user_data(), e);
}

int My_Value_Input::real_handle(int e) {
    return Fl_Value_Input::handle(e);
}

void value_input_set_draw_hook(VALUE_INPUT a, void * d) {
    reinterpret_cast<My_Value_Input*>(a)->draw_hook = reinterpret_cast<d_hook_p>(d);
}

void fl_value_input_draw(VALUE_INPUT a) {
    reinterpret_cast<My_Value_Input*>(a)->real_draw();
}

void value_input_set_handle_hook(VALUE_INPUT a, void * h) {
    reinterpret_cast<My_Value_Input*>(a)->handle_hook = reinterpret_cast<h_hook_p>(h);
}

int fl_value_input_handle(VALUE_INPUT a, int e) {
    return reinterpret_cast<My_Value_Input*>(a)->real_handle(e);
}




VALUE_INPUT new_fl_value_input(int x, int y, int w, int h, char* label) {
    My_Value_Input *a = new My_Value_Input(x, y, w, h, label);
    return a;
}

void free_fl_value_input(VALUE_INPUT a) {
    delete reinterpret_cast<My_Value_Input*>(a);
}




void * fl_value_input_get_input(VALUE_INPUT v) {
    return &(reinterpret_cast<Fl_Value_Input*>(v)->input);
}




unsigned int fl_value_input_get_cursor_color(VALUE_INPUT v) {
    return reinterpret_cast<Fl_Value_Input*>(v)->cursor_color();
}

void fl_value_input_set_cursor_color(VALUE_INPUT v, unsigned int c) {
    reinterpret_cast<Fl_Value_Input*>(v)->cursor_color(c);
}




int fl_value_input_get_shortcut(VALUE_INPUT v) {
    return reinterpret_cast<Fl_Value_Input*>(v)->Fl_Value_Input::shortcut();
}

void fl_value_input_set_shortcut(VALUE_INPUT v, int k) {
    reinterpret_cast<Fl_Value_Input*>(v)->Fl_Value_Input::shortcut(k);
}




int fl_value_input_is_soft(VALUE_INPUT a) {
    return reinterpret_cast<Fl_Value_Input*>(a)->soft();
}

void fl_value_input_set_soft(VALUE_INPUT a, int t) {
    reinterpret_cast<Fl_Value_Input*>(a)->soft(t);
}




unsigned int fl_value_input_get_text_color(VALUE_INPUT v) {
    return reinterpret_cast<Fl_Value_Input*>(v)->textcolor();
}

void fl_value_input_set_text_color(VALUE_INPUT v, unsigned int c) {
    reinterpret_cast<Fl_Value_Input*>(v)->textcolor(static_cast<Fl_Color>(c));
}

int fl_value_input_get_text_font(VALUE_INPUT v) {
    return reinterpret_cast<Fl_Value_Input*>(v)->textfont();
}

void fl_value_input_set_text_font(VALUE_INPUT v, int f) {
    reinterpret_cast<Fl_Value_Input*>(v)->textfont(static_cast<Fl_Font>(f));
}

int fl_value_input_get_text_size(VALUE_INPUT v) {
    return reinterpret_cast<Fl_Value_Input*>(v)->textsize();
}

void fl_value_input_set_text_size(VALUE_INPUT v, int s) {
    reinterpret_cast<Fl_Value_Input*>(v)->textsize(static_cast<Fl_Fontsize>(s));
}