2011-11-26 17:04:20 +00:00
|
|
|
//
|
|
|
|
// EmulatorWindow.h
|
|
|
|
// 2Term
|
|
|
|
//
|
|
|
|
// Created by Kelvin Sherlock on 11/25/2011.
|
|
|
|
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <AppKit/AppKit.h>
|
2011-12-23 20:35:00 +00:00
|
|
|
@class TitleBarView;
|
2011-11-26 17:04:20 +00:00
|
|
|
|
|
|
|
@interface EmulatorWindow : NSWindow
|
|
|
|
{
|
2011-12-23 20:35:00 +00:00
|
|
|
TitleBarView *_titleBarView;
|
2011-11-26 17:04:20 +00:00
|
|
|
}
|
|
|
|
|
2011-12-23 20:35:00 +00:00
|
|
|
@property (nonatomic, retain) IBOutlet TitleBarView *titleBarView;
|
|
|
|
|
|
|
|
-(void)adjustTitleBar;
|
|
|
|
|
2012-08-04 23:05:10 +00:00
|
|
|
-(void)setTitleTextColor: (NSColor *)color;
|
2011-12-23 20:35:00 +00:00
|
|
|
|
2011-11-26 17:04:20 +00:00
|
|
|
@end
|