mirror of
https://github.com/dyne/FreeJ.git
synced 2026-02-12 15:50:45 +01:00
- Separating view logic from the real layer implementations (so layers can be created programmatically and associated to a view only if/when necessary) - Separating the c++ glue classes from their related cocoa implementations
26 lines
432 B
Objective-C
26 lines
432 B
Objective-C
//
|
|
// CVFileInputView.h
|
|
// freej
|
|
//
|
|
// Created by xant on 9/2/09.
|
|
// Copyright 2009 dyne.org. All rights reserved.
|
|
//
|
|
|
|
#ifndef __CVFILEINPUTVIEW_H__
|
|
#define __CVFILEINPUTVIEW_H__
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "CVLayerView.h"
|
|
#import "CVFileInputController.h"
|
|
|
|
@interface CVFileInputView : CVLayerView {
|
|
}
|
|
|
|
- (IBAction)setMovieTime:(id)sender;
|
|
- (IBAction)openFile:(id)sender;
|
|
- (IBAction)togglePlay:(id)sender;
|
|
|
|
@end
|
|
|
|
#endif
|