Mini Kabibi Habibi
layout exampleFlyoutOptions
{
constant:
zName : '$$$/FlyoutsExample/TestMe/TestMeButton=Test Me';
zNameText : '$$$/FlyoutsExample/StatusOff=Check Box Off.';
zTooltip : '$$$/FlyoutsExample/ToolTips/TestMeButton=Test me tooltip';
interface:
isOn : false;
view TExampleFlyoutCluster(identifier : @exampleFlyoutOptions,
placement : place_column,
spacing : 4,
font : staticSmallFont,
horizontal : align_left,
qDebugDraw : false)
{
TCheckBox(name: zName, identifier: @testMeOn, bind: @isOn, tooltip: zTooltip);
TGroupSeparator(height: 4, vertical: align_fill, horizontal: align_fill);
TStaticText(name: zNameText, identifier: @testText);
}
}