mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2025-01-31 05:30:44 +00:00
c8fa4a4896
git-svn-id: svn://qnap.local/TwoTerm/branches/frameless@2474 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
24 lines
415 B
Objective-C
24 lines
415 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 TitleBarView;
|
|
|
|
@interface EmulatorWindow : NSWindow
|
|
{
|
|
TitleBarView *_titleBarView;
|
|
}
|
|
|
|
@property (nonatomic, retain) IBOutlet TitleBarView *titleBarView;
|
|
|
|
-(void)adjustTitleBar;
|
|
|
|
-(void)setTitleTextColor: (NSColor *)color;
|
|
|
|
@end
|