mirror of
https://github.com/dyne/FreeJ.git
synced 2026-02-09 06:19:20 +01:00
23 lines
415 B
Objective-C
23 lines
415 B
Objective-C
//
|
|
// CVTextLayerView.h
|
|
// freej
|
|
//
|
|
// Created by xant on 12/30/09.
|
|
// Copyright 2009 dyne.org. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import <CVLayerView.h>
|
|
|
|
|
|
|
|
@interface CVTextLayerView : CVLayerView {
|
|
IBOutlet NSTextView *textView;
|
|
NSMutableDictionary *attributes;
|
|
bool live;
|
|
}
|
|
|
|
- (IBAction)startText:(id)sender;
|
|
- (IBAction)showFontMenu:(id)sender;
|
|
- (IBAction)doLive:(id)sender;
|
|
@end |