diff options
| author | Matthias Melcher <github@matthiasm.com> | 2023-02-15 15:24:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-15 15:24:25 +0100 |
| commit | 6fbfaba19d0a2d2dc7080e450d5055ff19ac89e1 (patch) | |
| tree | 8df0fc35817474ce6558bba94e739f5fef493d8d /fluid/widget_panel.fl | |
| parent | a4d0f7d269dc01e0a22c56aef13aa1f23405969a (diff) | |
Move class Fl_Shortcut_Button from FLUID to core (#677) (#680)
Diffstat (limited to 'fluid/widget_panel.fl')
| -rw-r--r-- | fluid/widget_panel.fl | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/fluid/widget_panel.fl b/fluid/widget_panel.fl index 317b16518..afd6bb62a 100644 --- a/fluid/widget_panel.fl +++ b/fluid/widget_panel.fl @@ -23,7 +23,7 @@ comment {// decl {\#include "Fl_Widget_Type.h"} {private global } -decl {\#include "Shortcut_Button.h"} {public global +decl {\#include "custom_widgets.h"} {public global } Function {make_widget_panel()} { @@ -49,7 +49,7 @@ Function {make_widget_panel()} { xywh {95 40 309 20} labelfont 1 labelsize 11 align 4 } { Fl_Input {} { - callback label_cb selected + callback label_cb tooltip {The label text for the widget. Use Ctrl-J for newlines.} xywh {95 40 190 20} labelfont 1 labelsize 11 when 15 textsize 11 resizable } @@ -244,7 +244,7 @@ or compressed in the original file format} xywh {364 90 20 20} type Toggle MenuItem {} { label {bottom right} user_data {(fl_intptr_t)FL_ALIGN_BOTTOM_RIGHT} - xywh {115 115 100 20} labelsize 11 divider + xywh {115 115 100 20} labelsize 11 } MenuItem {} { label { Outside Alignment } @@ -465,14 +465,17 @@ h, ph, sh, ch, and i} xywh {275 150 55 20} labelsize 11 align 5 textsize 11 xywh {395 185 0 20} resizable } } + Fl_Group {} { + label {Shortcut:} open + xywh {95 210 0 20} labelfont 1 labelsize 11 align 4 + } {} Fl_Button {} { - label {Shortcut:} callback shortcut_in_cb - comment {This is a special button that grabs keystrokes directly} + comment {This is a special button that grabs keystrokes directly} selected tooltip {The shortcut key for the widget. -Use 'Backspace' key to clear.} xywh {95 210 310 20} box DOWN_BOX color 7 selection_color 7 labelfont 1 labelsize 11 align 4 - code0 {\#include "Shortcut_Button.h"} - class Shortcut_Button +Use 'Backspace' key to clear.} xywh {95 210 310 20} box DOWN_BOX color 7 selection_color 12 labelsize 11 when 1 + code0 {\#include <FL/Fl_Shortcut_Button.H>} + class Fl_Shortcut_Button } Fl_Group {} { label {X Class:} @@ -513,7 +516,7 @@ Use 'Backspace' key to clear.} xywh {95 210 310 20} box DOWN_BOX color 7 selecti Fl_Light_Button {} { label Active callback active_cb - tooltip {Activate the widget.} xywh {160 260 60 20} selection_color 1 labelsize 11 + tooltip {Activate the widget.} xywh {160 260 60 20} shortcut 0x400061 selection_color 1 labelsize 11 } Fl_Light_Button {} { label Resizable @@ -536,7 +539,7 @@ Use 'Backspace' key to clear.} xywh {95 210 310 20} box DOWN_BOX color 7 selecti Use Ctrl-J for newlines.} xywh {95 285 310 20} labelfont 1 labelsize 11 textsize 11 } Fl_Box {} { - xywh {95 305 300 5} labelsize 11 resizable + xywh {95 305 300 5} labelsize 11 } } Fl_Group {} { |
