mirror of
https://github.com/dyne/FreeJ.git
synced 2026-02-04 20:19:15 +01:00
24 lines
434 B
Objective-C
24 lines
434 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 {
|
|
NSImage *icon;
|
|
IBOutlet NSTextView *textView;
|
|
NSMutableDictionary *attributes;
|
|
bool live;
|
|
}
|
|
|
|
- (IBAction)startText:(id)sender;
|
|
- (IBAction)showFontMenu:(id)sender;
|
|
- (IBAction)doLive:(id)sender;
|
|
@end |