/* Copyright (C) 2004 Michael Hanni. Author: Michael Hanni Date: 2004 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include #include #include #include #include #include "NSMenu+Hackery.h" @implementation NSMenu (HorizontalHackery) #define SHIFT_DELTA 18.0 - (void) shiftOnScreen { NSWindow *theWindow = _transient ? _bWindow : _aWindow; NSRect frameRect = [theWindow frame]; NSRect screenRect = [[NSScreen mainScreen] frame]; NSPoint vector = {0.0, 0.0}; BOOL moveIt = NO; // If we are the main menu forget about moving. if ([self isEqual: [NSApp mainMenu]]) return; // 1 - determine the amount we need to shift in the y direction. if (NSMinY (frameRect) < 0) { vector.y = MIN (SHIFT_DELTA, -NSMinY (frameRect)); moveIt = YES; } else if (NSMaxY (frameRect) > NSMaxY (screenRect)) { vector.y = -MIN (SHIFT_DELTA, NSMaxY (frameRect) - NSMaxY (screenRect)); moveIt = YES; } // 2 - determine the amount we need to shift in the x direction. if (NSMinX (frameRect) < 0) { vector.x = MIN (SHIFT_DELTA, -NSMinX (frameRect)); moveIt = YES; } // Note the -3. This is done so the menu, after shifting completely // has some spare room on the right hand side. This is needed otherwise // the user can never access submenus of this menu. else if (NSMaxX (frameRect) > NSMaxX (screenRect) - 3) { vector.x = -MIN (SHIFT_DELTA, NSMaxX (frameRect) - NSMaxX (screenRect) + 3); moveIt = YES; } // This has been hacked for horizontal menus, i.e. we only scroll the // menu that is off the screen. if (moveIt) { NSPoint masterLocation; NSPoint destinationPoint; masterLocation = [[self window] frame].origin; destinationPoint.x = masterLocation.x + vector.x; destinationPoint.y = masterLocation.y + vector.y; [self nestedSetFrameOrigin: destinationPoint]; } } - (void) _rightMouseDisplay: (NSEvent*)theEvent { NSLog(@"Right menu click disabled for the moment."); } - (void)setGeometry { NSPoint origin; origin = NSMakePoint (0, [[NSScreen mainScreen] frame].size.height - [_aWindow frame].size.height); [_aWindow setFrameOrigin: origin]; [_bWindow setFrameOrigin: origin]; } -(void) _updateUserDefaults:(id)notification { /* NSLog(@"not going to update because we don't use this and might mess something up for other menu layouts since they seem to draw from the bottom up and our bottom is really close to the top"); */ } - (void) _organizeMenu { NSMenu *appMenu = [[self itemWithTitle: [[NSProcessInfo processInfo] processName]] submenu]; if (![self isEqual: [NSApp mainMenu]]) return; if (appMenu == nil) { int i; NSMutableArray *itemsToMove = [NSMutableArray new]; NSMenuItem *appItem; NSImage *ti = [[NSApp applicationIconImage] copy]; float bar = [NSMenuView menuBarHeight] - 4; appMenu = [NSMenu new]; for (i = 0; i < [_items count]; i++) { NSMenuItem *anItem = [_items objectAtIndex: i]; NSString *title = [anItem title]; if (![anItem submenu]) { [itemsToMove addObject: anItem]; } if ([title isEqual: NSLocalizedString (@"Info", @"Info")]) { [itemsToMove addObject: anItem]; } } for (i = 0; i < [itemsToMove count]; i++) { [self removeItem: [itemsToMove objectAtIndex: i]]; [appMenu addItem: [itemsToMove objectAtIndex: i]]; } [self insertItemWithTitle: [[NSProcessInfo processInfo] processName] action: NULL keyEquivalent: @"" atIndex: 0]; appItem = (NSMenuItem *)[self itemWithTitle: [[NSProcessInfo processInfo] processName]]; if (!ti) ti = [[NSImage imageNamed: @"GNUstep.tiff"] copy]; [ti setScalesWhenResized: YES]; [ti setSize: NSMakeSize(bar, bar)]; [appItem setImage: ti]; RELEASE (ti); [self setSubmenu: appMenu forItem: appItem]; [itemsToMove release]; } else { int i; NSMutableArray *itemsToMove = [NSMutableArray new]; NSMenuItem *appItem = [self itemWithTitle: [[NSProcessInfo processInfo] processName]]; int index = [self indexOfItem: appItem]; NSImage *ti = [[NSApp applicationIconImage] copy]; float bar = [NSMenuView menuBarHeight] - 4; if (!ti) ti = [[NSImage imageNamed: @"GNUstep.tiff"] copy]; [ti setScalesWhenResized: YES]; [ti setSize: NSMakeSize(bar, bar)]; [appItem setImage: ti]; RELEASE (ti); if (index != 0) { RETAIN (appItem); [self removeItemAtIndex: index]; [self insertItem: appItem atIndex: 0]; RELEASE (appItem); } for (i = 0; i < [_items count]; i++) { NSMenuItem *anItem = [_items objectAtIndex: i]; NSString *title = [anItem title]; if (![anItem submenu]) { [itemsToMove addObject: anItem]; } if ([title isEqual: NSLocalizedString (@"Info", @"Info")]) { [itemsToMove addObject: anItem]; } } for (i = 0; i < [itemsToMove count]; i++) { [self removeItem: [itemsToMove objectAtIndex: i]]; [appMenu addItem: [itemsToMove objectAtIndex: i]]; } [itemsToMove release]; } } @end