[7] | 1 | //
|
---|
| 2 | // FSAViewAssociationController.m
|
---|
| 3 | // F-Script Anywhere
|
---|
| 4 | //
|
---|
| 5 | // Created by Nicholas Riley on Wed Jul 17 2002.
|
---|
| 6 | // Copyright (c) 2002 Nicholas Riley. All rights reserved.
|
---|
| 7 | //
|
---|
| 8 |
|
---|
| 9 | /*
|
---|
| 10 |
|
---|
| 11 | F-Script Anywhere is free software; you can redistribute it and/or modify
|
---|
| 12 | it under the terms of the GNU General Public License as published by
|
---|
| 13 | the Free Software Foundation; either version 2 of the License, or
|
---|
| 14 | (at your option) any later version.
|
---|
| 15 |
|
---|
| 16 | F-Script Anywhere is distributed in the hope that it will be useful,
|
---|
| 17 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 19 | GNU General Public License for more details.
|
---|
| 20 |
|
---|
| 21 | You should have received a copy of the GNU General Public License
|
---|
| 22 | along with F-Script Anywhere; if not, write to the Free Software
|
---|
| 23 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
| 24 |
|
---|
| 25 | */
|
---|
| 26 |
|
---|
| 27 | #import "FSAViewAssociationController.h"
|
---|
[14] | 28 | #import "FSAController.h"
|
---|
[19] | 29 | #import "FSAWindowManager.h"
|
---|
[14] | 30 | #import "FSAnywhere.h"
|
---|
| 31 | #import <FScript/FSInterpreter.h>
|
---|
| 32 | #import <FScript/System.h>
|
---|
[7] | 33 |
|
---|
| 34 | @implementation FSAViewAssociationController
|
---|
| 35 |
|
---|
[14] | 36 | - (id)initWithFSAController:(FSAController *)fsa;
|
---|
[7] | 37 | {
|
---|
[224] | 38 | self = [super init];
|
---|
[7] | 39 |
|
---|
| 40 | if (self != nil) {
|
---|
[19] | 41 | NSImage *bullseyeImage = [[NSImage alloc] initByReferencingFile: [[NSBundle bundleForClass: [self class]] pathForResource: @"Bullseye menu cursor" ofType: @"tiff"]];
|
---|
| 42 | NSString *label = [fsa interpreterLabel];
|
---|
| 43 |
|
---|
[14] | 44 | interpreter = [[[fsa interpreterView] interpreter] retain];
|
---|
| 45 | system = [fsa system];
|
---|
[19] | 46 | [[self window] setResizeIncrements: NSMakeSize(1, 12)];
|
---|
| 47 | if (label != nil) [[self window] setTitle: [NSString stringWithFormat: @"%@: %@", [[self window] title], label]];
|
---|
| 48 | bullseyeCursor = [[NSCursor alloc] initWithImage: bullseyeImage hotSpot: NSMakePoint(6, 7)];
|
---|
[7] | 49 | }
|
---|
| 50 | return self;
|
---|
| 51 | }
|
---|
| 52 |
|
---|
| 53 | - (void)dealloc;
|
---|
| 54 | {
|
---|
| 55 | [viewHierarchyMenu release];
|
---|
[19] | 56 | [selectedElement release];
|
---|
[7] | 57 | [interpreter release];
|
---|
[19] | 58 | [bullseyeCursor release];
|
---|
[7] | 59 | [[NSNotificationCenter defaultCenter] removeObserver: self];
|
---|
| 60 | [super dealloc];
|
---|
| 61 | }
|
---|
| 62 |
|
---|
[19] | 63 | - (void)stopCapturingVoluntarily:(BOOL)voluntary;
|
---|
[7] | 64 | {
|
---|
[14] | 65 | FSALog(@"stopping capture");
|
---|
[19] | 66 | [[NSNotificationCenter defaultCenter] removeObserver: self name: NSMenuWillSendActionNotification object: nil];
|
---|
| 67 | if (voluntary) {
|
---|
| 68 | FSALog(@"voluntary!");
|
---|
| 69 | [[self window] makeKeyAndOrderFront: self];
|
---|
| 70 | [bullseyeCursor pop];
|
---|
| 71 | }
|
---|
[7] | 72 | }
|
---|
| 73 |
|
---|
[397] | 74 | - (void)_addElement:(id)element withLabel:(NSString *)label toSubmenuForItem:(NSMenuItem *)item;
|
---|
[19] | 75 | {
|
---|
| 76 | NSMenu *submenu = [item submenu];
|
---|
[397] | 77 | NSMenuItem *subItem;
|
---|
[19] | 78 | if (submenu == nil) {
|
---|
| 79 | id superElement = [item representedObject];
|
---|
| 80 | submenu = [[NSMenu alloc] initWithTitle: @""];
|
---|
| 81 | subItem = [submenu addItemWithTitle: NSStringFromClass([superElement class])
|
---|
| 82 | action: @selector(elementSelected:)
|
---|
| 83 | keyEquivalent: @""];
|
---|
| 84 | [subItem setTarget: self];
|
---|
| 85 | [subItem setRepresentedObject: superElement];
|
---|
| 86 | [item setSubmenu: submenu];
|
---|
| 87 | [submenu release];
|
---|
| 88 | }
|
---|
| 89 | [submenu addItem: [NSMenuItem separatorItem]];
|
---|
| 90 | [submenu addItemWithTitle: label action: nil keyEquivalent: @""];
|
---|
| 91 | subItem = [submenu addItemWithTitle: [@" "
|
---|
| 92 | stringByAppendingString: NSStringFromClass([element class])]
|
---|
| 93 | action: @selector(elementSelected:)
|
---|
| 94 | keyEquivalent: @""];
|
---|
| 95 | [subItem setTarget: self];
|
---|
| 96 | [subItem setRepresentedObject: element];
|
---|
| 97 | }
|
---|
| 98 |
|
---|
[397] | 99 | - (void)_addValueForSelector:(SEL)sel withLabel:(NSString *)label toSubmenuForItem:(NSMenuItem *)item;
|
---|
[19] | 100 | {
|
---|
| 101 | id obj = [item representedObject];
|
---|
| 102 | if ([obj respondsToSelector: sel]) {
|
---|
| 103 | id value = [obj performSelector: sel];
|
---|
| 104 | if (value == nil) return;
|
---|
| 105 | [self _addElement: value withLabel: label toSubmenuForItem: item];
|
---|
| 106 | }
|
---|
| 107 | }
|
---|
| 108 |
|
---|
[14] | 109 | - (void)_addElementToMenu:(id)element;
|
---|
| 110 | {
|
---|
[397] | 111 | NSMenuItem *item;
|
---|
[14] | 112 | if (element == nil) return;
|
---|
| 113 | item = [viewHierarchyMenu addItemWithTitle: [@" "
|
---|
| 114 | stringByAppendingString: NSStringFromClass([element class])]
|
---|
| 115 | action: @selector(elementSelected:)
|
---|
| 116 | keyEquivalent: @""];
|
---|
| 117 | [item setTarget: self];
|
---|
| 118 | [item setRepresentedObject: element];
|
---|
[19] | 119 | [self _addValueForSelector: @selector(windowController) withLabel: @"Window Controller" toSubmenuForItem: item];
|
---|
| 120 | [self _addValueForSelector: @selector(delegate) withLabel: @"Delegate" toSubmenuForItem: item];
|
---|
| 121 | [self _addValueForSelector: @selector(dataSource) withLabel: @"Data Source" toSubmenuForItem: item];
|
---|
| 122 | [self _addValueForSelector: @selector(target) withLabel: @"Target" toSubmenuForItem: item];
|
---|
| 123 | [self _addValueForSelector: @selector(cell) withLabel: @"Cell" toSubmenuForItem: item];
|
---|
[14] | 124 | }
|
---|
| 125 |
|
---|
[7] | 126 | - (void)captureOneView;
|
---|
| 127 | {
|
---|
| 128 | NSEvent *event;
|
---|
| 129 | NSView *view, *superView = nil, *contentView;
|
---|
| 130 | NSWindow *eventWindow;
|
---|
[19] | 131 | static unsigned captureCount = 0;
|
---|
| 132 | unsigned capture = captureCount++;
|
---|
| 133 |
|
---|
| 134 | FSALog(@"%4u>capturing one", capture);
|
---|
| 135 | [bullseyeCursor push];
|
---|
| 136 | captureElement:
|
---|
| 137 | [bullseyeCursor set];
|
---|
| 138 | FSALog(@"%4u waiting for event...", capture);
|
---|
| 139 | [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(menuWillSendAction:) name: NSMenuWillSendActionNotification object: nil];
|
---|
| 140 | event = [NSApp nextEventMatchingMask: NSLeftMouseDownMask | NSRightMouseDownMask | NSOtherMouseDownMask | NSKeyUpMask | NSAppKitDefinedMask
|
---|
[7] | 141 | untilDate: [NSDate distantFuture]
|
---|
| 142 | inMode: NSEventTrackingRunLoopMode
|
---|
| 143 | dequeue: YES];
|
---|
[19] | 144 | FSALog(@"%4u got %@", capture, event);
|
---|
| 145 | [[NSNotificationCenter defaultCenter] removeObserver: self name: NSMenuWillSendActionNotification object: nil];
|
---|
| 146 | if ([event type] == NSAppKitDefined) {
|
---|
| 147 | if ([event subtype] == NSApplicationDeactivatedEventType) {
|
---|
| 148 | [NSApp discardEventsMatchingMask: NSAnyEventMask beforeEvent: event];
|
---|
| 149 | [self stopCapturingVoluntarily: NO];
|
---|
| 150 | [NSApp sendEvent: event];
|
---|
| 151 | return;
|
---|
| 152 | }
|
---|
| 153 | goto captureElement;
|
---|
| 154 | }
|
---|
[7] | 155 | if ([event type] == NSKeyUp) {
|
---|
[19] | 156 | [NSApp discardEventsMatchingMask: NSAnyEventMask & ~NSKeyUpMask beforeEvent: event];
|
---|
| 157 | FSALog(@"%4u<stop capture [key up]", capture);
|
---|
| 158 | [self stopCapturingVoluntarily: YES];
|
---|
[7] | 159 | return;
|
---|
| 160 | }
|
---|
| 161 | [viewHierarchyMenu release]; viewHierarchyMenu = nil;
|
---|
| 162 | viewHierarchyMenu = [[NSMenu alloc] initWithTitle: @""];
|
---|
| 163 | NS_DURING
|
---|
| 164 | eventWindow = [event window];
|
---|
| 165 | contentView = [eventWindow contentView];
|
---|
| 166 | view = [[contentView superview] hitTest: [event locationInWindow]];
|
---|
[19] | 167 | if (view == nil) {
|
---|
| 168 | [self captureOneView];
|
---|
| 169 | NS_VOIDRETURN;
|
---|
| 170 | }
|
---|
[14] | 171 | [viewHierarchyMenu addItemWithTitle: @"View" action: nil keyEquivalent: @""];
|
---|
| 172 | [self _addElementToMenu: view];
|
---|
| 173 | superView = view;
|
---|
[7] | 174 | do {
|
---|
[14] | 175 | superView = [superView superview];
|
---|
[7] | 176 | if (superView == nil) break;
|
---|
[14] | 177 | [self _addElementToMenu: superView];
|
---|
[7] | 178 | } while (superView != contentView);
|
---|
| 179 | [viewHierarchyMenu addItem: [NSMenuItem separatorItem]];
|
---|
[14] | 180 | [viewHierarchyMenu addItemWithTitle: @"Window" action: nil keyEquivalent: @""];
|
---|
| 181 | [self _addElementToMenu: eventWindow];
|
---|
[7] | 182 | NS_HANDLER
|
---|
[403] | 183 | [self alertWithString:[NSString stringWithFormat: @"(an exception occurred: %@)", localException]];
|
---|
[7] | 184 | NS_ENDHANDLER
|
---|
| 185 | [NSMenu popUpContextMenu: viewHierarchyMenu withEvent: event forView: view];
|
---|
[224] | 186 | [self stopCapturingVoluntarily: YES];
|
---|
| 187 | // if ([captureButton state] == NSOnState) goto captureElement;
|
---|
[19] | 188 | FSALog(@"%4u<stop capture [fell through to end]", capture);
|
---|
[7] | 189 | }
|
---|
| 190 |
|
---|
| 191 | - (IBAction)captureView:(id)sender
|
---|
| 192 | {
|
---|
[19] | 193 | [selectedElement release]; selectedElement = nil;
|
---|
[7] | 194 | [self captureOneView];
|
---|
| 195 | }
|
---|
| 196 |
|
---|
[19] | 197 | - (void)setSelectedElement:(id)element;
|
---|
[7] | 198 | {
|
---|
[19] | 199 | FSALog(@"element selected: %@", element);
|
---|
[7] | 200 | NS_DURING
|
---|
[19] | 201 | [selectedElement release];
|
---|
| 202 | selectedElement = [element retain];
|
---|
| 203 | [[self window] orderFront: self];
|
---|
[7] | 204 | NS_HANDLER
|
---|
[403] | 205 | [self alertWithString:[NSString stringWithFormat: @"(an exception occurred: %@)", localException]];
|
---|
[7] | 206 | NS_ENDHANDLER
|
---|
| 207 | [viewHierarchyMenu release]; viewHierarchyMenu = nil;
|
---|
[19] | 208 | }
|
---|
| 209 |
|
---|
| 210 | - (void)elementSelected:(NSMenuItem *)sender;
|
---|
| 211 | {
|
---|
| 212 | [self setSelectedElement: [sender representedObject]];
|
---|
[224] | 213 | [system browse: selectedElement];
|
---|
| 214 | // [self captureOneView];
|
---|
[7] | 215 | }
|
---|
| 216 |
|
---|
[19] | 217 | - (void)menuWillSendAction:(NSNotification *)notification;
|
---|
| 218 | {
|
---|
| 219 | NSMenuItem *item = [[notification userInfo] objectForKey: @"MenuItem"];
|
---|
| 220 | [self setSelectedElement: item];
|
---|
| 221 | [NSApp discardEventsMatchingMask: NSAnyEventMask beforeEvent: [NSApp currentEvent]];
|
---|
| 222 | // we're already capturing, don't do it again
|
---|
| 223 | }
|
---|
| 224 |
|
---|
[224] | 225 | - (IBAction)viewInObjectBrowser:(id)sender;
|
---|
[19] | 226 | {
|
---|
[224] | 227 | FSALog(@"system: %@", system);
|
---|
| 228 | [system browse: selectedElement];
|
---|
[19] | 229 | }
|
---|
| 230 |
|
---|
[224] | 231 | - (void)alertWithString:(NSString *)alertString
|
---|
[7] | 232 | {
|
---|
[224] | 233 | [NSAlert alertWithMessageText:alertString
|
---|
| 234 | defaultButton:nil
|
---|
| 235 | alternateButton:nil
|
---|
| 236 | otherButton:nil
|
---|
| 237 | informativeTextWithFormat:nil];
|
---|
[7] | 238 | }
|
---|
| 239 |
|
---|
[19] | 240 | @end |
---|