Medianno/Medianno/MADocument.h

28 lines
742 B
C
Raw Normal View History

2011-08-09 22:55:31 +00:00
//
// MADocument.h
// Medianno
//
// Created by Matthias Neeracher on 8/10/11.
2011-08-14 01:03:54 +00:00
// Copyright 2011 Matthias Neeracher. All rights reserved.
2011-08-09 22:55:31 +00:00
//
#import <Cocoa/Cocoa.h>
2011-08-12 23:38:18 +00:00
#import <QTKit/QTKit.h>
@class MAMedia;
2011-08-13 17:02:18 +00:00
@class MATagDescription;
2011-08-13 19:43:02 +00:00
@class MAAnno;
2011-08-09 22:55:31 +00:00
@interface MADocument : NSPersistentDocument {
2011-08-12 15:54:10 +00:00
NSFileWrapper * mediaWrapper;
2011-08-09 22:55:31 +00:00
}
2011-08-12 13:46:50 +00:00
- (void)addMediaURL:(NSURL *)url name:(NSString *)name date:(NSDate *)date copying:(BOOL)copying;
2011-08-13 19:43:02 +00:00
- (MAAnno *)addAnnotationForMedia:(MAMedia *)media location:(QTTime)location;
2011-08-13 17:02:18 +00:00
- (MATagDescription *)tagDescriptionForName:(NSString *)name;
2011-08-18 15:57:51 +00:00
- (MATagDescription *)tagDescriptionForName:(NSString *)name notes:(NSString *)notes;
2011-08-13 17:02:18 +00:00
- (NSArray *)tagNamesMatchingPrefix:(NSString *)prefix;
2011-08-18 14:30:20 +00:00
- (NSSet *)allTags;
2011-08-12 00:00:37 +00:00
2011-08-09 22:55:31 +00:00
@end