From 791345fa97693016ae3786f3951083edfb752f85 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Tue, 13 May 2014 07:09:22 -0400 Subject: Finished migrating sysdata_darwin.go away from calling objc_msgSend() directly. initWithDummyFrame() is still there as other files use it. --- sysdata_darwin.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'sysdata_darwin.h') 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); -- cgit v1.2.3