2007-02-22 21:56:50 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-02-22 21:56:50 +00:00
|
|
|
|
2010-03-11 16:44:31 +00:00
|
|
|
#include "gfxImageSurface.h"
|
2007-02-22 21:56:50 +00:00
|
|
|
#include "nsCocoaUtils.h"
|
2011-08-17 22:30:52 +00:00
|
|
|
#include "nsChildView.h"
|
2008-03-27 03:42:57 +00:00
|
|
|
#include "nsMenuBarX.h"
|
|
|
|
#include "nsCocoaWindow.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIInterfaceRequestorUtils.h"
|
|
|
|
#include "nsIAppShellService.h"
|
|
|
|
#include "nsIXULWindow.h"
|
|
|
|
#include "nsIBaseWindow.h"
|
|
|
|
#include "nsIServiceManager.h"
|
2008-06-28 07:55:30 +00:00
|
|
|
#include "nsMenuUtilsX.h"
|
2008-09-25 14:54:01 +00:00
|
|
|
#include "nsToolkit.h"
|
2011-07-21 00:33:16 +00:00
|
|
|
#include "nsGUIEvent.h"
|
2012-09-29 11:36:09 +00:00
|
|
|
#include "mozilla/Preferences.h"
|
2007-12-05 23:17:08 +00:00
|
|
|
|
2012-09-29 11:36:09 +00:00
|
|
|
using namespace mozilla;
|
2012-04-25 03:00:02 +00:00
|
|
|
using namespace mozilla::widget;
|
|
|
|
|
2012-09-29 11:36:09 +00:00
|
|
|
static float
|
|
|
|
MenuBarScreenHeight()
|
2007-02-22 21:56:50 +00:00
|
|
|
{
|
2008-02-18 17:30:59 +00:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
2007-08-21 16:55:18 +00:00
|
|
|
NSArray* allScreens = [NSScreen screens];
|
2012-09-29 11:36:09 +00:00
|
|
|
if ([allScreens count]) {
|
2007-08-21 16:55:18 +00:00
|
|
|
return [[allScreens objectAtIndex:0] frame].size.height;
|
2012-09-29 11:36:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0.0;
|
2008-02-18 17:30:59 +00:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(0.0);
|
2007-08-21 16:55:18 +00:00
|
|
|
}
|
|
|
|
|
2012-09-29 11:36:09 +00:00
|
|
|
float
|
|
|
|
nsCocoaUtils::FlippedScreenY(float y)
|
2007-08-21 16:55:18 +00:00
|
|
|
{
|
|
|
|
return MenuBarScreenHeight() - y;
|
2007-02-22 21:56:50 +00:00
|
|
|
}
|
|
|
|
|
2009-01-15 03:27:09 +00:00
|
|
|
NSRect nsCocoaUtils::GeckoRectToCocoaRect(const nsIntRect &geckoRect)
|
2007-02-22 21:56:50 +00:00
|
|
|
{
|
2007-08-21 16:55:18 +00:00
|
|
|
// We only need to change the Y coordinate by starting with the primary screen
|
2012-09-29 11:36:09 +00:00
|
|
|
// height and subtracting the gecko Y coordinate of the bottom of the rect.
|
2007-02-22 21:56:50 +00:00
|
|
|
return NSMakeRect(geckoRect.x,
|
2012-09-29 11:36:09 +00:00
|
|
|
MenuBarScreenHeight() - geckoRect.YMost(),
|
2007-02-22 21:56:50 +00:00
|
|
|
geckoRect.width,
|
|
|
|
geckoRect.height);
|
2012-09-29 11:36:09 +00:00
|
|
|
}
|
2008-02-18 17:30:59 +00:00
|
|
|
|
2012-09-29 11:36:09 +00:00
|
|
|
NSRect nsCocoaUtils::GeckoRectToCocoaRectDevPix(const nsIntRect &aGeckoRect,
|
|
|
|
CGFloat aBackingScale)
|
|
|
|
{
|
|
|
|
return NSMakeRect(aGeckoRect.x / aBackingScale,
|
|
|
|
MenuBarScreenHeight() - aGeckoRect.YMost() / aBackingScale,
|
|
|
|
aGeckoRect.width / aBackingScale,
|
|
|
|
aGeckoRect.height / aBackingScale);
|
2007-02-22 21:56:50 +00:00
|
|
|
}
|
|
|
|
|
2009-01-15 03:27:09 +00:00
|
|
|
nsIntRect nsCocoaUtils::CocoaRectToGeckoRect(const NSRect &cocoaRect)
|
2007-02-22 21:56:50 +00:00
|
|
|
{
|
2007-08-21 16:55:18 +00:00
|
|
|
// We only need to change the Y coordinate by starting with the primary screen
|
2007-02-22 21:56:50 +00:00
|
|
|
// height and subtracting both the cocoa y origin and the height of the
|
|
|
|
// cocoa rect.
|
2009-01-15 03:27:09 +00:00
|
|
|
nsIntRect rect;
|
|
|
|
rect.x = NSToIntRound(cocoaRect.origin.x);
|
|
|
|
rect.y = NSToIntRound(FlippedScreenY(cocoaRect.origin.y + cocoaRect.size.height));
|
|
|
|
rect.width = NSToIntRound(cocoaRect.origin.x + cocoaRect.size.width) - rect.x;
|
|
|
|
rect.height = NSToIntRound(FlippedScreenY(cocoaRect.origin.y)) - rect.y;
|
|
|
|
return rect;
|
2007-02-22 21:56:50 +00:00
|
|
|
}
|
2007-12-05 23:17:08 +00:00
|
|
|
|
2012-09-29 11:36:09 +00:00
|
|
|
nsIntRect nsCocoaUtils::CocoaRectToGeckoRectDevPix(const NSRect &aCocoaRect,
|
|
|
|
CGFloat aBackingScale)
|
|
|
|
{
|
|
|
|
nsIntRect rect;
|
|
|
|
rect.x = NSToIntRound(aCocoaRect.origin.x * aBackingScale);
|
|
|
|
rect.y = NSToIntRound(FlippedScreenY(aCocoaRect.origin.y + aCocoaRect.size.height) * aBackingScale);
|
|
|
|
rect.width = NSToIntRound((aCocoaRect.origin.x + aCocoaRect.size.width) * aBackingScale) - rect.x;
|
|
|
|
rect.height = NSToIntRound(FlippedScreenY(aCocoaRect.origin.y) * aBackingScale) - rect.y;
|
|
|
|
return rect;
|
|
|
|
}
|
|
|
|
|
2007-12-05 23:17:08 +00:00
|
|
|
NSPoint nsCocoaUtils::ScreenLocationForEvent(NSEvent* anEvent)
|
|
|
|
{
|
2008-02-18 17:30:59 +00:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
2009-08-18 02:36:15 +00:00
|
|
|
// Don't trust mouse locations of mouse move events, see bug 443178.
|
2009-12-11 21:56:59 +00:00
|
|
|
if (!anEvent || [anEvent type] == NSMouseMoved)
|
2009-08-18 02:36:15 +00:00
|
|
|
return [NSEvent mouseLocation];
|
|
|
|
|
2011-08-17 22:30:52 +00:00
|
|
|
// Pin momentum scroll events to the location of the last user-controlled
|
|
|
|
// scroll event.
|
|
|
|
if (IsMomentumScrollEvent(anEvent))
|
|
|
|
return ChildViewMouseTracker::sLastScrollEventScreenLocation;
|
|
|
|
|
2007-12-05 23:17:08 +00:00
|
|
|
return [[anEvent window] convertBaseToScreen:[anEvent locationInWindow]];
|
2008-02-18 17:30:59 +00:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(NSMakePoint(0.0, 0.0));
|
2007-12-05 23:17:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL nsCocoaUtils::IsEventOverWindow(NSEvent* anEvent, NSWindow* aWindow)
|
|
|
|
{
|
2008-02-18 17:30:59 +00:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
2007-12-05 23:17:08 +00:00
|
|
|
return NSPointInRect(ScreenLocationForEvent(anEvent), [aWindow frame]);
|
2008-02-18 17:30:59 +00:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(NO);
|
2007-12-05 23:17:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NSPoint nsCocoaUtils::EventLocationForWindow(NSEvent* anEvent, NSWindow* aWindow)
|
|
|
|
{
|
2008-02-18 17:30:59 +00:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
2007-12-05 23:17:08 +00:00
|
|
|
return [aWindow convertScreenToBase:ScreenLocationForEvent(anEvent)];
|
2008-02-18 17:30:59 +00:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(NSMakePoint(0.0, 0.0));
|
2007-12-05 23:17:08 +00:00
|
|
|
}
|
|
|
|
|
2011-08-17 22:30:52 +00:00
|
|
|
BOOL nsCocoaUtils::IsMomentumScrollEvent(NSEvent* aEvent)
|
|
|
|
{
|
2012-06-20 18:34:45 +00:00
|
|
|
if ([aEvent type] != NSScrollWheel)
|
|
|
|
return NO;
|
|
|
|
|
|
|
|
if ([aEvent respondsToSelector:@selector(momentumPhase)])
|
|
|
|
return ([aEvent momentumPhase] & NSEventPhaseChanged) != 0;
|
|
|
|
|
|
|
|
if ([aEvent respondsToSelector:@selector(_scrollPhase)])
|
|
|
|
return [aEvent _scrollPhase] != 0;
|
|
|
|
|
|
|
|
return NO;
|
2011-08-17 22:30:52 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
void nsCocoaUtils::HideOSChromeOnScreen(bool aShouldHide, NSScreen* aScreen)
|
2009-07-22 09:01:37 +00:00
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
|
|
|
// Keep track of how many hiding requests have been made, so that they can
|
|
|
|
// be nested.
|
|
|
|
static int sMenuBarHiddenCount = 0, sDockHiddenCount = 0;
|
|
|
|
|
|
|
|
// Always hide the Dock, since it's not necessarily on the primary screen.
|
|
|
|
sDockHiddenCount += aShouldHide ? 1 : -1;
|
|
|
|
NS_ASSERTION(sMenuBarHiddenCount >= 0, "Unbalanced HideMenuAndDockForWindow calls");
|
|
|
|
|
|
|
|
// Only hide the menu bar if the window is on the same screen.
|
|
|
|
// The menu bar is always on the first screen in the screen list.
|
|
|
|
if (aScreen == [[NSScreen screens] objectAtIndex:0]) {
|
|
|
|
sMenuBarHiddenCount += aShouldHide ? 1 : -1;
|
|
|
|
NS_ASSERTION(sDockHiddenCount >= 0, "Unbalanced HideMenuAndDockForWindow calls");
|
|
|
|
}
|
|
|
|
|
2010-08-13 16:45:50 +00:00
|
|
|
// TODO This should be upgraded to use [NSApplication setPresentationOptions:]
|
|
|
|
// when support for 10.5 is dropped.
|
2009-07-22 09:01:37 +00:00
|
|
|
if (sMenuBarHiddenCount > 0) {
|
|
|
|
::SetSystemUIMode(kUIModeAllHidden, 0);
|
|
|
|
} else if (sDockHiddenCount > 0) {
|
|
|
|
::SetSystemUIMode(kUIModeContentHidden, 0);
|
|
|
|
} else {
|
|
|
|
::SetSystemUIMode(kUIModeNormal, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-27 03:42:57 +00:00
|
|
|
#define NS_APPSHELLSERVICE_CONTRACTID "@mozilla.org/appshell/appShellService;1"
|
|
|
|
nsIWidget* nsCocoaUtils::GetHiddenWindowWidget()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIAppShellService> appShell(do_GetService(NS_APPSHELLSERVICE_CONTRACTID));
|
|
|
|
if (!appShell) {
|
|
|
|
NS_WARNING("Couldn't get AppShellService in order to get hidden window ref");
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2008-03-27 03:42:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIXULWindow> hiddenWindow;
|
|
|
|
appShell->GetHiddenWindow(getter_AddRefs(hiddenWindow));
|
|
|
|
if (!hiddenWindow) {
|
|
|
|
// Don't warn, this happens during shutdown, bug 358607.
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2008-03-27 03:42:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIBaseWindow> baseHiddenWindow;
|
|
|
|
baseHiddenWindow = do_GetInterface(hiddenWindow);
|
|
|
|
if (!baseHiddenWindow) {
|
|
|
|
NS_WARNING("Couldn't get nsIBaseWindow from hidden window (nsIXULWindow)");
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2008-03-27 03:42:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> hiddenWindowWidget;
|
|
|
|
if (NS_FAILED(baseHiddenWindow->GetMainWidget(getter_AddRefs(hiddenWindowWidget)))) {
|
|
|
|
NS_WARNING("Couldn't get nsIWidget from hidden window (nsIBaseWindow)");
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2008-03-27 03:42:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return hiddenWindowWidget;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsCocoaUtils::PrepareForNativeAppModalDialog()
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
2008-04-03 03:58:45 +00:00
|
|
|
|
|
|
|
// Don't do anything if this is embedding. We'll assume that if there is no hidden
|
|
|
|
// window we shouldn't do anything, and that should cover the embedding case.
|
2008-06-28 07:55:30 +00:00
|
|
|
nsMenuBarX* hiddenWindowMenuBar = nsMenuUtilsX::GetHiddenWindowMenuBar();
|
2008-04-03 03:58:45 +00:00
|
|
|
if (!hiddenWindowMenuBar)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// First put up the hidden window menu bar so that app menu event handling is correct.
|
|
|
|
hiddenWindowMenuBar->Paint();
|
|
|
|
|
2008-03-27 03:42:57 +00:00
|
|
|
NSMenu* mainMenu = [NSApp mainMenu];
|
|
|
|
NS_ASSERTION([mainMenu numberOfItems] > 0, "Main menu does not have any items, something is terribly wrong!");
|
|
|
|
|
|
|
|
// Create new menu bar for use with modal dialog
|
|
|
|
NSMenu* newMenuBar = [[NSMenu alloc] initWithTitle:@""];
|
|
|
|
|
|
|
|
// Swap in our app menu. Note that the event target is whatever window is up when
|
|
|
|
// the app modal dialog goes up.
|
|
|
|
NSMenuItem* firstMenuItem = [[mainMenu itemAtIndex:0] retain];
|
|
|
|
[mainMenu removeItemAtIndex:0];
|
|
|
|
[newMenuBar insertItem:firstMenuItem atIndex:0];
|
|
|
|
[firstMenuItem release];
|
|
|
|
|
|
|
|
// Add standard edit menu
|
2008-06-28 07:55:30 +00:00
|
|
|
[newMenuBar addItem:nsMenuUtilsX::GetStandardEditMenuItem()];
|
2008-03-27 03:42:57 +00:00
|
|
|
|
|
|
|
// Show the new menu bar
|
|
|
|
[NSApp setMainMenu:newMenuBar];
|
|
|
|
[newMenuBar release];
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsCocoaUtils::CleanUpAfterNativeAppModalDialog()
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
2008-04-03 03:58:45 +00:00
|
|
|
|
|
|
|
// Don't do anything if this is embedding. We'll assume that if there is no hidden
|
|
|
|
// window we shouldn't do anything, and that should cover the embedding case.
|
2008-06-28 07:55:30 +00:00
|
|
|
nsMenuBarX* hiddenWindowMenuBar = nsMenuUtilsX::GetHiddenWindowMenuBar();
|
2008-04-03 03:58:45 +00:00
|
|
|
if (!hiddenWindowMenuBar)
|
|
|
|
return;
|
|
|
|
|
2008-03-27 03:42:57 +00:00
|
|
|
NSWindow* mainWindow = [NSApp mainWindow];
|
2008-04-03 03:58:45 +00:00
|
|
|
if (!mainWindow)
|
|
|
|
hiddenWindowMenuBar->Paint();
|
|
|
|
else
|
2008-03-27 03:42:57 +00:00
|
|
|
[WindowDelegate paintMenubarForWindow:mainWindow];
|
2008-04-03 03:58:45 +00:00
|
|
|
|
2008-03-27 03:42:57 +00:00
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
2010-03-11 16:44:31 +00:00
|
|
|
|
2010-03-25 16:07:36 +00:00
|
|
|
nsresult nsCocoaUtils::CreateCGImageFromSurface(gfxImageSurface *aFrame, CGImageRef *aResult)
|
2010-03-11 16:44:31 +00:00
|
|
|
{
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t width = aFrame->Width();
|
|
|
|
int32_t stride = aFrame->Stride();
|
|
|
|
int32_t height = aFrame->Height();
|
2010-03-11 16:44:31 +00:00
|
|
|
if ((stride % 4 != 0) || (height < 1) || (width < 1)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a CGImageRef with the bits from the image, taking into account
|
|
|
|
// the alpha ordering and endianness of the machine so we don't have to
|
|
|
|
// touch the bits ourselves.
|
|
|
|
CGDataProviderRef dataProvider = ::CGDataProviderCreateWithData(NULL,
|
2010-03-25 16:07:36 +00:00
|
|
|
aFrame->Data(),
|
2010-03-11 16:44:31 +00:00
|
|
|
stride * height,
|
|
|
|
NULL);
|
|
|
|
CGColorSpaceRef colorSpace = ::CGColorSpaceCreateWithName(kCGColorSpaceGenericRGB);
|
|
|
|
*aResult = ::CGImageCreate(width,
|
|
|
|
height,
|
|
|
|
8,
|
|
|
|
32,
|
|
|
|
stride,
|
|
|
|
colorSpace,
|
|
|
|
kCGBitmapByteOrder32Host | kCGImageAlphaFirst,
|
|
|
|
dataProvider,
|
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
kCGRenderingIntentDefault);
|
|
|
|
::CGColorSpaceRelease(colorSpace);
|
|
|
|
::CGDataProviderRelease(dataProvider);
|
|
|
|
return *aResult ? NS_OK : NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult nsCocoaUtils::CreateNSImageFromCGImage(CGImageRef aInputImage, NSImage **aResult)
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t width = ::CGImageGetWidth(aInputImage);
|
|
|
|
int32_t height = ::CGImageGetHeight(aInputImage);
|
2010-03-11 16:44:31 +00:00
|
|
|
NSRect imageRect = ::NSMakeRect(0.0, 0.0, width, height);
|
|
|
|
|
|
|
|
// Create a new image to receive the Quartz image data.
|
|
|
|
*aResult = [[NSImage alloc] initWithSize:imageRect.size];
|
|
|
|
|
|
|
|
[*aResult lockFocus];
|
|
|
|
|
|
|
|
// Get the Quartz context and draw.
|
|
|
|
CGContextRef imageContext = (CGContextRef)[[NSGraphicsContext currentContext] graphicsPort];
|
|
|
|
::CGContextDrawImage(imageContext, *(CGRect*)&imageRect, aInputImage);
|
|
|
|
|
|
|
|
[*aResult unlockFocus];
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
nsresult nsCocoaUtils::CreateNSImageFromImageContainer(imgIContainer *aImage, uint32_t aWhichFrame, NSImage **aResult)
|
2010-03-11 16:44:31 +00:00
|
|
|
{
|
2010-03-25 16:07:36 +00:00
|
|
|
nsRefPtr<gfxImageSurface> frame;
|
|
|
|
nsresult rv = aImage->CopyFrame(aWhichFrame,
|
|
|
|
imgIContainer::FLAG_SYNC_DECODE,
|
|
|
|
getter_AddRefs(frame));
|
|
|
|
if (NS_FAILED(rv) || !frame) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2010-03-11 16:44:31 +00:00
|
|
|
CGImageRef imageRef = NULL;
|
2010-03-25 16:07:36 +00:00
|
|
|
rv = nsCocoaUtils::CreateCGImageFromSurface(frame, &imageRef);
|
2010-03-11 16:44:31 +00:00
|
|
|
if (NS_FAILED(rv) || !imageRef) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = nsCocoaUtils::CreateNSImageFromCGImage(imageRef, aResult);
|
|
|
|
if (NS_FAILED(rv) || !aResult) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
::CGImageRelease(imageRef);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-07-21 00:33:16 +00:00
|
|
|
// static
|
|
|
|
void
|
|
|
|
nsCocoaUtils::GetStringForNSString(const NSString *aSrc, nsAString& aDist)
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
|
|
|
if (!aSrc) {
|
|
|
|
aDist.Truncate();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
aDist.SetLength([aSrc length]);
|
|
|
|
[aSrc getCharacters: aDist.BeginWriting()];
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
NSString*
|
|
|
|
nsCocoaUtils::ToNSString(const nsAString& aString)
|
|
|
|
{
|
|
|
|
return [NSString stringWithCharacters:aString.BeginReading()
|
|
|
|
length:aString.Length()];
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
void
|
|
|
|
nsCocoaUtils::GeckoRectToNSRect(const nsIntRect& aGeckoRect,
|
|
|
|
NSRect& aOutCocoaRect)
|
|
|
|
{
|
|
|
|
aOutCocoaRect.origin.x = aGeckoRect.x;
|
|
|
|
aOutCocoaRect.origin.y = aGeckoRect.y;
|
|
|
|
aOutCocoaRect.size.width = aGeckoRect.width;
|
|
|
|
aOutCocoaRect.size.height = aGeckoRect.height;
|
|
|
|
}
|
|
|
|
|
2012-09-29 11:36:09 +00:00
|
|
|
// static
|
|
|
|
void
|
|
|
|
nsCocoaUtils::NSRectToGeckoRect(const NSRect& aCocoaRect,
|
|
|
|
nsIntRect& aOutGeckoRect)
|
|
|
|
{
|
|
|
|
aOutGeckoRect.x = NSToIntRound(aCocoaRect.origin.x);
|
|
|
|
aOutGeckoRect.y = NSToIntRound(aCocoaRect.origin.y);
|
|
|
|
aOutGeckoRect.width = NSToIntRound(aCocoaRect.origin.x + aCocoaRect.size.width) - aOutGeckoRect.x;
|
|
|
|
aOutGeckoRect.height = NSToIntRound(aCocoaRect.origin.y + aCocoaRect.size.height) - aOutGeckoRect.y;
|
|
|
|
}
|
|
|
|
|
2011-07-21 00:33:16 +00:00
|
|
|
// static
|
|
|
|
NSEvent*
|
|
|
|
nsCocoaUtils::MakeNewCocoaEventWithType(NSEventType aEventType, NSEvent *aEvent)
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NIL;
|
|
|
|
|
|
|
|
NSEvent* newEvent =
|
|
|
|
[NSEvent keyEventWithType:aEventType
|
|
|
|
location:[aEvent locationInWindow]
|
|
|
|
modifierFlags:[aEvent modifierFlags]
|
|
|
|
timestamp:[aEvent timestamp]
|
|
|
|
windowNumber:[aEvent windowNumber]
|
|
|
|
context:[aEvent context]
|
|
|
|
characters:[aEvent characters]
|
|
|
|
charactersIgnoringModifiers:[aEvent charactersIgnoringModifiers]
|
|
|
|
isARepeat:[aEvent isARepeat]
|
|
|
|
keyCode:[aEvent keyCode]];
|
|
|
|
return newEvent;
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
void
|
|
|
|
nsCocoaUtils::InitNPCocoaEvent(NPCocoaEvent* aNPCocoaEvent)
|
|
|
|
{
|
|
|
|
memset(aNPCocoaEvent, 0, sizeof(NPCocoaEvent));
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
void
|
|
|
|
nsCocoaUtils::InitPluginEvent(nsPluginEvent &aPluginEvent,
|
|
|
|
NPCocoaEvent &aCocoaEvent)
|
|
|
|
{
|
|
|
|
aPluginEvent.time = PR_IntervalNow();
|
|
|
|
aPluginEvent.pluginEvent = (void*)&aCocoaEvent;
|
2011-10-01 00:20:33 +00:00
|
|
|
aPluginEvent.retargetToFocusedDocument = false;
|
2011-07-21 00:33:16 +00:00
|
|
|
}
|
2012-04-25 03:00:02 +00:00
|
|
|
|
|
|
|
// static
|
|
|
|
void
|
|
|
|
nsCocoaUtils::InitInputEvent(nsInputEvent &aInputEvent,
|
|
|
|
NSEvent* aNativeEvent)
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
|
|
|
NSUInteger modifiers =
|
2012-05-16 00:28:48 +00:00
|
|
|
aNativeEvent ? [aNativeEvent modifierFlags] : GetCurrentModifiers();
|
2012-04-25 03:00:02 +00:00
|
|
|
InitInputEvent(aInputEvent, modifiers);
|
|
|
|
|
|
|
|
aInputEvent.time = PR_IntervalNow();
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
void
|
|
|
|
nsCocoaUtils::InitInputEvent(nsInputEvent &aInputEvent,
|
|
|
|
NSUInteger aModifiers)
|
|
|
|
{
|
|
|
|
aInputEvent.modifiers = 0;
|
|
|
|
if (aModifiers & NSShiftKeyMask) {
|
|
|
|
aInputEvent.modifiers |= MODIFIER_SHIFT;
|
|
|
|
}
|
|
|
|
if (aModifiers & NSControlKeyMask) {
|
|
|
|
aInputEvent.modifiers |= MODIFIER_CONTROL;
|
|
|
|
}
|
|
|
|
if (aModifiers & NSAlternateKeyMask) {
|
|
|
|
aInputEvent.modifiers |= MODIFIER_ALT;
|
|
|
|
// Mac's option key is similar to other platforms' AltGr key.
|
|
|
|
// Let's set AltGr flag when option key is pressed for consistency with
|
|
|
|
// other platforms.
|
|
|
|
aInputEvent.modifiers |= MODIFIER_ALTGRAPH;
|
|
|
|
}
|
|
|
|
if (aModifiers & NSCommandKeyMask) {
|
|
|
|
aInputEvent.modifiers |= MODIFIER_META;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aModifiers & NSAlphaShiftKeyMask) {
|
|
|
|
aInputEvent.modifiers |= MODIFIER_CAPSLOCK;
|
|
|
|
}
|
|
|
|
// Mac doesn't have NumLock key. We can assume that NumLock is always locked
|
|
|
|
// if user is using a keyboard which has numpad. Otherwise, if user is using
|
|
|
|
// a keyboard which doesn't have numpad, e.g., MacBook's keyboard, we can
|
|
|
|
// assume that NumLock is always unlocked.
|
|
|
|
// Unfortunately, we cannot know whether current keyboard has numpad or not.
|
|
|
|
// We should notify locked state only when keys in numpad are pressed.
|
|
|
|
// By this, web applications may not be confused by unexpected numpad key's
|
|
|
|
// key event with unlocked state.
|
|
|
|
if (aModifiers & NSNumericPadKeyMask) {
|
|
|
|
aInputEvent.modifiers |= MODIFIER_NUMLOCK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Be aware, NSFunctionKeyMask is included when arrow keys, home key or some
|
|
|
|
// other keys are pressed. We cannot check whether 'fn' key is pressed or
|
|
|
|
// not by the flag.
|
|
|
|
|
|
|
|
}
|
2012-05-16 00:28:48 +00:00
|
|
|
|
|
|
|
// static
|
|
|
|
NSUInteger
|
|
|
|
nsCocoaUtils::GetCurrentModifiers()
|
|
|
|
{
|
|
|
|
// NOTE: [[NSApp currentEvent] modifiers] isn't useful because it sometime 0
|
|
|
|
// and we cannot check if it's actual state.
|
2012-05-17 07:53:20 +00:00
|
|
|
if (nsCocoaFeatures::OnSnowLeopardOrLater()) {
|
2012-05-16 00:28:48 +00:00
|
|
|
// XXX [NSEvent modifierFlags] returns "current" modifier state, so,
|
|
|
|
// it's not event-queue-synchronized. GetCurrentEventKeyModifiers()
|
|
|
|
// might be better, but it's Carbon API, we shouldn't use it as far as
|
|
|
|
// possible.
|
|
|
|
return [NSEvent modifierFlags];
|
|
|
|
}
|
|
|
|
|
|
|
|
// If [NSEvent modifierFlags] isn't available, use carbon API.
|
|
|
|
// GetCurrentEventKeyModifiers() might be better?
|
|
|
|
// It's event-queue-synchronized.
|
|
|
|
UInt32 carbonModifiers = ::GetCurrentKeyModifiers();
|
|
|
|
NSUInteger cocoaModifiers = 0;
|
|
|
|
|
|
|
|
if (carbonModifiers & alphaLock) {
|
|
|
|
cocoaModifiers |= NSAlphaShiftKeyMask;
|
|
|
|
}
|
|
|
|
if (carbonModifiers & (controlKey | rightControlKey)) {
|
|
|
|
cocoaModifiers |= NSControlKeyMask;
|
|
|
|
}
|
|
|
|
if (carbonModifiers & (optionKey | rightOptionKey)) {
|
|
|
|
cocoaModifiers |= NSAlternateKeyMask;
|
|
|
|
}
|
|
|
|
if (carbonModifiers & (shiftKey | rightShiftKey)) {
|
|
|
|
cocoaModifiers |= NSShiftKeyMask;
|
|
|
|
}
|
|
|
|
if (carbonModifiers & cmdKey) {
|
|
|
|
cocoaModifiers |= NSCommandKeyMask;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cocoaModifiers;
|
|
|
|
}
|
2012-09-29 11:36:09 +00:00
|
|
|
|
|
|
|
// While HiDPI support is not 100% complete and tested, we'll have a pref
|
|
|
|
// to allow it to be turned off in case of problems (or for testing purposes).
|
|
|
|
|
|
|
|
// gfx.hidpi.enabled is an integer with the meaning:
|
|
|
|
// <= 0 : HiDPI support is disabled
|
|
|
|
// 1 : HiDPI enabled provided all screens have the same backing resolution
|
|
|
|
// > 1 : HiDPI enabled even if there are a mixture of screen modes
|
|
|
|
|
|
|
|
// All the following code is to be removed once HiDPI work is more complete.
|
|
|
|
|
|
|
|
static bool sHiDPIEnabled = false;
|
|
|
|
static bool sHiDPIPrefInitialized = false;
|
|
|
|
|
|
|
|
@interface ScreenParamChangeWatcher : NSObject
|
|
|
|
- (id)init;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation ScreenParamChangeWatcher
|
|
|
|
- (id)init
|
|
|
|
{
|
|
|
|
[super init];
|
|
|
|
[[NSNotificationCenter defaultCenter]
|
|
|
|
addObserver:self
|
|
|
|
selector:@selector(applicationDidChangeScreenParameters:)
|
|
|
|
name:NSApplicationDidChangeScreenParametersNotification
|
|
|
|
object:NSApp];
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)applicationDidChangeScreenParameters:(NSNotification *)notification
|
|
|
|
{
|
|
|
|
// reset flags so that the next call to HiDPIEnabled() will re-evaluate
|
|
|
|
sHiDPIEnabled = false;
|
|
|
|
sHiDPIPrefInitialized = false;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
class HiDPIPrefObserver MOZ_FINAL : public nsIObserver {
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS1(HiDPIPrefObserver, nsIObserver)
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
HiDPIPrefObserver::Observe(nsISupports* aSubject, const char* aTopic,
|
|
|
|
const PRUnichar* aData)
|
|
|
|
{
|
|
|
|
// reset flags so that the next call to HiDPIEnabled() will re-evaluate
|
|
|
|
sHiDPIEnabled = false;
|
|
|
|
sHiDPIPrefInitialized = false;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
bool
|
|
|
|
nsCocoaUtils::HiDPIEnabled()
|
|
|
|
{
|
|
|
|
static ScreenParamChangeWatcher* sChangeWatcher = nil;
|
|
|
|
|
|
|
|
if (!sHiDPIPrefInitialized) {
|
|
|
|
sHiDPIPrefInitialized = true;
|
|
|
|
|
|
|
|
if (!sChangeWatcher) {
|
|
|
|
// Create an object to watch for changes in screen configuration.
|
|
|
|
// Note that we'll leak this object at shutdown;
|
|
|
|
// this is all a temporary hack until we have multi-screen HiDPI working
|
|
|
|
// properly and can dispense with this code.
|
|
|
|
sChangeWatcher = [[ScreenParamChangeWatcher alloc] init];
|
|
|
|
|
|
|
|
// And create an observer for changes to the preference.
|
|
|
|
nsCOMPtr<nsIObserver> obs(new HiDPIPrefObserver());
|
|
|
|
Preferences::AddStrongObserver(obs, "gfx.hidpi.enabled");
|
|
|
|
}
|
|
|
|
|
|
|
|
int prefSetting = Preferences::GetInt("gfx.hidpi.enabled", 1);
|
|
|
|
if (prefSetting <= 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// prefSetting is at least 1, need to check attached screens...
|
|
|
|
|
|
|
|
int scaleFactors = 0; // used as a bitset to track the screen types found
|
|
|
|
NSEnumerator *screenEnum = [[NSScreen screens] objectEnumerator];
|
|
|
|
while (NSScreen *screen = [screenEnum nextObject]) {
|
|
|
|
NSDictionary *desc = [screen deviceDescription];
|
|
|
|
if ([desc objectForKey:NSDeviceIsScreen] == nil) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
CGFloat scale =
|
|
|
|
[screen respondsToSelector:@selector(backingScaleFactor)] ?
|
|
|
|
[screen backingScaleFactor] : 1.0;
|
|
|
|
// Currently, we only care about differentiating "1.0" and "2.0",
|
|
|
|
// so we set one of the two low bits to record which.
|
|
|
|
if (scale > 1.0) {
|
|
|
|
scaleFactors |= 2;
|
|
|
|
} else {
|
|
|
|
scaleFactors |= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now scaleFactors will be:
|
|
|
|
// 0 if no screens (supporting backingScaleFactor) found
|
|
|
|
// 1 if only lo-DPI screens
|
|
|
|
// 2 if only hi-DPI screens
|
|
|
|
// 3 if both lo- and hi-DPI screens
|
|
|
|
// We'll enable HiDPI support if there's only a single screen type,
|
|
|
|
// OR if the pref setting is explicitly greater than 1.
|
|
|
|
sHiDPIEnabled = (scaleFactors <= 2) || (prefSetting > 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return sHiDPIEnabled;
|
|
|
|
}
|