Browse Subversion Repository
Annotation of /XspfManager/XspfMCollectionView.h
Parent Directory
| Revision Log
Revision 327 -
( hide annotations)
( download)
( as text)
Tue Feb 9 14:47:28 2010 UTC
(14 years, 2 months ago)
by masaki
File MIME type: text/x-chdr
File size: 607 byte(s)
[Fix] 10.6で正しくDelegateが設定されない問題を解消。
| 1 |
masaki |
10 |
// |
| 2 |
|
|
// XspfMCollectionView.h |
| 3 |
|
|
// XspfManager |
| 4 |
|
|
// |
| 5 |
|
|
// Created by Hori,Masaki on 09/11/03. |
| 6 |
|
|
// Copyright 2009 masakih. All rights reserved. |
| 7 |
|
|
// |
| 8 |
|
|
|
| 9 |
|
|
#import <Cocoa/Cocoa.h> |
| 10 |
|
|
|
| 11 |
|
|
@protocol XspfMCollectionView_Delegate; |
| 12 |
|
|
|
| 13 |
|
|
@interface XspfMCollectionView : NSCollectionView |
| 14 |
|
|
{ |
| 15 |
|
|
IBOutlet id<XspfMCollectionView_Delegate> delegate; |
| 16 |
masaki |
110 |
|
| 17 |
|
|
BOOL draggingHilight; |
| 18 |
masaki |
10 |
} |
| 19 |
masaki |
327 |
@property (assign) IBOutlet id<XspfMCollectionView_Delegate> delegate; |
| 20 |
masaki |
10 |
|
| 21 |
|
|
@end |
| 22 |
|
|
|
| 23 |
masaki |
304 |
@interface XspfMCollectionView(CocoaPrivateMethods) |
| 24 |
|
|
- (id)itemAtIndex:(unsigned int)index; |
| 25 |
|
|
@end |
| 26 |
|
|
|
| 27 |
masaki |
10 |
@protocol XspfMCollectionView_Delegate |
| 28 |
|
|
- (void)enterAction:(XspfMCollectionView *)view; |
| 29 |
|
|
@end |
|