51 lines
1.1 KiB
Objective-C
51 lines
1.1 KiB
Objective-C
// 31 july 2015
|
|
#import "osxaltest.h"
|
|
|
|
@implementation tButton {
|
|
NSButton *b;
|
|
id<tControl> parent;
|
|
}
|
|
|
|
- (id)tInitWithText:(NSString *)text
|
|
{
|
|
self = [super init];
|
|
if (self) {
|
|
self->b = [[NSButton alloc] initWithFrame:NSZeroRect];
|
|
[self->b setTitle:text];
|
|
[self->b setButtonType:NSMomentaryPushInButton];
|
|
[self->b setBordered:YES];
|
|
[self->b setBezelStyle:NSRoundedBezelStyle];
|
|
[self->b setFont:[NSFont systemFontOfSize:[NSFont systemFontSizeForControlSize:NSRegularControlSize]]];
|
|
[self->b setTranslatesAutoresizingMaskIntoConstraints:NO];
|
|
|
|
self->parent = nil;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)tSetParent:(id<tControl>)p addToView:(NSView *)v
|
|
{
|
|
self->parent = p;
|
|
[v addSubview:self->b];
|
|
[self tRelayout];
|
|
}
|
|
|
|
- (void)tFillAutoLayout:(tAutoLayoutParams *)p
|
|
{
|
|
NSString *key;
|
|
|
|
key = tAutoLayoutKey(p->n);
|
|
p->n++;
|
|
[p->horz addObject:[NSString stringWithFormat:@"[%@]", key]];
|
|
[p->vert addObject:[NSString stringWithFormat:@"[%@]", key]];
|
|
[p->views setObject:self->b forKey:key];
|
|
}
|
|
|
|
- (void)tRelayout
|
|
{
|
|
if (self->parent != nil)
|
|
[self->parent tRelayout];
|
|
}
|
|
|
|
@end
|