MCPcopy Create free account
hub / github.com/agraef/pure-lang / addCheckButton

Method addCheckButton

pure/runtime.cc:17218–17219  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17216void PureFaustUI::addButton(const char* label, double* zone)
17217{ add_elem(UI_BUTTON, label, zone); }
17218void PureFaustUI::addCheckButton(const char* label, double* zone)
17219{ add_elem(UI_CHECK_BUTTON, label, zone); }
17220void PureFaustUI::addVerticalSlider(const char* label, double* zone, double init, double min, double max, double step)
17221{ add_elem(UI_V_SLIDER, label, zone, init, min, max, step); }
17222void PureFaustUI::addHorizontalSlider(const char* label, double* zone, double init, double min, double max, double step)

Callers 2

addCheckButtonFloatGlueFunction · 0.45
addCheckButtonDoubleGlueFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected