summaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_button.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk_binding/c_fl_button.cpp')
-rw-r--r--src/fltk_binding/c_fl_button.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/fltk_binding/c_fl_button.cpp b/src/fltk_binding/c_fl_button.cpp
deleted file mode 100644
index 621656c..0000000
--- a/src/fltk_binding/c_fl_button.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-#include <FL/Fl_Button.H>
-#include "c_fl_button.h"
-
-
-BUTTON new_fl_button(int x, int y, int w, int h, char* label) {
- Fl_Button *b = new Fl_Button(x, y, w, h, label);
- return b;
-}
-
-
-void free_fl_button(BUTTON b) {
- delete reinterpret_cast<Fl_Button*>(b);
-}
-
-
-int fl_button_get_state(BUTTON b) {
- return reinterpret_cast<Fl_Button*>(b)->value();
-}
-
-
-void fl_button_set_state(BUTTON b, int s) {
- reinterpret_cast<Fl_Button*>(b)->value(s);
-}
-
-
-void fl_button_set_only(BUTTON b) {
- reinterpret_cast<Fl_Button*>(b)->setonly();
-}
-