mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-22 07:30:40 +00:00
a5bf815f40
git-svn-id: svn://qnap.local/TwoTerm/branches/frameless@2339 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
22 lines
373 B
Objective-C
22 lines
373 B
Objective-C
//
|
|
// TermContentView.h
|
|
// 2Term
|
|
//
|
|
// Created by Kelvin Sherlock on 11/26/2011.
|
|
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "CurveView.h"
|
|
|
|
@class TitleBarView;
|
|
|
|
@interface TermContentView : CurveView
|
|
{
|
|
NSTrackingArea *_trackingArea;
|
|
TitleBarView *_titleBar;
|
|
}
|
|
|
|
@property (nonatomic, assign) IBOutlet TitleBarView *titleBar;
|
|
|
|
@end
|