libui/redo/osxaltest/osxaltest.h

17 lines
391 B
C
Raw Normal View History

// 31 july 2015
#import <Cocoa/Cocoa.h>
2015-07-31 22:06:29 -05:00
#import <stdint.h>
@protocol tControl
@required
- (void)tAddToView:(NSView *)v;
- (uintmax_t)tAddToAutoLayoutDictionary:(NSMutableDictionary *)views keyNumber:(uintmax_t)n;
@end
@interface tWindowDelegate : NSObject<NSWindowDelegate>
- (void)tSetControl:(NSObject<tControl> *)cc;
- (void)tRelayout;
@end
2015-07-31 22:06:29 -05:00
extern NSString *tAutoLayoutKey(uintmax_t);