summaryrefslogtreecommitdiff
path: root/sysdata_darwin.h
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-05-13 07:09:22 -0400
committerPietro Gagliardi <[email protected]>2014-05-13 07:09:22 -0400
commit791345fa97693016ae3786f3951083edfb752f85 (patch)
tree20fcef24ca1a862492ece41c2d72ea9994382e9a /sysdata_darwin.h
parent3949fb94e975a67d76342fd928fcc437af16228a (diff)
Finished migrating sysdata_darwin.go away from calling objc_msgSend() directly. initWithDummyFrame() is still there as other files use it.
Diffstat (limited to 'sysdata_darwin.h')
-rw-r--r--sysdata_darwin.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/sysdata_darwin.h b/sysdata_darwin.h
index 24e24c3..49824fc 100644
--- a/sysdata_darwin.h
+++ b/sysdata_darwin.h
@@ -9,10 +9,15 @@ extern void applyStandardControlFont(id);
extern id makeWindow(id);
extern void windowShow(id);
extern void windowHide(id);
+extern void windowSetTitle(id, id);
+extern id windowTitle(id);
extern id makeButton(void);
extern void buttonSetTargetAction(id, id);
+extern void buttonSetText(id, id);
+extern id buttonText(id);
extern id makeCheckbox(void);
extern id makeCombobox(BOOL);
+extern id comboboxText(id, BOOL);
extern void comboboxAppend(id, BOOL, id);
extern void comboboxInsertBefore(id, BOOL, id, intptr_t);
extern intptr_t comboboxSelectedIndex(id);
@@ -20,6 +25,8 @@ extern void comboboxDelete(id, intptr_t);
extern intptr_t comboboxLen(id);
extern void comboboxSelectIndex(id, BOOL, intptr_t);
extern id makeLineEdit(BOOL); // TODO I accidentally left this as taking no arguments and clang didn't complain when compiling sysdata_darwin.m?!
+extern void lineeditSetText(id, id);
+extern id lineeditText(id);
extern id makeLabel(void);
extern id makeProgressBar(void);
extern void setRect(id, intptr_t, intptr_t, intptr_t, intptr_t);