diff options
| author | Pietro Gagliardi <[email protected]> | 2018-08-26 17:08:41 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2018-08-26 17:08:41 -0400 |
| commit | 247cdf8d6ff13697dcead9908d97146e0d5171c4 (patch) | |
| tree | 45d65f8713e42f18d1a7885d9e801cdd3ed541f7 /pkgui.h | |
| parent | ba8f53fe3ed762e4afcd616edec4733b783b9d09 (diff) | |
Migrated colorbutton.go back.
Diffstat (limited to 'pkgui.h')
| -rw-r--r-- | pkgui.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -22,6 +22,18 @@ extern void pkguiButtonOnClicked(uiButton *b); // checkbox.go extern void pkguiCheckboxOnToggled(uiCheckbox *c); +// colorbutton.go +extern void pkguiColorButtonOnChanged(uiColorButton *c); +typedef struct pkguiColorDoubles pkguiColorDoubles; +struct pkguiColorDoubles { + double *r; + double *g; + double *b; + double *a; +}; +extern pkguiColorDoubles pkguiAllocColorDoubles(void); +extern void pkguiFreeColorDoubles(pkguiColorDoubles c); + // combobox.go extern void pkguiComboboxOnSelected(uiCombobox *c); |
