-
Notifications
You must be signed in to change notification settings - Fork 0
/
JMPieMenu.m
158 lines (124 loc) · 2.55 KB
/
JMPieMenu.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
//
// JMPieMenu.m
// Julian's Cocoa Pie Menu
//
// Created by Julian Missig on 20 Nov 05.
//
#import "JMPieMenu.h"
#import "JMPieMenuItem.h"
#import "JMPieMenuView.h"
#import "JMPieMenuWindow.h"
@implementation JMPieMenu
- (id)init
{
self = [super init];
if (self == nil)
return self;
_view = [[JMPieMenuView alloc] initWithMenu:self];
_supermenu = nil;
_items = [[NSMutableArray alloc] initWithCapacity:4];
_markingLineEnabled = YES;
return self;
}
- (void)dealloc
{
if (_window)
[self close];
[_supermenu release];
[_view release];
[_window release];
[super dealloc];
}
- (NSString *)description
{
return [NSString stringWithFormat:@"Pie Menu with window: %@ and view: %@", _window, _view];
}
- (NSArray *)items
{
return _items;
}
- (JMPieMenuView *)view
{
return _view;
}
- (void)displayOnScreen:(NSScreen *)aScreen
{
[_view moveToCenter:[NSEvent mouseLocation]];
_window = [[JMPieMenuWindow alloc] initOnScreen:aScreen
withView:_view];
// [_window startAnimation];
[_window makeKeyAndOrderFront:nil];
[_window setAcceptsMouseMovedEvents:YES];
[_window makeFirstResponder:_view];
}
- (void)display
{
[self displayOnScreen:[NSScreen mainScreen]];
}
- (void)displayFromEvent:(NSEvent *)theEvent
{
[self displayOnScreen:[[theEvent window] screen]];
}
- (void)close
{
[_window close];
//[_window release];
//_window = nil;
}
- (void)setMarkingLineEnabled:(BOOL)flag
{
_markingLineEnabled = flag;
// Set marking line flag on submenus if available
JMPieMenuItem *item;
NSEnumerator *iter = [_items objectEnumerator];
while (item = [iter nextObject])
{
if ([item hasSubmenu])
{
[[item submenu] setMarkingLineEnabled:flag];
}
}
}
- (BOOL)markingLineEnabled
{
return _markingLineEnabled;
}
- (void)addItem:(JMPieMenuItem *)newItem
{
[_items addObject:newItem];
// View is dirty now
[_view release];
_view = [[JMPieMenuView alloc] initWithMenu:self];
if (_window)
{
[_window setContentView:_view];
[_window makeFirstResponder:_view];
}
}
- (id)addItemWithTitle:(NSString *)aString action:(SEL)aSelector
{
JMPieMenuItem *newItem = [[JMPieMenuItem alloc] initWithTitle:aString action:aSelector];
[self addItem:newItem];
[newItem autorelease];
return newItem;
}
- (void)setSubmenu:(JMPieMenu *)aMenu forItem:(JMPieMenuItem *)anItem
{
[anItem setSubmenu:aMenu];
[aMenu setSupermenu:self];
}
- (void)setSupermenu:(JMPieMenu *)aMenu
{
[aMenu retain];
[_supermenu release];
_supermenu = aMenu;
}
- (JMPieMenu *)supermenu
{
return _supermenu;
}
- (void)submenuAction:(id)sender
{
[self display];
}
@end