diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2005-05-30 06:40:25 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2005-05-30 06:40:25 +0000 |
| commit | d35b4eded3f48c42095f68b5169d2bb301ba1a06 (patch) | |
| tree | a104027214e83af3d72379f233a2c4beed17a419 /fluid/function_panel.h | |
| parent | 977e234a92be5354550c0138172a688abb3d6532 (diff) | |
Made most Fluid properties dialogs duoble buffered, because they tend to flicker during resizing.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4381 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/function_panel.h')
| -rw-r--r-- | fluid/function_panel.h | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/fluid/function_panel.h b/fluid/function_panel.h index b2e7d8f2e..e0e315e03 100644 --- a/fluid/function_panel.h +++ b/fluid/function_panel.h @@ -30,8 +30,8 @@ #ifndef function_panel_h #define function_panel_h #include <FL/Fl.H> -#include <FL/Fl_Window.H> -extern Fl_Window *function_panel; +#include <FL/Fl_Double_Window.H> +extern Fl_Double_Window *function_panel; #include <FL/Fl_Group.H> #include <FL/Fl_Light_Button.H> extern Fl_Light_Button *f_public_button; @@ -44,40 +44,40 @@ extern Fl_Input *f_return_type_input; extern Fl_Return_Button *f_panel_ok; #include <FL/Fl_Button.H> extern Fl_Button *f_panel_cancel; -Fl_Window* make_function_panel(); -extern Fl_Window *code_panel; +Fl_Double_Window* make_function_panel(); +extern Fl_Double_Window *code_panel; #include "CodeEditor.h" extern CodeEditor *code_input; extern Fl_Return_Button *code_panel_ok; extern Fl_Button *code_panel_cancel; -Fl_Window* make_code_panel(); -extern Fl_Window *codeblock_panel; +Fl_Double_Window* make_code_panel(); +extern Fl_Double_Window *codeblock_panel; extern Fl_Input *code_before_input; extern Fl_Input *code_after_input; extern Fl_Return_Button *codeblock_panel_ok; extern Fl_Button *codeblock_panel_cancel; -Fl_Window* make_codeblock_panel(); -extern Fl_Window *declblock_panel; +Fl_Double_Window* make_codeblock_panel(); +extern Fl_Double_Window *declblock_panel; extern Fl_Input *decl_before_input; extern Fl_Input *decl_after_input; extern Fl_Return_Button *declblock_panel_ok; extern Fl_Button *declblock_panel_cancel; extern Fl_Light_Button *declblock_public_button; -Fl_Window* make_declblock_panel(); -extern Fl_Window *decl_panel; +Fl_Double_Window* make_declblock_panel(); +extern Fl_Double_Window *decl_panel; extern Fl_Light_Button *decl_public_button; extern Fl_Input *decl_input; extern Fl_Return_Button *decl_panel_ok; extern Fl_Button *decl_panel_cancel; -Fl_Window* make_decl_panel(); -extern Fl_Window *class_panel; +Fl_Double_Window* make_decl_panel(); +extern Fl_Double_Window *class_panel; extern Fl_Light_Button *c_public_button; extern Fl_Input *c_name_input; extern Fl_Input *c_subclass_input; extern Fl_Return_Button *c_panel_ok; extern Fl_Button *c_panel_cancel; -Fl_Window* make_class_panel(); -extern Fl_Window *comment_panel; +Fl_Double_Window* make_class_panel(); +extern Fl_Double_Window *comment_panel; extern CodeEditor *comment_input; extern Fl_Return_Button *comment_panel_ok; extern Fl_Button *comment_panel_cancel; @@ -86,8 +86,9 @@ extern Fl_Light_Button *comment_in_header; #include <FL/Fl_Menu_Button.H> extern Fl_Menu_Button *comment_predefined; extern Fl_Button *comment_load; -Fl_Window* make_comment_panel(); +Fl_Double_Window* make_comment_panel(); void type_make_cb(Fl_Widget*w,void*d); +#include <FL/Fl_Window.H> extern Fl_Window *widgetbin_panel; extern void type_make_cb(Fl_Button*, void*); Fl_Window* make_widgetbin(); |
