cave-story-solaris/external/fltk/test/inactive.fl
Clownacy ac465d29b4 Mean CMake dependency overhaul
I'm taking a page from Dolphin's book, and including copies of each
dependency's source code. This combines the ease of use of including
pre-built libraries instead of needing to navigate a package manager
 - as is (or was) the case for MSVC - with the portability of using
packages. Granted, this method's more of a jack of all trades,
master of none, since it's *less* user-friendly than prebuilt
packages (compilation times), and you don't get the per-distro
compatibility fixes you'd get from a package manager.

You can still use system libs if you want. In fact, it's still the
default behaviour: compiling the libs manually is just a fallback.
I'll add an option to force-enable this soon, however, since it's a
nicer way to produce static MSYS2 builds than the hackish nightmare
that I was using before. Not to mention, having my own copy of the
sources means I can provide my own fixes and tweaks your package
manager may not. For example, I can combine MSYS2's FreeType
subpixel rendering with vcpkg's fix for SDL2 exporting its symbols
in static builds.
2019-04-26 01:52:02 +01:00

120 lines
3.1 KiB
Text

# data file for the Fltk User Interface Designer (fluid)
version 1.0305
header_name {.h}
code_name {.cxx}
Function {} {open
} {
Fl_Window {} {open
xywh {390 200 420 369} type Double hide resizable
} {
Fl_Group the_group {
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}
}
Fl_Light_Button {} {
label {light button}
xywh {50 80 105 25} value 1 align 16
}
Fl_Group {} {
label {Child group} open
xywh {50 130 105 125} box DOWN_FRAME
} {
Fl_Check_Button {} {
label red
xywh {50 170 105 25} type Radio down_box DIAMOND_DOWN_BOX selection_color 1 labelcolor 1
}
Fl_Check_Button {} {
label green
xywh {50 190 105 25} type Radio down_box DIAMOND_DOWN_BOX selection_color 2 labelcolor 2
}
Fl_Check_Button {} {
label blue
xywh {50 210 105 25} type Radio down_box DIAMOND_DOWN_BOX selection_color 4 labelcolor 4
}
Fl_Check_Button {} {
label white
xywh {50 230 105 25} type Radio down_box DIAMOND_DOWN_BOX selection_color 55 labelcolor 55
}
Fl_Check_Button {} {
label check
xywh {50 130 105 25} down_box DOWN_BOX
}
Fl_Round_Button {} {
label round
xywh {50 150 105 25} down_box ROUND_DOWN_BOX
}
}
Fl_Slider {} {
label Fl_Slider selected
xywh {165 50 24 205} value 0.5
}
Fl_Input {} {
xywh {195 50 195 30}
code0 {o->static_value("Fl_Input");}
}
Fl_Menu_Button {} {
label menu open
xywh {245 90 130 30}
} {
MenuItem {} {
label item
xywh {0 0 100 20}
}
MenuItem {} {
label item
xywh {10 10 100 20}
}
MenuItem {} {
label item
xywh {20 20 100 20}
}
MenuItem {} {
label item
xywh {30 30 100 20}
}
MenuItem {} {
label item
xywh {40 40 100 20}
}
}
Fl_Value_Output {} {
label {value:}
xywh {245 130 130 30} maximum 10000 step 1 textfont 5 textsize 24 textcolor 4
}
Fl_Box {} {
label Fl_Box
xywh {245 170 140 50} box EMBOSSED_FRAME labeltype SHADOW_LABEL labelfont 3 labelsize 38
}
Fl_Scrollbar {} {
label scrollbar
xywh {40 274 180 20} type Horizontal
}
Fl_Roller {} {
label roller
xywh {235 230 25 65}
}
Fl_Dial {} {
label dial
xywh {275 235 50 50}
}
Fl_Clock {} {
label clock
xywh {335 235 50 50}
}
}
Fl_Button {} {
label active
callback {the_group->activate();}
xywh {25 330 185 25} type Radio value 1
}
Fl_Button {} {
label inactive
callback {the_group->deactivate();}
xywh {220 330 180 25} type Radio
}
}
}