Browse Subversion Repository
Annotation of /XspfQT/XspfQTPreference.h
Parent Directory
| Revision Log
Revision 205 -
( hide annotations)
( download)
( as text)
Sun Mar 29 02:09:34 2009 UTC
(15 years ago)
by masaki
File MIME type: text/x-chdr
File size: 436 byte(s)
[Refactoring] 環境設定に関わる部分をXspfQTPreferenceとして切り出し。
| 1 |
masaki |
205 |
// |
| 2 |
|
|
// XspfQTPreference.h |
| 3 |
|
|
// XspfQT |
| 4 |
|
|
// |
| 5 |
|
|
// Created by Hori,Masaki on 09/03/29. |
| 6 |
|
|
// Copyright 2009 masakih. All rights reserved. |
| 7 |
|
|
// |
| 8 |
|
|
|
| 9 |
|
|
#import <Cocoa/Cocoa.h> |
| 10 |
|
|
|
| 11 |
|
|
|
| 12 |
|
|
@interface XspfQTPreference : NSObject |
| 13 |
|
|
{ |
| 14 |
|
|
CGFloat beginingPreloadPercent; |
| 15 |
|
|
} |
| 16 |
|
|
|
| 17 |
|
|
+ (XspfQTPreference *)sharedInstance; |
| 18 |
|
|
|
| 19 |
|
|
- (BOOL)preloadingEnabled; |
| 20 |
|
|
- (CGFloat)beginingPreloadPercent; |
| 21 |
|
|
- (void)setBeginingPreloadPercent:(CGFloat)newPercent; |
| 22 |
|
|
|
| 23 |
|
|
@end |
| 24 |
|
|
|
| 25 |
|
|
extern XspfQTPreference *XspfQTPref; |
|