Files
FreeJ/xcode/CVFileInputView.h
Xant 3326a82f2c Refactoring the osx project (WIP)
- 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
2009-09-11 22:14:25 +02:00

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