TwoTerm/Views/TitleBarView.h
Kelvin Sherlock 35094617f6 update views
git-svn-id: svn://qnap.local/TwoTerm/branches/frameless@2463 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
2012-08-01 23:56:56 +00:00

31 lines
588 B
Objective-C

//
// TitleBarView.h
// 2Term
//
// Created by Kelvin Sherlock on 11/26/2011.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//
#import <AppKit/AppKit.h>
@interface TitleBarView : NSView
{
NSColor *_backgroundColor;
NSTextField *_label;
NSImage *_rightImage;
NSImage *_leftImage;
NSImage *_centerImage;
BOOL _dark;
}
@property (nonatomic, retain) NSColor *backgroundColor;
@property (nonatomic, retain) IBOutlet NSTextField *label;
@property (nonatomic, retain) NSString *title;
-(void)updateTitle;
-(void)fadeIn;
-(void)fadeOut;
@end