mirror of
https://github.com/dyne/FreeJ.git
synced 2026-02-14 00:25:43 +01:00
22 lines
380 B
Objective-C
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
|