diff options
| author | Pietro Gagliardi <[email protected]> | 2018-08-26 13:43:05 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2018-08-26 13:43:05 -0400 |
| commit | 7b7ae9d7ce2aa6f99677fde7b8a0c21c7024e3e9 (patch) | |
| tree | 17813999d509a6dd0d1636f415622876c0d6ff93 /pkgui.c | |
| parent | 1095719d84a6ac5f90eefe8e23913f3e09ad692d (diff) | |
More control migration. Everything beyond this point is nontrivial.
Diffstat (limited to 'pkgui.c')
| -rw-r--r-- | pkgui.c | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -51,3 +51,23 @@ void pkguiEntryOnChanged(uiEntry *e) { uiEntryOnChanged(e, pkguiDoEntryOnChanged, NULL); } + +void pkguiMultilineEntryOnChanged(uiMultilineEntry *e) +{ + uiMultilineEntryOnChanged(e, pkguiDoMultilineEntryOnChanged, NULL); +} + +void pkguiRadioButtonsOnSelected(uiRadioButtons *r) +{ + uiRadioButtonsOnSelected(r, pkguiDoRadioButtonsOnSelected, NULL); +} + +void pkguiSliderOnChanged(uiSlider *s) +{ + uiSliderOnChanged(s, pkguiDoSliderOnChanged, NULL); +} + +void pkguiSpinboxOnChanged(uiSpinbox *s) +{ + uiSpinboxOnChanged(s, pkguiDoSpinboxOnChanged, NULL); +} |
