Browse Subversion Repository
Annotation of /XspfQT/XspfQTDocument.h
Parent Directory
| Revision Log
Revision 72 -
( hide annotations)
( download)
( as text)
Mon Sep 15 12:02:46 2008 UTC
(15 years, 7 months ago)
by masaki
File MIME type: text/x-chdr
File size: 826 byte(s)
プレフィクスXspfをXspfQTに変更。
| 1 |
masaki |
2 |
// |
| 2 |
masaki |
72 |
// XspfQTDocument.h |
| 3 |
masaki |
2 |
// XspfQT |
| 4 |
|
|
// |
| 5 |
|
|
// Created by Hori,Masaki on 08/08/29. |
| 6 |
|
|
// Copyright masakih 2008 . All rights reserved. |
| 7 |
|
|
// |
| 8 |
|
|
|
| 9 |
|
|
|
| 10 |
|
|
#import <Cocoa/Cocoa.h> |
| 11 |
|
|
#import <QTKit/QTKit.h> |
| 12 |
|
|
|
| 13 |
masaki |
72 |
@class XspfQTComponent; |
| 14 |
|
|
@class XspfQTMovieWindowController; |
| 15 |
masaki |
2 |
|
| 16 |
masaki |
72 |
@interface XspfQTDocument : NSDocument |
| 17 |
masaki |
2 |
{ |
| 18 |
masaki |
72 |
XspfQTComponent* trackList; |
| 19 |
|
|
XspfQTMovieWindowController *movieWindowController; |
| 20 |
masaki |
2 |
NSWindowController *playListWindowController; |
| 21 |
|
|
} |
| 22 |
|
|
|
| 23 |
masaki |
33 |
- (IBAction)togglePlayAndPause:(id)sender; |
| 24 |
masaki |
2 |
- (IBAction)showPlayList:(id)sender; |
| 25 |
masaki |
31 |
- (IBAction)dump:(id)sender; |
| 26 |
masaki |
2 |
|
| 27 |
masaki |
72 |
- (void)setTrackList:(XspfQTComponent *)newList; |
| 28 |
|
|
- (XspfQTComponent *)trackList; |
| 29 |
masaki |
2 |
|
| 30 |
|
|
- (void)setPlayTrackindex:(unsigned)index; |
| 31 |
|
|
|
| 32 |
masaki |
72 |
- (void)insertItem:(XspfQTComponent *)item atIndex:(NSInteger)index; |
| 33 |
|
|
- (void)removeItem:(XspfQTComponent *)item; |
| 34 |
masaki |
55 |
|
| 35 |
masaki |
2 |
@end |
| 36 |
masaki |
61 |
|
| 37 |
masaki |
72 |
extern NSString *XspfQTDocumentWillCloseNotification; |
|