diff options
| author | Matthias Melcher <github@matthiasm.com> | 2024-04-25 17:52:32 +0200 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2024-04-25 17:52:38 +0200 |
| commit | e52a358e8538151423a52b71ed5cca1f0fe1b15b (patch) | |
| tree | 1a4b432a323a04914cf6691b29436c960ac1e996 /fluid/function_panel.h | |
| parent | c0d2aa3f09ab0f68265d1aee28b9121bfadc945e (diff) | |
FLUID: Improve usability of Declaration Blocks
Decl Blocks can now output code around static code
in source and header files.
Diffstat (limited to 'fluid/function_panel.h')
| -rw-r--r-- | fluid/function_panel.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/fluid/function_panel.h b/fluid/function_panel.h index 71a5d51d3..34cb9fd70 100644 --- a/fluid/function_panel.h +++ b/fluid/function_panel.h @@ -53,14 +53,17 @@ extern Fl_Return_Button *codeblock_panel_ok; extern Fl_Button *codeblock_panel_cancel; Fl_Double_Window* make_codeblock_panel(); extern Fl_Double_Window *declblock_panel; -extern Fl_Choice *declblock_public_choice; -extern Fl_Light_Button *declblock_public_button_x; -extern Fl_Input *decl_before_input; -extern Fl_Input *decl_after_input; +extern Fl_Input *declblock_before_input; +extern Fl_Input *declblock_after_input; +#include <FL/Fl_Check_Button.H> +extern Fl_Check_Button *declblock_code_source; +extern Fl_Check_Button *declblock_static_source; +extern Fl_Check_Button *declblock_code_header; +extern Fl_Check_Button *declblock_static_header; +extern Fl_Text_Editor *declblock_comment_input; extern Fl_Return_Button *declblock_panel_ok; extern Fl_Button *declblock_panel_cancel; Fl_Double_Window* make_declblock_panel(); -extern Fl_Menu_Item menu_declblock_public_choice[]; extern Fl_Double_Window *decl_panel; extern Fl_Choice *decl_choice; extern Fl_Choice *decl_class_choice; |
