MCPcopy Index your code
hub / github.com/SpaiR/imgui-java / radioButton

Method radioButton

imgui-binding/src/generated/java/imgui/ImGui.java:3223–3225  ·  view source on GitHub ↗

Use with e.g. if (RadioButton("one", my_value==1)) { my_value = 1; }

(final String label, final boolean active)

Source from the content-addressed store, hash-verified

3221 * Use with e.g. if (RadioButton("one", my_value==1)) { my_value = 1; }
3222 */
3223 public static boolean radioButton(final String label, final boolean active) {
3224 return nRadioButton(label, active);
3225 }
3226
3227 private static native boolean nRadioButton(String obj_label, boolean active); /*MANUAL
3228 auto label = obj_label == NULL ? NULL : (char*)env->GetStringUTFChars(obj_label, JNI_FALSE);

Callers 1

editTransformMethod · 0.95

Calls 2

nRadioButtonMethod · 0.95
getDataMethod · 0.65

Tested by

no test coverage detected