RedGUI overview of gui wrappers



Red2DSlider(parent, bounds)

RedButton(parent, bounds ...str)

RedFont()

RedKnob(parent, bounds)

RedLevelIndicator(parent, bounds)

RedMultiSliderView(parent, bounds)

RedNumberBox(parent, bounds)

RedPopUpMenu(parent, bounds)

RedPopUpTreeMenu(parent, bounds)

RedSlider(parent, bounds)

RedStaticText(parent, string, bounds)

RedTextView(parent, bounds)


//--

GUI.skins.redFrik //also includes a skin

RedFont.new.dump

(

var w= Window("RedGUI test", Rect(100, 200, 400, 400)).front;

w.view.decorator= FlowLayout(w.view.bounds);

Red2DSlider(w);

RedButton(w);

RedButton(w, nil, "aaa", "bbb");

RedKnob(w);

RedLevelIndicator(w).value_(0.5);

RedMultiSliderView(w);

RedNumberBox(w);

RedPopUpMenu(w);

RedPopUpTreeMenu(w);

RedSlider(w);

RedStaticText(w, "test123");

RedTextView(w);

)