Files
FreeJ/xcode/CVTextLayer.h
2009-06-18 02:02:56 +02:00

22 lines
380 B
Objective-C

//
// CVTextLayer.h
// freej
//
// Created by xant on 6/11/09.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <CVLayer.h>
#import <GLString.h>
@interface CVTextLayer : CVLayerView {
GLString *theString;
NSString *text;
bool needsNewFrame;
IBOutlet NSTextView *textView;
}
- (IBAction)startText:(id)sender;
@end