git.ithinksw.org
/
ITKit.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Huge audit of ITKit, mostly everything has been updated to current coding
[ITKit.git]
/
ITCategory-NSMenu.m
diff --git
a/ITCategory-NSMenu.m
b/ITCategory-NSMenu.m
old mode 100755
(executable)
new mode 100644
(file)
index
80501bf
..
69d3c61
--- a/
ITCategory-NSMenu.m
+++ b/
ITCategory-NSMenu.m
@@
-1,13
+1,18
@@
#import "ITCategory-NSMenu.h"
#import "ITCategory-NSMenu.h"
-@interface NSMenu (HACKHACKHACKHACK)
+extern void _NSGetMenuItemForCommandKeyEvent(NSMenu *menu, void *chicken, void *taco, void *food);
+extern MenuRef _NSGetCarbonMenu(NSMenu *menu);
+
+@interface NSMenu (ITKitCategoryHacks)
- (id)_menuImpl;
@end
- (id)_menuImpl;
@end
-extern void _NSGetMenuItemForCommandKeyEvent (NSMenu *menu, void *chicken, void *taco, void *food);
-extern MenuRef _NSGetCarbonMenu( NSMenu *menu);
+@protocol _ITKitCategoryNSMenuItemPantherCompatability <NSMenuItem>
+- (int)indentationLevel;
+- (void)setIndentationLevel:(int)indentationLevel;
+@end
-@implementation NSMenu (ITCategory)
+@implementation NSMenu (IT
Kit
Category)
- (void)indentItem:(id <NSMenuItem>)item {
[self indentItem:item toLevel:1];
- (void)indentItem:(id <NSMenuItem>)item {
[self indentItem:item toLevel:1];
@@
-22,8
+27,9
@@
extern MenuRef _NSGetCarbonMenu( NSMenu *menu);
}
- (void)indentItemAtIndex:(int)index toLevel:(int)indentLevel {
}
- (void)indentItemAtIndex:(int)index toLevel:(int)indentLevel {
- if ([[self itemAtIndex:index] respondsToSelector:@selector(setIndentationLevel:)]) {
- (void)[[self itemAtIndex:index] setIndentationLevel:indentLevel];
+ id <NSMenuItem> theItem = [self itemAtIndex:index];
+ if ([theItem respondsToSelector:@selector(setIndentationLevel:)]) {
+ [(id <_ITKitCategoryNSMenuItemPantherCompatability>)theItem setIndentationLevel:indentLevel];
} else {
MenuRef carbonMenu = [self menuRef];
if (carbonMenu) {
} else {
MenuRef carbonMenu = [self menuRef];
if (carbonMenu) {
@@
-36,7
+42,7
@@
extern MenuRef _NSGetCarbonMenu( NSMenu *menu);
MenuRef carbonMenu;
int w00t, m00f;
MenuRef carbonMenu;
int w00t, m00f;
- if
( [self respondsToSelector:@selector(_menuImpl)]
) {
+ if
([self respondsToSelector:@selector(_menuImpl)]
) {
(void)[self _menuImpl];
} else {
return nil;
(void)[self _menuImpl];
} else {
return nil;
@@
-57,4
+63,4
@@
extern MenuRef _NSGetCarbonMenu( NSMenu *menu);
}
}
}
}
-@end
+@end
\ No newline at end of file