summaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_popup.cpp
blob: 913ec51035cbe5086524f1d9d2b64ef88b0b2820 (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


#include <FL/fl_ask.H>
#include <FL/Fl_File_Chooser.H>
#include <FL/Fl_Color_Chooser.H>
#include "c_fl_popup.h"


void popup_fl_alert(const char * m) {
    fl_alert(m);
}


int popup_fl_choice(const char * m, const char * a, const char * b, const char * c) {
    return fl_choice(m, a, b, c);
}


char * popup_fl_file_chooser(const char * m, const char * p, const char * d, int r) {
    return fl_file_chooser(m, p, d, r);
}


const char * popup_fl_input(const char * m, const char * d) {
    return fl_input(m, d);
}


void popup_fl_message(const char * m) {
    fl_message(m);
}