Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /XspfQT/XspfQTDocument.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 370 - (hide annotations) (download) (as text)
Sun Mar 4 00:49:44 2012 UTC (12 years, 1 month ago) by masakih
File MIME type: text/x-chdr
File size: 4699 byte(s)
[Mod] XspfQTDocumentにプロパティ

1 masaki 2 //
2 masaki 72 // XspfQTDocument.h
3 masaki 2 // XspfQT
4     //
5     // Created by Hori,Masaki on 08/08/29.
6     //
7    
8 masakih 312 /*
9 masakih 316 This source code is release under the New BSD License.
10 masakih 370 Copyright (c) 2008-2010,2012 masakih
11 masakih 312 All rights reserved.
12    
13 masakih 316 ソースコード形式かバイナリ形式か、変更するかしないかを問わず、以下の条件を満たす場合に
14     限り、再頒布および使用が許可されます。
15    
16     1, ソースコードを再頒布する場合、上記の著作権表示、本条件一覧、および下記免責条項を含
17     めること。
18     2, バイナリ形式で再頒布する場合、頒布物に付属のドキュメント等の資料に、上記の著作権表
19     示、本条件一覧、および下記免責条項を含めること。
20     3, 書面による特別の許可なしに、本ソフトウェアから派生した製品の宣伝または販売促進に、
21     コントリビューターの名前を使用してはならない。
22     本ソフトウェアは、著作権者およびコントリビューターによって「現状のまま」提供されており、
23     明示黙示を問わず、商業的な使用可能性、および特定の目的に対する適合性に関する暗黙の保証
24     も含め、またそれに限定されない、いかなる保証もありません。著作権者もコントリビューター
25     も、事由のいかんを問わず、 損害発生の原因いかんを問わず、かつ責任の根拠が契約であるか
26     厳格責任であるか(過失その他の)不法行為であるかを問わず、仮にそのような損害が発生する
27     可能性を知らされていたとしても、本ソフトウェアの使用によって発生した(代替品または代用
28     サービスの調達、使用の喪失、データの喪失、利益の喪失、業務の中断も含め、またそれに限定
29     されない)直接損害、間接損害、偶発的な損害、特別損害、懲罰的損害、または結果損害につい
30     て、一切責任を負わないものとします。
31 masakih 312 -------------------------------------------------------------------
32 masakih 370 Copyright (c) 2008-2010,2012 masakih
33 masakih 312 All rights reserved.
34    
35 masakih 316 Redistribution and use in source and binary forms, with or without
36     modification, are permitted provided that the following conditions
37     are met:
38 masakih 312
39 masakih 316 1, Redistributions of source code must retain the above copyright
40     notice, this list of conditions and the following disclaimer.
41     2, Redistributions in binary form must reproduce the above copyright
42     notice, this list of conditions and the following disclaimer in
43     the documentation and/or other materials provided with the
44     distribution.
45     3, The names of its contributors may be used to endorse or promote
46     products derived from this software without specific prior
47     written permission.
48     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
49     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
50     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
51     FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
52     COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
53     INCIDENTAL, SPECIAL,EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
54     BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
55     LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
56     CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
57     LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
58     ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
59     POSSIBILITY OF SUCH DAMAGE.
60 masakih 312 */
61 masaki 2
62 masakih 312
63 masaki 2 #import <Cocoa/Cocoa.h>
64     #import <QTKit/QTKit.h>
65    
66 masaki 306 @class HMXSPFComponent;
67 masaki 72 @class XspfQTMovieWindowController;
68 masakih 329 @class XspfQTPlayListWindowController;
69 masaki 2
70 masaki 182 @class XspfQTMovieLoader;
71 masaki 171 @class QTMovie;
72    
73 masaki 72 @interface XspfQTDocument : NSDocument
74 masaki 2 {
75 masaki 72 XspfQTMovieWindowController *movieWindowController;
76 masakih 329 XspfQTPlayListWindowController *playListWindowController;
77 masaki 171
78 masakih 370 #ifndef __LP64__
79     HMXSPFComponent* _playlist;
80     QTMovie *_playingMovie;
81     XspfQTMovieLoader *_loader;
82     NSTimeInterval _playingMovieDuration;
83     BOOL _didPreloading;
84     #endif
85 masaki 2 }
86 masakih 370 @property (readonly) HMXSPFComponent *trackList;
87 masaki 2
88 masaki 33 - (IBAction)togglePlayAndPause:(id)sender;
89 masaki 2 - (IBAction)showPlayList:(id)sender;
90    
91 masaki 281 - (IBAction)setThumbnailFrame:(id)sender;
92     - (IBAction)removeThumbnail:(id)sender;
93 masaki 269
94 masaki 306 - (void)insertComponent:(HMXSPFComponent *)item atIndex:(NSUInteger)index;
95     - (void)removeComponent:(HMXSPFComponent *)item;
96     - (void)moveComponent:(HMXSPFComponent *)item toIndex:(NSUInteger)index;
97 masaki 55
98 masaki 89 // throw self, if can not insert.
99     - (void)insertComponentFromURL:(NSURL *)url atIndex:(NSUInteger)index;
100    
101 masaki 2 @end
102 masaki 61
103 masaki 72 extern NSString *XspfQTDocumentWillCloseNotification;

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26