1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- class Radio extends UIObject
- {
- constructor(name)
- {
- super(name);
- this.P5Element = createRadio();
- this.setPosition(10, 10);
- this.setStyle(DEFAULT_STYLE);
- this.multiLine = false;
- this.connectCallbacks();
- this.P5Element.changed(this.onChanged);
- }
-
- setSelected(value)
- {
- this.P5Element.selected(value);
- }
-
- getSelected()
- {
- return this.P5Element.selected();
- }
-
- addOption(value)
- {
- this.P5Element.option(value);
- if (this.multiLine) this.makeMultiline();
- }
-
-
-
-
-
- makeMultiline()
- {
- this.multiLine = true;
- const inputs = selectAll('input', this.P5Element),
- labels = selectAll('label', this.P5Element),
- len = inputs.length;
- for (let i = 0; i < len; ++i)
- createDiv().parent(this.P5Element).child(inputs[i]).child(labels[i]);
- this.fixRadioDivElement();
- }
- fixRadioDivElement()
- {
- this.P5Element._getInputChildrenArray = function()
- {
- return this.elt.getElementsByTagName('input');
- }
- }
-
- _onChanged()
- {
- console.log(this.getSelected());
- }
- onChanged()
- {
- this.pandoraObject._onChanged();
- }
- }
|