Browse Subversion Repository
Annotation of /XspfQT/XspfQTFullScreenWindow.m
Parent Directory
| Revision Log
| 1 |
masaki |
2 |
// |
| 2 |
|
|
// XspfFullScreenWindow.m |
| 3 |
|
|
// XspfQT |
| 4 |
|
|
// |
| 5 |
|
|
// Created by Hori,Masaki on 08/08/31. |
| 6 |
|
|
// Copyright 2008 masakih. All rights reserved. |
| 7 |
|
|
// |
| 8 |
|
|
|
| 9 |
|
|
#import "XspfFullScreenWindow.h" |
| 10 |
|
|
|
| 11 |
|
|
|
| 12 |
|
|
@implementation XspfFullScreenWindow |
| 13 |
|
|
- (BOOL)canBecomeKeyWindow |
| 14 |
|
|
{ |
| 15 |
|
|
return YES; |
| 16 |
|
|
} |
| 17 |
|
|
- (void)cancelOperation:(id)sender |
| 18 |
|
|
{ |
| 19 |
|
|
id d = [self delegate]; |
| 20 |
|
|
if(d && [d respondsToSelector:_cmd]) { |
| 21 |
|
|
[d performSelector:_cmd withObject:sender]; |
| 22 |
|
|
} |
| 23 |
|
|
|
| 24 |
|
|
[super cancelOperation:sender]; |
| 25 |
|
|
} |
| 26 |
|
|
@end |
|