TwoTerm/Views/TitleBarView.h
Kelvin Sherlock a5bf815f40 window images
git-svn-id: svn://qnap.local/TwoTerm/branches/frameless@2339 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
2011-12-21 01:40:16 +00:00

25 lines
459 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
{
NSTextField *_label;
NSImage *_rightImage;
NSImage *_leftImage;
NSImage *_centerImage;
}
@property (nonatomic, assign) IBOutlet NSTextField *label;
@property (nonatomic, assign) NSString *title;
-(void)fadeIn;
-(void)fadeOut;
@end