summaryrefslogtreecommitdiff
path: root/redo/tab_darwin.m
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-02 22:35:58 -0400
committerPietro Gagliardi <[email protected]>2014-08-02 22:35:58 -0400
commitd018953d7ef1b276cc3229e04ba6fc75018c888a (patch)
tree3f980a017ca498bf499ff9c5e6a53210606b12f9 /redo/tab_darwin.m
parent1f6bcde3d9ddcab921f2f4347148f6784ca36a14 (diff)
Split all the Control implementations into their own files and renamed the containerctrls implementation files to say tab instead as they only hold Tab. This is the first part of what should hopefully be the final restructuring.
Diffstat (limited to 'redo/tab_darwin.m')
-rw-r--r--redo/tab_darwin.m46
1 files changed, 46 insertions, 0 deletions
diff --git a/redo/tab_darwin.m b/redo/tab_darwin.m
new file mode 100644
index 0000000..c99e275
--- /dev/null
+++ b/redo/tab_darwin.m
@@ -0,0 +1,46 @@
+// 25 july 2014
+
+#import "objc_darwin.h"
+#import "_cgo_export.h"
+#import <Cocoa/Cocoa.h>
+
+#define toNSTabView(x) ((NSTabView *) (x))
+
+@interface goTabView : NSTabView {
+@public
+ void *gotab;
+}
+@end
+
+@implementation goTabView
+
+- (void)setFrame:(NSRect)r
+{
+ NSRect content;
+
+ [super setFrame:r];
+ content = [self contentRect];
+ tabResized(self->gotab, (intptr_t) content.size.width, (intptr_t) content.size.height);
+}
+
+@end
+
+id newTab(void *gotab)
+{
+ goTabView *t;
+
+ t = [[goTabView alloc] initWithFrame:NSMakeRect(0, 0, 100, 100)];
+ setStandardControlFont((id) t); // safe; same selector provided by NSTabView
+ t->gotab = gotab;
+ return (id) t;
+}
+
+id tabAppend(id t, char *name)
+{
+ NSTabViewItem *i;
+
+ i = [[NSTabViewItem alloc] initWithIdentifier:nil];
+ [i setLabel:[NSString stringWithUTF8String:name]];
+ [toNSTabView(t) addTabViewItem:i];
+ return (id) [i view];
+}