diff options
| author | Pietro Gagliardi <[email protected]> | 2014-07-25 23:11:41 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-07-25 23:11:41 -0400 |
| commit | ee5c6ff8461d5147fa74205f21b7fce6e5606d74 (patch) | |
| tree | 942d428fd6ceacececeb6ca23d50206f59abdd15 /redo/objc_darwin.h | |
| parent | 41f3ef292f2e0d70beb3722004c968881ca0fae2 (diff) | |
Implemented Tab on Mac OS X. Woo! I'll need to add justification for what I'm doing with the whole recursive call thing; when I get confirmation from the GTK+ camp I will.
Diffstat (limited to 'redo/objc_darwin.h')
| -rw-r--r-- | redo/objc_darwin.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/redo/objc_darwin.h b/redo/objc_darwin.h index 057b4a0..6795698 100644 --- a/redo/objc_darwin.h +++ b/redo/objc_darwin.h @@ -28,6 +28,7 @@ extern void windowSetTitle(id, const char *); extern void windowShow(id); extern void windowHide(id); extern void windowClose(id); +extern id windowContentView(id); extern void windowRedraw(id); /* controls_darwin.m */ @@ -44,4 +45,8 @@ extern void checkboxSetChecked(id, BOOL); /* sizing_darwin.m */ extern void moveControl(id, intptr_t, intptr_t, intptr_t, intptr_t); +/* containers_darwin.m */ +extern id newTab(void *); +extern id tabAppend(id, char *); + #endif |
