diff options
| author | Pietro Gagliardi <[email protected]> | 2014-07-22 23:32:32 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-07-22 23:32:32 -0400 |
| commit | 300835a1b45b0b59951baa28e69e886aa72fc38f (patch) | |
| tree | be22611cf09874055a031c14cbb62eb1429d40ae /redo/objc_darwin.h | |
| parent | f21fdfd7dc1b1345832c1c05c2f1c0c3c8674141 (diff) | |
Implemented Checkbox on Mac OS X. Also untested; will test next.
Diffstat (limited to 'redo/objc_darwin.h')
| -rw-r--r-- | redo/objc_darwin.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/redo/objc_darwin.h b/redo/objc_darwin.h index a2cdc04..ec0abf0 100644 --- a/redo/objc_darwin.h +++ b/redo/objc_darwin.h @@ -32,10 +32,13 @@ extern void windowClose(id); /* controls_darwin.m */ extern void unparent(id); extern void parent(id, id, BOOL); -extern id newButton(char *); +extern id newButton(void); extern void buttonSetDelegate(id, void *); extern const char *buttonText(id); extern void buttonSetText(id, char *); +extern id newCheckbox(void); +extern BOOL checkboxChecked(id); +extern void checkboxSetChecked(id, BOOL); /* sizing_darwin.m */ extern void moveControl(id, intptr_t, intptr_t, intptr_t, intptr_t); |
