mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2025-01-05 05:29:36 +00:00
ae61aaa524
git-svn-id: svn://qnap.local/TwoTerm/trunk@3111 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
21 lines
338 B
Objective-C
21 lines
338 B
Objective-C
//
|
|
// EmulatorWindow.h
|
|
// 2Term
|
|
//
|
|
// Created by Kelvin Sherlock on 11/25/2011.
|
|
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <AppKit/AppKit.h>
|
|
@class TextLabel;
|
|
|
|
@interface EmulatorWindow : NSWindow
|
|
{
|
|
}
|
|
|
|
@property (assign) IBOutlet TextLabel *textLabel;
|
|
|
|
-(void)setTitleTextColor: (NSColor *)color;
|
|
|
|
@end
|