diff options
| author | Matthias Melcher <github@matthiasm.com> | 2023-09-03 00:09:32 +0200 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2023-09-03 00:09:40 +0200 |
| commit | 5e8adebac2899d60fffc53d4692bc4972abcf795 (patch) | |
| tree | b79581c85dc80c4d132390de42c15faee8f3d4c9 /test/inactive.fl | |
| parent | 502fa72eb472382cc47964874893085fb88116f5 (diff) | |
Adds compact buttons feature to create keypads.
See test/buttons for an example.
Diffstat (limited to 'test/inactive.fl')
| -rw-r--r-- | test/inactive.fl | 34 |
1 files changed, 21 insertions, 13 deletions
diff --git a/test/inactive.fl b/test/inactive.fl index 0038a4fb3..c19b50a20 100644 --- a/test/inactive.fl +++ b/test/inactive.fl @@ -13,44 +13,52 @@ Function {} {open xywh {462 303 420 369} type Double resizable visible } { Fl_Group the_group { - label {activate()/deactivate() called on this Fl_Group} open selected + label {activate()/deactivate() called on this Fl_Group} open xywh {25 25 375 295} box ENGRAVED_FRAME align 17 resizable } { Fl_Button {} { label button - xywh {50 50 105 25} + xywh {50 50 105 20} } Fl_Light_Button {} { label {light button} - xywh {50 80 105 25} value 1 align 16 + xywh {50 75 105 20} value 1 align 16 + } + Fl_Group {} {open + xywh {50 100 105 20} + } { + Fl_Button {} { + label On selected + xywh {50 100 52 20} type Radio value 1 compact 1 + } + Fl_Button {} { + label Off selected + xywh {102 100 53 20} type Radio compact 1 + } } Fl_Group {} { label {Child group} open - xywh {50 130 105 125} box DOWN_FRAME + xywh {50 150 105 105} box DOWN_FRAME } { Fl_Check_Button {} { label red - xywh {54 172 97 20} type Radio down_box DIAMOND_DOWN_BOX selection_color 1 labelcolor 1 + xywh {54 192 97 20} type Radio down_box DIAMOND_DOWN_BOX selection_color 1 labelcolor 1 } Fl_Check_Button {} { label green - xywh {54 192 97 20} type Radio down_box DIAMOND_DOWN_BOX selection_color 2 labelcolor 2 + xywh {54 212 97 20} type Radio down_box DIAMOND_DOWN_BOX selection_color 2 labelcolor 2 } Fl_Check_Button {} { label blue - xywh {54 212 97 20} type Radio down_box DIAMOND_DOWN_BOX selection_color 4 labelcolor 4 - } - Fl_Check_Button {} { - label white - xywh {54 232 97 20} type Radio down_box DIAMOND_DOWN_BOX selection_color 55 labelcolor 55 + xywh {54 232 97 20} type Radio down_box DIAMOND_DOWN_BOX selection_color 4 labelcolor 4 } Fl_Check_Button {} { label check - xywh {54 132 97 20} down_box DOWN_BOX + xywh {54 152 97 20} down_box DOWN_BOX } Fl_Round_Button {} { label round - xywh {54 152 97 20} down_box ROUND_DOWN_BOX + xywh {54 172 97 20} down_box ROUND_DOWN_BOX } } Fl_Slider {} { |
