This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| dev:v3:gui_api:dialog:inputgui1 [2020/07/09 12:38] – jedi18 | dev:v3:gui_api:dialog:inputgui1 [2020/07/10 03:56] (current) – jedi18 | ||
|---|---|---|---|
| Line 178: | Line 178: | ||
|   * <code lua> button1: |   * <code lua> button1: | ||
| + | |||
| + | ---- | ||
| + | |||
| + | ===== RadioButton GUI Class ===== | ||
| + | |||
| + | ---- | ||
| + | |||
| + | [[https:// | ||
| + | <code cpp-qt> namespace lc::ui::api </ | ||
| + | |||
| + | The RadioButton GUI class is used to add a RadioButton to a radio group of the dialog widget. Callbacks can be added to the button which is called when the radiobutton is checked. | ||
| + | |||
| + | ---- | ||
| + | |||
| + | ==== Constructor ==== | ||
| + | |||
| + | ---- | ||
| + | |||
| + | === Description === | ||
| + | |||
| + | Constructs a radiobutton gui widget. | ||
| + | |||
| + | === Examples === | ||
| + | |||
| + |   * <code lua> local radio1 = gui.RadioButton(" | ||
| + | |||
| + | ---- | ||
| + | |||
| + | ==== Add Callback ==== | ||
| + | |||
| + | ---- | ||
| + | |||
| + | === Description === | ||
| + | |||
| + | Add a callback to be called whenever the user clicks on the button toggling it's checked state. | ||
| + | |||
| + | === Examples === | ||
| + | |||
| + |   * <code lua> radio1: | ||
| + | |||
| + | ---- | ||
| + | |||
| + | ==== Checked and Set Checked ==== | ||
| + | |||
| + | ---- | ||
| + | |||
| + | === Description === | ||
| + | |||
| + | Used to get and the set the value of the radio button i.e. toggle the checked state of the radio button. | ||
| + | |||
| + | |||
| + | === Examples === | ||
| + | |||
| + |   * <code lua> local val = radio1: | ||
| + |   * <code lua> radio1: | ||
| ---- | ---- | ||