TwoTerm/Views/TextLabel.h
Kelvin Sherlock ae61aaa524 fix the window title.
git-svn-id: svn://qnap.local/TwoTerm/trunk@3111 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
2016-07-08 00:54:52 +00:00

20 lines
282 B
Objective-C

//
// TextLabel.h
// 2Term
//
// Created by Kelvin Sherlock on 7/7/2016.
//
//
#import <Cocoa/Cocoa.h>
@interface TextLabel : NSView
{
NSString *_text;
NSColor *_color;
}
@property (nonatomic, retain) NSString *text;
@property (nonatomic, retain) NSColor *color;
@end