summaryrefslogtreecommitdiff
path: root/fluid/function_panel.h
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2002-11-03 00:01:21 +0000
committerMatthias Melcher <fltk@matthiasm.com>2002-11-03 00:01:21 +0000
commitc3de2a22c058b26700cce7ebeb26ca20072dc50f (patch)
treebcbd8e2be5c70d29fbd1d65028a3abac64c77310 /fluid/function_panel.h
parentf3078e51e015215432c375ccd24a2d3c93342c52 (diff)
Replaced 'callback' and 'code' input in FLUID with Fl_Text_Editor.
Made widget pannel resize only text fields (which I see as the logical way to do it. Opinions welcome). Matthias git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2822 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/function_panel.h')
-rw-r--r--fluid/function_panel.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/fluid/function_panel.h b/fluid/function_panel.h
index 8758d4626..51b60805c 100644
--- a/fluid/function_panel.h
+++ b/fluid/function_panel.h
@@ -17,7 +17,9 @@ extern Fl_Return_Button *f_panel_ok;
extern Fl_Button *f_panel_cancel;
Fl_Window* make_function_panel();
extern Fl_Window *code_panel;
-extern Fl_Input *code_input;
+#include <FL/Fl_Group.H>
+#include <FL/Fl_Text_Editor.H>
+extern Fl_Text_Editor *code_input;
extern Fl_Return_Button *code_panel_ok;
extern Fl_Button *code_panel_cancel;
Fl_Window* make_code_panel();
@@ -50,7 +52,6 @@ Fl_Window* make_class_panel();
void type_make_cb(Fl_Widget*w,void*d);
#include <FL/Fl_Double_Window.H>
extern Fl_Double_Window *widgetbin_panel;
-#include <FL/Fl_Group.H>
extern void type_make_cb(Fl_Button*, void*);
Fl_Double_Window* make_widgetbin();
#endif