return nil;
}
- /* The next two lines cause the DPI of the image to be ignored.
- This seems to be the behavior users expect. */
-#ifdef NS_IMPL_COCOA
-#if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6
- [image setScalesWhenResized: YES];
-#endif
-#endif
[image setSize: NSMakeSize([imgRep pixelsWide], [imgRep pixelsHigh])];
[image setName: [NSString stringWithUTF8String: SSDATA (file)]];
if ([bmr numberOfPlanes] >= 3)
[bmr getBitmapDataPlanes: pixmapData];
- /* The next two lines cause the DPI of the image to be ignored.
- This seems to be the behavior users expect. */
-#ifdef NS_IMPL_COCOA
-#if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6
- [self setScalesWhenResized: YES];
-#endif
-#endif
[self setSize: NSMakeSize([bmr pixelsWide], [bmr pixelsHigh])];
break;
area.size.width = ICONSIZE;
area.size.height= ICONSIZE;
img = [[NSImage imageNamed: @"NSApplicationIcon"] copy];
-#ifdef NS_IMPL_COCOA
-#if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6
- [img setScalesWhenResized: YES];
-#endif
-#endif
[img setSize: NSMakeSize (ICONSIZE, ICONSIZE)];
imgView = [[NSImageView alloc] initWithFrame: area];
[imgView setImage: img];
}
-#ifdef NS_IMPL_COCOA
-/* Needed to pick up Ctrl-tab and possibly other events that Mac OS X
- decided not to send key-down for.
- See http://osdir.com/ml/editors.vim.mac/2007-10/msg00141.html
- This only applies on Tiger and earlier.
- If it matches one of these, send it on to keyDown. */
--(void)keyUp: (NSEvent *)theEvent
-{
- int flags = [theEvent modifierFlags];
- int code = [theEvent keyCode];
-
- NSTRACE ("[EmacsView keyUp:]");
-
- if (floor (NSAppKitVersionNumber) <= 824 /*NSAppKitVersionNumber10_4*/ &&
- code == 0x30 && (flags & NSEventModifierFlagControl) && !(flags & NSEventModifierFlagCommand))
- {
- if (NS_KEYLOG)
- fprintf (stderr, "keyUp: passed test");
- ns_fake_keydown = YES;
- [self keyDown: theEvent];
- }
-}
-#endif
-
-
/* <NSTextInput> implementation (called through super interpretKeyEvents:]). */