2015-07-31 22:06:29 -05:00
|
|
|
// 31 july 2015
|
|
|
|
#import "osxaltest.h"
|
|
|
|
|
2015-08-01 13:22:45 -05:00
|
|
|
@implementation tButton {
|
2015-07-31 22:06:29 -05:00
|
|
|
NSButton *b;
|
|
|
|
}
|
|
|
|
|
2015-08-01 13:22:45 -05:00
|
|
|
- (id)tInitWithText:(NSString *)text
|
2015-07-31 22:06:29 -05:00
|
|
|
{
|
|
|
|
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]]];
|
2015-08-01 14:38:59 -05:00
|
|
|
[self->b setTranslatesAutoresizingMaskIntoConstraints:NO];
|
2015-07-31 22:06:29 -05:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)tAddToView:(NSView *)v
|
|
|
|
{
|
|
|
|
[v addSubview:self->b];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (uintmax_t)tAddToAutoLayoutDictionary:(NSMutableDictionary *)views keyNumber:(uintmax_t)n
|
|
|
|
{
|
|
|
|
[views setObject:self->b forKey:tAutoLayoutKey(n)];
|
|
|
|
n++;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2015-08-01 16:26:56 -05:00
|
|
|
- (void)tFillAutoLayoutHorz:(NSMutableArray *)horz
|
|
|
|
vert:(NSMutableArray *)vert
|
2015-08-01 14:38:59 -05:00
|
|
|
extra:(NSMutableArray *)extra
|
|
|
|
extraVert:(NSMutableArray *)extraVert
|
|
|
|
views:(NSMutableDictionary *)views
|
|
|
|
{
|
2015-08-01 16:26:56 -05:00
|
|
|
[horz addObject:@"[view0]"];
|
|
|
|
[vert addObject:@"[view0]"];
|
2015-08-01 14:38:59 -05:00
|
|
|
[views setObject:self->b forKey:@"view0"];
|
|
|
|
}
|
|
|
|
|
2015-07-31 22:06:29 -05:00
|
|
|
@end
|