2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Josh Aas <josh@mozilla.com>
|
|
|
|
* Sylvain Pasche <sylvain.pasche@gmail.com>
|
2007-08-21 09:55:18 -07:00
|
|
|
* Stuart Morgan <stuart.morgan@alumni.case.edu>
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
2010-03-11 08:44:31 -08:00
|
|
|
#include "gfxImageSurface.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsCocoaUtils.h"
|
2011-08-17 15:30:52 -07:00
|
|
|
#include "nsChildView.h"
|
2008-03-26 20:42:57 -07: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 00:55:30 -07:00
|
|
|
#include "nsMenuUtilsX.h"
|
2008-09-25 07:54:01 -07:00
|
|
|
#include "nsToolkit.h"
|
2011-07-20 17:33:16 -07:00
|
|
|
#include "nsGUIEvent.h"
|
2007-12-05 15:17:08 -08:00
|
|
|
|
|
|
|
float nsCocoaUtils::MenuBarScreenHeight()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-02-18 09:30:59 -08:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
2007-08-21 09:55:18 -07:00
|
|
|
NSArray* allScreens = [NSScreen screens];
|
|
|
|
if ([allScreens count])
|
|
|
|
return [[allScreens objectAtIndex:0] frame].size.height;
|
|
|
|
else
|
2008-02-18 09:30:59 -08:00
|
|
|
return 0.0; // If there are no screens, there's not much we can say.
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(0.0);
|
2007-08-21 09:55:18 -07:00
|
|
|
}
|
|
|
|
|
2007-12-05 15:17:08 -08:00
|
|
|
float nsCocoaUtils::FlippedScreenY(float y)
|
2007-08-21 09:55:18 -07:00
|
|
|
{
|
|
|
|
return MenuBarScreenHeight() - y;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-01-14 19:27:09 -08:00
|
|
|
NSRect nsCocoaUtils::GeckoRectToCocoaRect(const nsIntRect &geckoRect)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-02-18 09:30:59 -08:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
2007-08-21 09:55:18 -07:00
|
|
|
// We only need to change the Y coordinate by starting with the primary screen
|
2007-03-22 10:30:00 -07:00
|
|
|
// height, subtracting the gecko Y coordinate, and subtracting the height.
|
|
|
|
return NSMakeRect(geckoRect.x,
|
2007-08-21 09:55:18 -07:00
|
|
|
MenuBarScreenHeight() - (geckoRect.y + geckoRect.height),
|
2007-03-22 10:30:00 -07:00
|
|
|
geckoRect.width,
|
|
|
|
geckoRect.height);
|
2008-02-18 09:30:59 -08:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(NSMakeRect(0.0, 0.0, 0.0, 0.0));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-01-14 19:27:09 -08:00
|
|
|
nsIntRect nsCocoaUtils::CocoaRectToGeckoRect(const NSRect &cocoaRect)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-08-21 09:55:18 -07:00
|
|
|
// We only need to change the Y coordinate by starting with the primary screen
|
2007-03-22 10:30:00 -07:00
|
|
|
// height and subtracting both the cocoa y origin and the height of the
|
|
|
|
// cocoa rect.
|
2009-01-14 19:27:09 -08: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-03-22 10:30:00 -07:00
|
|
|
}
|
2007-12-05 15:17:08 -08:00
|
|
|
|
|
|
|
NSPoint nsCocoaUtils::ScreenLocationForEvent(NSEvent* anEvent)
|
|
|
|
{
|
2008-02-18 09:30:59 -08:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
2009-08-17 19:36:15 -07:00
|
|
|
// Don't trust mouse locations of mouse move events, see bug 443178.
|
2009-12-11 13:56:59 -08:00
|
|
|
if (!anEvent || [anEvent type] == NSMouseMoved)
|
2009-08-17 19:36:15 -07:00
|
|
|
return [NSEvent mouseLocation];
|
|
|
|
|
2011-08-17 15:30:52 -07:00
|
|
|
// Pin momentum scroll events to the location of the last user-controlled
|
|
|
|
// scroll event.
|
|
|
|
if (IsMomentumScrollEvent(anEvent))
|
|
|
|
return ChildViewMouseTracker::sLastScrollEventScreenLocation;
|
|
|
|
|
2007-12-05 15:17:08 -08:00
|
|
|
return [[anEvent window] convertBaseToScreen:[anEvent locationInWindow]];
|
2008-02-18 09:30:59 -08:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(NSMakePoint(0.0, 0.0));
|
2007-12-05 15:17:08 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL nsCocoaUtils::IsEventOverWindow(NSEvent* anEvent, NSWindow* aWindow)
|
|
|
|
{
|
2008-02-18 09:30:59 -08:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
2007-12-05 15:17:08 -08:00
|
|
|
return NSPointInRect(ScreenLocationForEvent(anEvent), [aWindow frame]);
|
2008-02-18 09:30:59 -08:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(NO);
|
2007-12-05 15:17:08 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NSPoint nsCocoaUtils::EventLocationForWindow(NSEvent* anEvent, NSWindow* aWindow)
|
|
|
|
{
|
2008-02-18 09:30:59 -08:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
2007-12-05 15:17:08 -08:00
|
|
|
return [aWindow convertScreenToBase:ScreenLocationForEvent(anEvent)];
|
2008-02-18 09:30:59 -08:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(NSMakePoint(0.0, 0.0));
|
2007-12-05 15:17:08 -08:00
|
|
|
}
|
|
|
|
|
2011-08-17 15:30:52 -07:00
|
|
|
BOOL nsCocoaUtils::IsMomentumScrollEvent(NSEvent* aEvent)
|
|
|
|
{
|
|
|
|
return [aEvent type] == NSScrollWheel &&
|
|
|
|
[aEvent respondsToSelector:@selector(_scrollPhase)] &&
|
|
|
|
[aEvent _scrollPhase] != 0;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
void nsCocoaUtils::HideOSChromeOnScreen(bool aShouldHide, NSScreen* aScreen)
|
2009-07-22 02:01:37 -07: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 09:45:50 -07:00
|
|
|
// TODO This should be upgraded to use [NSApplication setPresentationOptions:]
|
|
|
|
// when support for 10.5 is dropped.
|
2009-07-22 02:01:37 -07: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-26 20:42:57 -07: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");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIXULWindow> hiddenWindow;
|
|
|
|
appShell->GetHiddenWindow(getter_AddRefs(hiddenWindow));
|
|
|
|
if (!hiddenWindow) {
|
|
|
|
// Don't warn, this happens during shutdown, bug 358607.
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIBaseWindow> baseHiddenWindow;
|
|
|
|
baseHiddenWindow = do_GetInterface(hiddenWindow);
|
|
|
|
if (!baseHiddenWindow) {
|
|
|
|
NS_WARNING("Couldn't get nsIBaseWindow from hidden window (nsIXULWindow)");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> hiddenWindowWidget;
|
|
|
|
if (NS_FAILED(baseHiddenWindow->GetMainWidget(getter_AddRefs(hiddenWindowWidget)))) {
|
|
|
|
NS_WARNING("Couldn't get nsIWidget from hidden window (nsIBaseWindow)");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hiddenWindowWidget;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsCocoaUtils::PrepareForNativeAppModalDialog()
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
2008-04-02 20:58:45 -07: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 00:55:30 -07:00
|
|
|
nsMenuBarX* hiddenWindowMenuBar = nsMenuUtilsX::GetHiddenWindowMenuBar();
|
2008-04-02 20:58:45 -07:00
|
|
|
if (!hiddenWindowMenuBar)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// First put up the hidden window menu bar so that app menu event handling is correct.
|
|
|
|
hiddenWindowMenuBar->Paint();
|
|
|
|
|
2008-03-26 20:42:57 -07: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 00:55:30 -07:00
|
|
|
[newMenuBar addItem:nsMenuUtilsX::GetStandardEditMenuItem()];
|
2008-03-26 20:42:57 -07: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-02 20:58:45 -07: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 00:55:30 -07:00
|
|
|
nsMenuBarX* hiddenWindowMenuBar = nsMenuUtilsX::GetHiddenWindowMenuBar();
|
2008-04-02 20:58:45 -07:00
|
|
|
if (!hiddenWindowMenuBar)
|
|
|
|
return;
|
|
|
|
|
2008-03-26 20:42:57 -07:00
|
|
|
NSWindow* mainWindow = [NSApp mainWindow];
|
2008-04-02 20:58:45 -07:00
|
|
|
if (!mainWindow)
|
|
|
|
hiddenWindowMenuBar->Paint();
|
|
|
|
else
|
2008-03-26 20:42:57 -07:00
|
|
|
[WindowDelegate paintMenubarForWindow:mainWindow];
|
2008-04-02 20:58:45 -07:00
|
|
|
|
2008-03-26 20:42:57 -07:00
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
2010-03-11 08:44:31 -08:00
|
|
|
|
2010-03-25 09:07:36 -07:00
|
|
|
nsresult nsCocoaUtils::CreateCGImageFromSurface(gfxImageSurface *aFrame, CGImageRef *aResult)
|
2010-03-11 08:44:31 -08:00
|
|
|
{
|
|
|
|
|
2010-03-25 09:07:36 -07:00
|
|
|
PRInt32 width = aFrame->Width();
|
|
|
|
PRInt32 stride = aFrame->Stride();
|
|
|
|
PRInt32 height = aFrame->Height();
|
2010-03-11 08:44:31 -08: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 09:07:36 -07:00
|
|
|
aFrame->Data(),
|
2010-03-11 08:44:31 -08: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;
|
|
|
|
|
|
|
|
PRInt32 width = ::CGImageGetWidth(aInputImage);
|
|
|
|
PRInt32 height = ::CGImageGetHeight(aInputImage);
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult nsCocoaUtils::CreateNSImageFromImageContainer(imgIContainer *aImage, PRUint32 aWhichFrame, NSImage **aResult)
|
|
|
|
{
|
2010-03-25 09:07:36 -07: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 08:44:31 -08:00
|
|
|
CGImageRef imageRef = NULL;
|
2010-03-25 09:07:36 -07:00
|
|
|
rv = nsCocoaUtils::CreateCGImageFromSurface(frame, &imageRef);
|
2010-03-11 08:44:31 -08: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-20 17:33:16 -07: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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-09-30 17:20:33 -07:00
|
|
|
aPluginEvent.retargetToFocusedDocument = false;
|
2011-07-20 17:33:16 -07:00
|
|
|
}
|