2006-11-22 03:48:57 +03:00
|
|
|
/* -*- Mode: objc; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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/. */
|
2001-11-06 18:35:24 +03:00
|
|
|
|
2013-12-09 06:52:54 +04:00
|
|
|
#include "mozilla/ArrayUtils.h"
|
2011-10-11 09:50:08 +04:00
|
|
|
|
2015-05-19 21:15:34 +03:00
|
|
|
#include "mozilla/Logging.h"
|
2010-06-28 04:25:04 +04:00
|
|
|
|
2005-06-26 07:25:52 +04:00
|
|
|
#include <unistd.h>
|
2011-08-11 21:42:23 +04:00
|
|
|
#include <math.h>
|
2014-04-23 03:23:18 +04:00
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
#include "nsChildView.h"
|
2007-07-18 00:29:39 +04:00
|
|
|
#include "nsCocoaWindow.h"
|
2005-06-26 07:25:52 +04:00
|
|
|
|
2013-09-25 15:21:20 +04:00
|
|
|
#include "mozilla/MiscEvents.h"
|
2013-09-25 15:21:18 +04:00
|
|
|
#include "mozilla/MouseEvents.h"
|
2013-09-25 15:21:19 +04:00
|
|
|
#include "mozilla/TextEvents.h"
|
2013-09-25 15:21:16 +04:00
|
|
|
#include "mozilla/TouchEvents.h"
|
|
|
|
|
2008-02-21 02:47:05 +03:00
|
|
|
#include "nsObjCExceptions.h"
|
2001-11-06 18:35:24 +03:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsToolkit.h"
|
2002-12-13 11:43:18 +03:00
|
|
|
#include "nsCRT.h"
|
2005-06-26 07:25:52 +04:00
|
|
|
|
2011-04-08 05:05:49 +04:00
|
|
|
#include "nsFontMetrics.h"
|
2001-11-06 18:35:24 +03:00
|
|
|
#include "nsIRollupListener.h"
|
2013-01-05 07:12:24 +04:00
|
|
|
#include "nsViewManager.h"
|
2004-09-20 16:51:31 +04:00
|
|
|
#include "nsIInterfaceRequestor.h"
|
2012-06-06 06:08:30 +04:00
|
|
|
#include "nsIFile.h"
|
2007-07-17 06:24:05 +04:00
|
|
|
#include "nsILocalFileMac.h"
|
2006-11-10 01:58:11 +03:00
|
|
|
#include "nsGfxCIID.h"
|
2009-06-18 07:39:22 +04:00
|
|
|
#include "nsIDOMSimpleGestureEvent.h"
|
2011-01-11 16:03:16 +03:00
|
|
|
#include "nsThemeConstants.h"
|
2012-08-15 22:52:42 +04:00
|
|
|
#include "nsIWidgetListener.h"
|
2012-10-17 23:50:06 +04:00
|
|
|
#include "nsIPresShell.h"
|
2006-11-10 01:58:11 +03:00
|
|
|
|
2006-10-26 02:45:22 +04:00
|
|
|
#include "nsDragService.h"
|
2009-03-18 05:04:01 +03:00
|
|
|
#include "nsClipboard.h"
|
2006-12-20 05:13:57 +03:00
|
|
|
#include "nsCursorManager.h"
|
|
|
|
#include "nsWindowMap.h"
|
2012-05-17 11:53:20 +04:00
|
|
|
#include "nsCocoaFeatures.h"
|
2007-02-23 00:56:50 +03:00
|
|
|
#include "nsCocoaUtils.h"
|
2008-10-30 08:36:01 +03:00
|
|
|
#include "nsMenuUtilsX.h"
|
2008-01-29 09:11:06 +03:00
|
|
|
#include "nsMenuBarX.h"
|
2014-03-14 17:13:31 +04:00
|
|
|
#include "NativeKeyBindings.h"
|
2015-02-20 19:37:02 +03:00
|
|
|
#include "ComplexTextInputPanel.h"
|
2006-11-10 01:58:11 +03:00
|
|
|
|
2006-02-22 04:31:14 +03:00
|
|
|
#include "gfxContext.h"
|
|
|
|
#include "gfxQuartzSurface.h"
|
2013-05-23 18:49:17 +04:00
|
|
|
#include "gfxUtils.h"
|
2009-11-10 04:00:36 +03:00
|
|
|
#include "nsRegion.h"
|
2010-04-28 02:29:29 +04:00
|
|
|
#include "Layers.h"
|
2013-05-10 01:02:50 +04:00
|
|
|
#include "ClientLayerManager.h"
|
2013-04-26 02:25:33 +04:00
|
|
|
#include "mozilla/layers/LayerManagerComposite.h"
|
2016-01-27 00:03:37 +03:00
|
|
|
#include "GfxTexturesReporter.h"
|
2013-04-17 01:35:57 +04:00
|
|
|
#include "GLTextureImage.h"
|
2013-07-09 08:21:05 +04:00
|
|
|
#include "GLContextProvider.h"
|
2014-01-08 00:02:18 +04:00
|
|
|
#include "GLContextCGL.h"
|
2013-12-03 22:44:38 +04:00
|
|
|
#include "GLUploadHelpers.h"
|
2014-01-08 00:02:18 +04:00
|
|
|
#include "ScopedGLHelpers.h"
|
2014-05-28 13:45:02 +04:00
|
|
|
#include "HeapCopyOfStackArray.h"
|
2014-06-04 16:44:27 +04:00
|
|
|
#include "mozilla/layers/APZCTreeManager.h"
|
2015-04-07 23:53:41 +03:00
|
|
|
#include "mozilla/layers/APZThreadUtils.h"
|
2013-04-17 01:35:57 +04:00
|
|
|
#include "mozilla/layers/GLManager.h"
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 13:20:52 +04:00
|
|
|
#include "mozilla/layers/CompositorOGL.h"
|
2016-03-22 21:08:38 +03:00
|
|
|
#include "mozilla/layers/CompositorBridgeParent.h"
|
2013-07-09 08:21:05 +04:00
|
|
|
#include "mozilla/layers/BasicCompositor.h"
|
2015-11-27 19:33:50 +03:00
|
|
|
#include "mozilla/layers/InputAPZContext.h"
|
2013-07-09 08:21:05 +04:00
|
|
|
#include "gfxUtils.h"
|
2014-06-04 16:44:27 +04:00
|
|
|
#include "gfxPrefs.h"
|
2013-07-09 08:21:05 +04:00
|
|
|
#include "mozilla/gfx/2D.h"
|
2013-09-23 07:28:16 +04:00
|
|
|
#include "mozilla/gfx/BorrowedContext.h"
|
2012-06-07 04:26:45 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
#include "nsAccessibilityService.h"
|
2012-12-02 04:58:25 +04:00
|
|
|
#include "mozilla/a11y/Platform.h"
|
2012-06-07 04:26:45 +04:00
|
|
|
#endif
|
2013-07-20 01:21:25 +04:00
|
|
|
#ifdef MOZ_CRASHREPORTER
|
|
|
|
#include "nsExceptionHandler.h"
|
|
|
|
#endif
|
2006-08-31 02:06:44 +04:00
|
|
|
|
2011-05-27 12:15:20 +04:00
|
|
|
#include "mozilla/Preferences.h"
|
|
|
|
|
2008-05-09 02:03:46 +04:00
|
|
|
#include <dlfcn.h>
|
|
|
|
|
2009-04-22 03:53:52 +04:00
|
|
|
#include <ApplicationServices/ApplicationServices.h>
|
|
|
|
|
2013-03-18 18:25:50 +04:00
|
|
|
#include "GeckoProfiler.h"
|
2012-01-18 00:33:04 +04:00
|
|
|
|
2012-08-12 05:42:37 +04:00
|
|
|
#include "nsIDOMWheelEvent.h"
|
2014-12-15 12:49:48 +03:00
|
|
|
#include "mozilla/layers/ChromeProcessController.h"
|
2014-06-08 03:59:18 +04:00
|
|
|
#include "nsLayoutUtils.h"
|
2014-06-07 02:49:59 +04:00
|
|
|
#include "InputData.h"
|
2015-08-27 23:07:59 +03:00
|
|
|
#include "SwipeTracker.h"
|
2014-08-28 04:15:33 +04:00
|
|
|
#include "VibrancyManager.h"
|
2015-02-05 01:25:18 +03:00
|
|
|
#include "nsNativeThemeCocoa.h"
|
2015-05-05 21:45:11 +03:00
|
|
|
#include "nsIDOMWindowUtils.h"
|
2015-11-19 09:34:20 +03:00
|
|
|
#include "Units.h"
|
|
|
|
#include "UnitTransforms.h"
|
2012-08-12 05:42:37 +04:00
|
|
|
|
2011-10-11 09:50:08 +04:00
|
|
|
using namespace mozilla;
|
2010-04-28 02:29:29 +04:00
|
|
|
using namespace mozilla::layers;
|
2011-02-20 01:22:12 +03:00
|
|
|
using namespace mozilla::gl;
|
2011-05-08 14:19:15 +04:00
|
|
|
using namespace mozilla::widget;
|
|
|
|
|
2014-08-22 17:40:02 +04:00
|
|
|
using mozilla::gfx::Matrix4x4;
|
|
|
|
|
2006-08-31 02:06:44 +04:00
|
|
|
#undef DEBUG_UPDATE
|
2006-12-20 05:13:57 +03:00
|
|
|
#undef INVALIDATE_DEBUGGING // flash areas as they are invalidated
|
2006-08-31 02:06:44 +04:00
|
|
|
|
2009-02-16 04:06:52 +03:00
|
|
|
// Don't put more than this many rects in the dirty region, just fluff
|
|
|
|
// out to the bounding-box if there are more
|
|
|
|
#define MAX_RECTS_IN_REGION 100
|
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
PRLogModuleInfo* sCocoaLog = nullptr;
|
2007-07-17 06:24:05 +04:00
|
|
|
|
2006-12-20 05:13:57 +03:00
|
|
|
extern "C" {
|
|
|
|
CG_EXTERN void CGContextResetCTM(CGContextRef);
|
|
|
|
CG_EXTERN void CGContextSetCTM(CGContextRef, CGAffineTransform);
|
|
|
|
CG_EXTERN void CGContextResetClip(CGContextRef);
|
2013-03-27 19:49:02 +04:00
|
|
|
|
|
|
|
typedef CFTypeRef CGSRegionObj;
|
|
|
|
CGError CGSNewRegionWithRect(const CGRect *rect, CGSRegionObj *outRegion);
|
2014-09-18 12:52:30 +04:00
|
|
|
CGError CGSNewRegionWithRectList(const CGRect *rects, int rectCount, CGSRegionObj *outRegion);
|
2006-12-20 05:13:57 +03:00
|
|
|
}
|
2006-09-11 19:47:35 +04:00
|
|
|
|
2010-08-17 07:26:17 +04:00
|
|
|
// defined in nsMenuBarX.mm
|
|
|
|
extern NSMenu* sApplicationMenu; // Application menu shared by all menubars
|
|
|
|
|
2014-10-30 07:29:28 +03:00
|
|
|
static bool gChildViewMethodsSwizzled = false;
|
2009-02-06 20:36:04 +03:00
|
|
|
|
2007-07-18 03:02:40 +04:00
|
|
|
extern nsISupportsArray *gDraggedTransferables;
|
|
|
|
|
2009-09-23 06:31:37 +04:00
|
|
|
ChildView* ChildViewMouseTracker::sLastMouseEventView = nil;
|
2011-08-13 18:25:39 +04:00
|
|
|
NSEvent* ChildViewMouseTracker::sLastMouseMoveEvent = nil;
|
2011-08-08 18:43:13 +04:00
|
|
|
NSWindow* ChildViewMouseTracker::sWindowUnderMouse = nil;
|
2011-08-18 02:30:52 +04:00
|
|
|
NSPoint ChildViewMouseTracker::sLastScrollEventScreenLocation = NSZeroPoint;
|
2007-04-15 17:43:55 +04:00
|
|
|
|
2006-12-20 05:13:57 +03:00
|
|
|
#ifdef INVALIDATE_DEBUGGING
|
|
|
|
static void blinkRect(Rect* r);
|
|
|
|
static void blinkRgn(RgnHandle rgn);
|
2006-09-11 19:47:35 +04:00
|
|
|
#endif
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool gUserCancelledDrag = false;
|
2005-02-08 20:34:09 +03:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t nsChildView::sLastInputEventCount = 0;
|
2009-04-22 03:53:52 +04:00
|
|
|
|
2014-06-04 16:44:27 +04:00
|
|
|
static uint32_t gNumberOfWidgetsNeedingEventThread = 0;
|
|
|
|
|
2002-12-13 11:43:18 +03:00
|
|
|
@interface ChildView(Private)
|
|
|
|
|
2006-12-20 05:13:57 +03:00
|
|
|
// sets up our view, attaching it to its owning gecko view
|
2007-10-09 22:46:30 +04:00
|
|
|
- (id)initWithFrame:(NSRect)inFrame geckoChild:(nsChildView*)inChild;
|
2011-02-04 00:12:33 +03:00
|
|
|
- (void)forceRefreshOpenGL;
|
2005-09-30 04:59:29 +04:00
|
|
|
|
2007-06-13 00:28:26 +04:00
|
|
|
// set up a gecko mouse event based on a cocoa mouse event
|
2013-08-17 01:17:40 +04:00
|
|
|
- (void) convertCocoaMouseWheelEvent:(NSEvent*)aMouseEvent
|
|
|
|
toGeckoEvent:(WidgetWheelEvent*)outWheelEvent;
|
2013-10-01 11:23:02 +04:00
|
|
|
- (void) convertCocoaMouseEvent:(NSEvent*)aMouseEvent
|
2013-10-11 01:22:02 +04:00
|
|
|
toGeckoEvent:(WidgetInputEvent*)outGeckoEvent;
|
2007-06-13 00:28:26 +04:00
|
|
|
|
2006-07-31 02:55:37 +04:00
|
|
|
- (NSMenu*)contextMenu;
|
2002-12-13 11:43:18 +03:00
|
|
|
|
2005-07-16 00:53:13 +04:00
|
|
|
- (BOOL)isRectObscuredBySubview:(NSRect)inRect;
|
2005-03-30 08:05:54 +04:00
|
|
|
|
2006-11-09 17:00:08 +03:00
|
|
|
- (void)processPendingRedraws;
|
|
|
|
|
2013-05-23 18:49:16 +04:00
|
|
|
- (void)drawRect:(NSRect)aRect inContext:(CGContextRef)aContext;
|
2015-11-19 06:10:38 +03:00
|
|
|
- (LayoutDeviceIntRegion)nativeDirtyRegionWithBoundingRect:(NSRect)aRect;
|
2013-05-23 18:55:50 +04:00
|
|
|
- (BOOL)isUsingMainThreadOpenGL;
|
2013-03-05 19:21:28 +04:00
|
|
|
- (BOOL)isUsingOpenGL;
|
|
|
|
- (void)drawUsingOpenGL;
|
|
|
|
- (void)drawUsingOpenGLCallback;
|
|
|
|
|
2013-03-27 19:49:02 +04:00
|
|
|
- (BOOL)hasRoundedBottomCorners;
|
2013-05-23 18:49:17 +04:00
|
|
|
- (CGFloat)cornerRadius;
|
|
|
|
- (void)clearCorners;
|
|
|
|
|
|
|
|
// Overlay drawing functions for traditional CGContext drawing
|
2013-12-17 20:11:13 +04:00
|
|
|
- (void)drawTitleString;
|
2013-05-23 18:49:17 +04:00
|
|
|
- (void)drawTitlebarHighlight;
|
|
|
|
- (void)maskTopCornersInContext:(CGContextRef)aContext;
|
2013-03-27 19:49:02 +04:00
|
|
|
|
2011-01-26 00:21:35 +03:00
|
|
|
// Called using performSelector:withObject:afterDelay:0 to release
|
|
|
|
// aWidgetArray (and its contents) the next time through the run loop.
|
|
|
|
- (void)releaseWidgets:(NSArray*)aWidgetArray;
|
|
|
|
|
2004-02-18 19:18:38 +03:00
|
|
|
#if USE_CLICK_HOLD_CONTEXTMENU
|
2004-01-15 22:01:49 +03:00
|
|
|
// called on a timer two seconds after a mouse down to see if we should display
|
|
|
|
// a context menu (click-hold)
|
|
|
|
- (void)clickHoldCallback:(id)inEvent;
|
2004-02-18 19:18:38 +03:00
|
|
|
#endif
|
2004-01-15 22:01:49 +03:00
|
|
|
|
2006-09-11 19:47:35 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
- (id<mozAccessible>)accessible;
|
|
|
|
#endif
|
|
|
|
|
2015-11-19 09:34:20 +03:00
|
|
|
- (LayoutDeviceIntPoint)convertWindowCoordinates:(NSPoint)aPoint;
|
2014-06-04 16:44:27 +04:00
|
|
|
- (APZCTreeManager*)apzctm;
|
|
|
|
|
2010-07-16 16:48:02 +04:00
|
|
|
- (BOOL)inactiveWindowAcceptsMouseEvent:(NSEvent*)aEvent;
|
2014-09-18 12:52:30 +04:00
|
|
|
- (void)updateWindowDraggableState;
|
2010-07-16 16:48:02 +04:00
|
|
|
|
2015-08-27 21:20:56 +03:00
|
|
|
- (bool)shouldConsiderStartingSwipeFromEvent:(NSEvent*)aEvent;
|
|
|
|
|
2002-12-13 11:43:18 +03:00
|
|
|
@end
|
|
|
|
|
2014-06-04 16:44:27 +04:00
|
|
|
@interface EventThreadRunner : NSObject
|
|
|
|
{
|
|
|
|
NSThread* mThread;
|
|
|
|
}
|
|
|
|
- (id)init;
|
|
|
|
|
|
|
|
+ (void)start;
|
|
|
|
+ (void)stop;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2013-03-27 19:49:02 +04:00
|
|
|
@interface NSView(NSThemeFrameCornerRadius)
|
|
|
|
- (float)roundedCornerRadius;
|
|
|
|
@end
|
|
|
|
|
2014-09-18 12:52:30 +04:00
|
|
|
@interface NSView(DraggableRegion)
|
|
|
|
- (CGSRegionObj)_regionForOpaqueDescendants:(NSRect)aRect forMove:(BOOL)aForMove;
|
2014-09-22 21:45:48 +04:00
|
|
|
- (CGSRegionObj)_regionForOpaqueDescendants:(NSRect)aRect forMove:(BOOL)aForMove forUnderTitlebar:(BOOL)aForUnderTitlebar;
|
2014-09-18 12:52:30 +04:00
|
|
|
@end
|
|
|
|
|
2014-11-25 00:53:33 +03:00
|
|
|
@interface NSWindow(NSWindowShouldZoomOnDoubleClick)
|
|
|
|
+ (BOOL)_shouldZoomOnDoubleClick; // present on 10.7 and above
|
|
|
|
@end
|
|
|
|
|
2013-03-27 19:49:02 +04:00
|
|
|
// Starting with 10.7 the bottom corners of all windows are rounded.
|
|
|
|
// Unfortunately, the standard rounding that OS X applies to OpenGL views
|
|
|
|
// does not use anti-aliasing and looks very crude. Since we want a smooth,
|
|
|
|
// anti-aliased curve, we'll draw it ourselves.
|
|
|
|
// Additionally, we need to turn off the OS-supplied rounding because it
|
|
|
|
// eats into our corner's curve. We do that by overriding an NSSurface method.
|
|
|
|
@interface NSSurface @end
|
|
|
|
|
|
|
|
@implementation NSSurface(DontCutOffCorners)
|
|
|
|
- (CGSRegionObj)_createRoundedBottomRegionForRect:(CGRect)rect
|
|
|
|
{
|
|
|
|
// Create a normal rect region without rounded bottom corners.
|
|
|
|
CGSRegionObj region;
|
|
|
|
CGSNewRegionWithRect(&rect, ®ion);
|
|
|
|
return region;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
#pragma mark -
|
|
|
|
|
2006-09-07 22:53:59 +04:00
|
|
|
// Flips a screen coordinate from a point in the cocoa coordinate system (bottom-left rect) to a point
|
|
|
|
// that is a "flipped" cocoa coordinate system (starts in the top-left).
|
|
|
|
static inline void
|
2009-06-19 20:15:23 +04:00
|
|
|
FlipCocoaScreenCoordinate(NSPoint &inPoint)
|
2012-09-29 15:36:09 +04:00
|
|
|
{
|
2007-12-06 02:17:08 +03:00
|
|
|
inPoint.y = nsCocoaUtils::FlippedScreenY(inPoint.y);
|
2006-09-07 22:53:59 +04:00
|
|
|
}
|
|
|
|
|
2011-07-06 07:41:27 +04:00
|
|
|
void EnsureLogInitialized()
|
|
|
|
{
|
|
|
|
if (!sCocoaLog) {
|
|
|
|
sCocoaLog = PR_NewLogModule("nsCocoaWidgets");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-09 08:21:05 +04:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
// Manages a texture which can resize dynamically, binds to the
|
|
|
|
// LOCAL_GL_TEXTURE_RECTANGLE_ARB texture target and is automatically backed
|
|
|
|
// by a power-of-two size GL texture. The latter two features are used for
|
|
|
|
// compatibility with older Mac hardware which we block GL layers on.
|
|
|
|
// RectTextureImages are used both for accelerated GL layers drawing and for
|
|
|
|
// OMTC BasicLayers drawing.
|
|
|
|
class RectTextureImage {
|
|
|
|
public:
|
2014-09-01 07:33:13 +04:00
|
|
|
explicit RectTextureImage(GLContext* aGLContext)
|
2013-07-09 08:21:05 +04:00
|
|
|
: mGLContext(aGLContext)
|
|
|
|
, mTexture(0)
|
|
|
|
, mInUpdate(false)
|
|
|
|
{}
|
|
|
|
|
|
|
|
virtual ~RectTextureImage();
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
already_AddRefed<gfx::DrawTarget>
|
2015-11-19 06:10:38 +03:00
|
|
|
BeginUpdate(const LayoutDeviceIntSize& aNewSize,
|
|
|
|
const LayoutDeviceIntRegion& aDirtyRegion =
|
|
|
|
LayoutDeviceIntRegion());
|
2013-07-09 08:21:05 +04:00
|
|
|
void EndUpdate(bool aKeepSurface = false);
|
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
void UpdateIfNeeded(const LayoutDeviceIntSize& aNewSize,
|
|
|
|
const LayoutDeviceIntRegion& aDirtyRegion,
|
|
|
|
void (^aCallback)(gfx::DrawTarget*,
|
|
|
|
const LayoutDeviceIntRegion&))
|
2013-07-09 08:21:05 +04:00
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<gfx::DrawTarget> drawTarget = BeginUpdate(aNewSize, aDirtyRegion);
|
2013-07-09 08:21:05 +04:00
|
|
|
if (drawTarget) {
|
|
|
|
aCallback(drawTarget, GetUpdateRegion());
|
|
|
|
EndUpdate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
void UpdateFromCGContext(const LayoutDeviceIntSize& aNewSize,
|
|
|
|
const LayoutDeviceIntRegion& aDirtyRegion,
|
2013-11-27 09:49:45 +04:00
|
|
|
CGContextRef aCGContext);
|
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
LayoutDeviceIntRegion GetUpdateRegion() {
|
2013-07-09 08:21:05 +04:00
|
|
|
MOZ_ASSERT(mInUpdate, "update region only valid during update");
|
|
|
|
return mUpdateRegion;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Draw(mozilla::layers::GLManager* aManager,
|
2015-11-19 06:10:38 +03:00
|
|
|
const LayoutDeviceIntPoint& aLocation,
|
2014-08-22 17:40:02 +04:00
|
|
|
const Matrix4x4& aTransform = Matrix4x4());
|
2013-07-09 08:21:05 +04:00
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
static LayoutDeviceIntSize TextureSizeForSize(
|
|
|
|
const LayoutDeviceIntSize& aSize);
|
2013-07-09 08:21:06 +04:00
|
|
|
|
2013-07-09 08:21:05 +04:00
|
|
|
protected:
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<gfx::DrawTarget> mUpdateDrawTarget;
|
2016-01-12 16:20:08 +03:00
|
|
|
UniquePtr<unsigned char[]> mUpdateDrawTargetData;
|
2013-07-09 08:21:05 +04:00
|
|
|
GLContext* mGLContext;
|
2015-11-19 06:10:38 +03:00
|
|
|
LayoutDeviceIntRegion mUpdateRegion;
|
|
|
|
LayoutDeviceIntSize mUsedSize;
|
|
|
|
LayoutDeviceIntSize mBufferSize;
|
|
|
|
LayoutDeviceIntSize mTextureSize;
|
2013-07-09 08:21:05 +04:00
|
|
|
GLuint mTexture;
|
|
|
|
bool mInUpdate;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Used for OpenGL drawing from the compositor thread for OMTC BasicLayers.
|
|
|
|
// We need to use OpenGL for this because there seems to be no other robust
|
|
|
|
// way of drawing from a secondary thread without locking, which would cause
|
|
|
|
// deadlocks in our setup. See bug 882523.
|
|
|
|
class GLPresenter : public GLManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static GLPresenter* CreateForWindow(nsIWidget* aWindow)
|
|
|
|
{
|
2015-12-23 18:22:55 +03:00
|
|
|
// Contrary to CompositorOGL, we allow unaccelerated OpenGL contexts to be
|
|
|
|
// used. BasicCompositor only requires very basic GL functionality.
|
|
|
|
RefPtr<GLContext> context = gl::GLContextProvider::CreateForWindow(aWindow, false);
|
2013-07-09 08:21:05 +04:00
|
|
|
return context ? new GLPresenter(context) : nullptr;
|
|
|
|
}
|
|
|
|
|
2014-09-01 07:33:13 +04:00
|
|
|
explicit GLPresenter(GLContext* aContext);
|
2013-07-09 08:21:05 +04:00
|
|
|
virtual ~GLPresenter();
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual GLContext* gl() const override { return mGLContext; }
|
|
|
|
virtual ShaderProgramOGL* GetProgram(GLenum aTarget, gfx::SurfaceFormat aFormat) override
|
2013-07-09 08:21:05 +04:00
|
|
|
{
|
2013-11-08 10:22:05 +04:00
|
|
|
MOZ_ASSERT(aTarget == LOCAL_GL_TEXTURE_RECTANGLE_ARB);
|
|
|
|
MOZ_ASSERT(aFormat == gfx::SurfaceFormat::R8G8B8A8);
|
2013-07-18 10:54:09 +04:00
|
|
|
return mRGBARectProgram;
|
2013-07-09 08:21:05 +04:00
|
|
|
}
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual const gfx::Matrix4x4& GetProjMatrix() const override
|
2013-11-08 10:22:05 +04:00
|
|
|
{
|
|
|
|
return mProjMatrix;
|
|
|
|
}
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void ActivateProgram(ShaderProgramOGL *aProg) override
|
2014-11-10 22:34:06 +03:00
|
|
|
{
|
|
|
|
mGLContext->fUseProgram(aProg->GetProgram());
|
|
|
|
}
|
2014-05-22 14:29:54 +04:00
|
|
|
virtual void BindAndDrawQuad(ShaderProgramOGL *aProg,
|
|
|
|
const gfx::Rect& aLayerRect,
|
2015-03-21 19:28:04 +03:00
|
|
|
const gfx::Rect& aTextureRect) override;
|
2013-07-09 08:21:05 +04:00
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
void BeginFrame(LayoutDeviceIntSize aRenderSize);
|
2013-07-09 08:21:05 +04:00
|
|
|
void EndFrame();
|
|
|
|
|
|
|
|
NSOpenGLContext* GetNSOpenGLContext()
|
|
|
|
{
|
2014-01-08 00:02:18 +04:00
|
|
|
return GLContextCGL::Cast(mGLContext)->GetNSOpenGLContext();
|
2013-07-09 08:21:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<mozilla::gl::GLContext> mGLContext;
|
2013-07-18 10:54:09 +04:00
|
|
|
nsAutoPtr<mozilla::layers::ShaderProgramOGL> mRGBARectProgram;
|
2013-11-08 10:22:05 +04:00
|
|
|
gfx::Matrix4x4 mProjMatrix;
|
2013-07-09 08:21:05 +04:00
|
|
|
GLuint mQuadVBO;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // unnamed namespace
|
|
|
|
|
2015-08-12 07:15:32 +03:00
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
struct SwipeEventQueue {
|
|
|
|
SwipeEventQueue(uint32_t aAllowedDirections, uint64_t aInputBlockId)
|
|
|
|
: allowedDirections(aAllowedDirections)
|
|
|
|
, inputBlockId(aInputBlockId)
|
|
|
|
{}
|
|
|
|
|
|
|
|
nsTArray<PanGestureInput> queuedEvents;
|
|
|
|
uint32_t allowedDirections;
|
|
|
|
uint64_t inputBlockId;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
#pragma mark -
|
|
|
|
|
2003-04-22 02:24:12 +04:00
|
|
|
nsChildView::nsChildView() : nsBaseWidget()
|
2012-07-30 18:20:58 +04:00
|
|
|
, mView(nullptr)
|
|
|
|
, mParentView(nullptr)
|
|
|
|
, mParentWidget(nullptr)
|
2013-10-09 18:39:23 +04:00
|
|
|
, mViewTearDownLock("ChildViewTearDown")
|
2013-04-22 06:40:51 +04:00
|
|
|
, mEffectsLock("WidgetEffects")
|
|
|
|
, mShowsResizeIndicator(false)
|
|
|
|
, mHasRoundedBottomCorners(false)
|
2013-05-23 18:49:17 +04:00
|
|
|
, mIsCoveringTitlebar(false)
|
2014-01-17 14:06:15 +04:00
|
|
|
, mIsFullscreen(false)
|
2013-11-27 09:49:45 +04:00
|
|
|
, mTitlebarCGContext(nullptr)
|
2013-04-22 06:40:51 +04:00
|
|
|
, mBackingScaleFactor(0.0)
|
2011-10-01 04:20:33 +04:00
|
|
|
, mVisible(false)
|
|
|
|
, mDrawing(false)
|
|
|
|
, mIsDispatchPaint(false)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2011-07-06 07:41:27 +04:00
|
|
|
EnsureLogInitialized();
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsChildView::~nsChildView()
|
|
|
|
{
|
2013-11-27 09:49:45 +04:00
|
|
|
ReleaseTitlebarCGContext();
|
|
|
|
|
2015-08-27 23:07:59 +03:00
|
|
|
if (mSwipeTracker) {
|
|
|
|
mSwipeTracker->Destroy();
|
|
|
|
mSwipeTracker = nullptr;
|
|
|
|
}
|
|
|
|
|
2009-07-20 19:02:31 +04:00
|
|
|
// Notify the children that we're gone. childView->ResetParent() can change
|
|
|
|
// our list of children while it's being iterated, so the way we iterate the
|
|
|
|
// list must allow for this.
|
|
|
|
for (nsIWidget* kid = mLastChild; kid;) {
|
2007-07-08 11:08:04 +04:00
|
|
|
nsChildView* childView = static_cast<nsChildView*>(kid);
|
2009-07-20 19:02:31 +04:00
|
|
|
kid = kid->GetPrevSibling();
|
2009-04-23 19:54:50 +04:00
|
|
|
childView->ResetParent();
|
2005-07-08 21:55:32 +04:00
|
|
|
}
|
2013-11-27 09:49:45 +04:00
|
|
|
|
2008-06-27 21:11:24 +04:00
|
|
|
NS_WARN_IF_FALSE(mOnDestroyCalled, "nsChildView object destroyed without calling Destroy()");
|
|
|
|
|
2013-04-22 06:40:51 +04:00
|
|
|
DestroyCompositor();
|
2011-02-20 01:23:02 +03:00
|
|
|
|
2015-03-29 07:58:52 +03:00
|
|
|
if (mAPZC && gfxPrefs::AsyncPanZoomSeparateEventThread()) {
|
2014-06-04 16:44:27 +04:00
|
|
|
gNumberOfWidgetsNeedingEventThread--;
|
|
|
|
if (gNumberOfWidgetsNeedingEventThread == 0) {
|
|
|
|
[EventThreadRunner stop];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-27 21:11:24 +04:00
|
|
|
// An nsChildView object that was in use can be destroyed without Destroy()
|
|
|
|
// ever being called on it. So we also need to do a quick, safe cleanup
|
|
|
|
// here (it's too late to just call Destroy(), which can cause crashes).
|
|
|
|
// It's particularly important to make sure widgetDestroyed is called on our
|
|
|
|
// mView -- this method NULLs mView's mGeckoChild, and NULL checks on
|
|
|
|
// mGeckoChild are used throughout the ChildView class to tell if it's safe
|
|
|
|
// to use a ChildView object.
|
|
|
|
[mView widgetDestroyed]; // Safe if mView is nil.
|
|
|
|
mParentWidget = nil;
|
|
|
|
TearDownView(); // Safe if called twice.
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
2013-11-27 09:49:45 +04:00
|
|
|
void
|
|
|
|
nsChildView::ReleaseTitlebarCGContext()
|
|
|
|
{
|
|
|
|
if (mTitlebarCGContext) {
|
|
|
|
CGContextRelease(mTitlebarCGContext);
|
|
|
|
mTitlebarCGContext = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-16 11:35:18 +03:00
|
|
|
nsresult nsChildView::Create(nsIWidget* aParent,
|
2009-09-24 10:18:10 +04:00
|
|
|
nsNativeWidget aNativeParent,
|
2015-11-16 11:35:18 +03:00
|
|
|
const LayoutDeviceIntRect& aRect,
|
|
|
|
nsWidgetInitData* aInitData)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
2010-04-14 00:36:03 +04:00
|
|
|
// Because the hidden window is created outside of an event loop,
|
|
|
|
// we need to provide an autorelease pool to avoid leaking cocoa objects
|
|
|
|
// (see bug 559075).
|
|
|
|
nsAutoreleasePool localPool;
|
|
|
|
|
2009-02-06 20:36:04 +03:00
|
|
|
// See NSView (MethodSwizzling) below.
|
2010-02-23 23:10:25 +03:00
|
|
|
if (!gChildViewMethodsSwizzled) {
|
2009-02-06 20:36:04 +03:00
|
|
|
nsToolkit::SwizzleMethods([NSView class], @selector(mouseDownCanMoveWindow),
|
|
|
|
@selector(nsChildView_NSView_mouseDownCanMoveWindow));
|
2011-08-19 00:39:54 +04:00
|
|
|
#ifdef __LP64__
|
2012-05-17 11:53:20 +04:00
|
|
|
if (nsCocoaFeatures::OnLionOrLater()) {
|
2011-08-19 00:39:54 +04:00
|
|
|
nsToolkit::SwizzleMethods([NSEvent class], @selector(addLocalMonitorForEventsMatchingMask:handler:),
|
|
|
|
@selector(nsChildView_NSEvent_addLocalMonitorForEventsMatchingMask:handler:),
|
2011-10-01 04:20:33 +04:00
|
|
|
true);
|
2011-08-19 00:39:54 +04:00
|
|
|
nsToolkit::SwizzleMethods([NSEvent class], @selector(removeMonitor:),
|
2011-10-01 04:20:33 +04:00
|
|
|
@selector(nsChildView_NSEvent_removeMonitor:), true);
|
2011-08-19 00:39:54 +04:00
|
|
|
}
|
2011-01-21 04:08:11 +03:00
|
|
|
#endif
|
2011-10-01 04:20:33 +04:00
|
|
|
gChildViewMethodsSwizzled = true;
|
2009-02-06 20:36:04 +03:00
|
|
|
}
|
2008-02-13 18:57:12 +03:00
|
|
|
|
2015-11-23 07:32:29 +03:00
|
|
|
mBounds = aRect;
|
2001-11-06 18:35:24 +03:00
|
|
|
|
2011-10-25 19:05:32 +04:00
|
|
|
// Ensure that the toolkit is created.
|
|
|
|
nsToolkit::GetToolkit();
|
|
|
|
|
2016-01-13 10:32:55 +03:00
|
|
|
BaseCreate(aParent, aInitData);
|
2001-11-06 18:35:24 +03:00
|
|
|
|
2014-04-23 03:23:18 +04:00
|
|
|
// inherit things from the parent view and create our parallel
|
2001-11-06 18:35:24 +03:00
|
|
|
// NSView in the Cocoa display system
|
2002-02-12 11:30:01 +03:00
|
|
|
mParentView = nil;
|
2006-11-20 08:37:49 +03:00
|
|
|
if (aParent) {
|
2001-11-09 00:47:44 +03:00
|
|
|
// inherit the top-level window. NS_NATIVE_WIDGET is always a NSView
|
|
|
|
// regardless of if we're asking a window or a view (for compatibility
|
|
|
|
// with windows).
|
2014-04-23 03:23:18 +04:00
|
|
|
mParentView = (NSView<mozView>*)aParent->GetNativeData(NS_NATIVE_WIDGET);
|
|
|
|
mParentWidget = aParent;
|
2009-09-24 10:18:10 +04:00
|
|
|
} else {
|
|
|
|
// This is the normal case. When we're the root widget of the view hiararchy,
|
|
|
|
// aNativeParent will be the contentView of our window, since that's what
|
|
|
|
// nsCocoaWindow returns when asked for an NS_NATIVE_VIEW.
|
2012-06-20 23:48:50 +04:00
|
|
|
mParentView = reinterpret_cast<NSView<mozView>*>(aNativeParent);
|
2009-09-24 10:18:10 +04:00
|
|
|
}
|
2014-04-23 03:23:18 +04:00
|
|
|
|
2001-11-09 00:47:44 +03:00
|
|
|
// create our parallel NSView and hook it up to our parent. Recall
|
|
|
|
// that NS_NATIVE_WIDGET is the NSView.
|
2012-09-29 15:36:09 +04:00
|
|
|
CGFloat scaleFactor = nsCocoaUtils::GetBackingScaleFactor(mParentView);
|
2015-11-23 07:32:29 +03:00
|
|
|
NSRect r = nsCocoaUtils::DevPixelsToCocoaPoints(mBounds, scaleFactor);
|
2012-06-20 23:48:50 +04:00
|
|
|
mView = [(NSView<mozView>*)CreateCocoaView(r) retain];
|
2012-09-29 15:36:09 +04:00
|
|
|
if (!mView) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2002-12-13 11:43:18 +03:00
|
|
|
|
2006-05-22 22:15:06 +04:00
|
|
|
// If this view was created in a Gecko view hierarchy, the initial state
|
|
|
|
// is hidden. If the view is attached only to a native NSView but has
|
|
|
|
// no Gecko parent (as in embedding), the initial state is visible.
|
|
|
|
if (mParentWidget)
|
|
|
|
[mView setHidden:YES];
|
|
|
|
else
|
2011-10-01 04:20:33 +04:00
|
|
|
mVisible = true;
|
2002-12-13 11:43:18 +03:00
|
|
|
|
2006-05-22 22:15:06 +04:00
|
|
|
// Hook it up in the NSView hierarchy.
|
|
|
|
if (mParentView) {
|
|
|
|
[mParentView addSubview:mView];
|
2001-11-09 00:47:44 +03:00
|
|
|
}
|
2006-05-22 22:15:06 +04:00
|
|
|
|
2005-06-26 07:25:52 +04:00
|
|
|
// if this is a ChildView, make sure that our per-window data
|
|
|
|
// is set up
|
|
|
|
if ([mView isKindOfClass:[ChildView class]])
|
2009-06-17 22:13:12 +04:00
|
|
|
[[WindowDataMap sharedWindowDataMap] ensureDataForWindow:[mView window]];
|
2005-06-26 07:25:52 +04:00
|
|
|
|
2011-05-08 14:19:23 +04:00
|
|
|
NS_ASSERTION(!mTextInputHandler, "mTextInputHandler has already existed");
|
|
|
|
mTextInputHandler = new TextInputHandler(this, mView);
|
2009-10-01 06:52:50 +04:00
|
|
|
|
2015-02-20 19:37:02 +03:00
|
|
|
mPluginFocused = false;
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
return NS_OK;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
2001-11-15 01:29:25 +03:00
|
|
|
// Creates the appropriate child view. Override to create something other than
|
|
|
|
// our |ChildView| object. Autoreleases, so caller must retain.
|
|
|
|
NSView*
|
2005-06-29 23:39:39 +04:00
|
|
|
nsChildView::CreateCocoaView(NSRect inFrame)
|
2001-11-15 01:29:25 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NIL;
|
|
|
|
|
2007-10-09 22:46:30 +04:00
|
|
|
return [[[ChildView alloc] initWithFrame:inFrame geckoChild:this] autorelease];
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NIL;
|
2001-11-15 01:29:25 +03:00
|
|
|
}
|
|
|
|
|
2004-02-24 06:40:27 +03:00
|
|
|
void nsChildView::TearDownView()
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2006-10-20 03:19:50 +04:00
|
|
|
if (!mView)
|
|
|
|
return;
|
2004-02-24 06:40:27 +03:00
|
|
|
|
2006-10-20 03:19:50 +04:00
|
|
|
NSWindow* win = [mView window];
|
|
|
|
NSResponder* responder = [win firstResponder];
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 22:00:39 +04:00
|
|
|
|
2006-10-20 03:19:50 +04:00
|
|
|
// We're being unhooked from the view hierarchy, don't leave our view
|
|
|
|
// or a child view as the window first responder.
|
|
|
|
if (responder && [responder isKindOfClass:[NSView class]] &&
|
|
|
|
[(NSView*)responder isDescendantOf:mView]) {
|
2008-01-16 02:11:55 +03:00
|
|
|
[win makeFirstResponder:[mView superview]];
|
2004-02-24 06:40:27 +03:00
|
|
|
}
|
2007-05-30 22:25:44 +04:00
|
|
|
|
|
|
|
// If mView is win's contentView, win (mView's NSWindow) "owns" mView --
|
|
|
|
// win has retained mView, and will detach it from the view hierarchy and
|
|
|
|
// release it when necessary (when win is itself destroyed (in a call to
|
|
|
|
// [win dealloc])). So all we need to do here is call [mView release] (to
|
|
|
|
// match the call to [mView retain] in nsChildView::StandardCreate()).
|
|
|
|
// Also calling [mView removeFromSuperviewWithoutNeedingDisplay] causes
|
|
|
|
// mView to be released again and dealloced, while remaining win's
|
|
|
|
// contentView. So if we do that here, win will (for a short while) have
|
|
|
|
// an invalid contentView (for the consequences see bmo bugs 381087 and
|
|
|
|
// 374260).
|
|
|
|
if ([mView isEqual:[win contentView]]) {
|
|
|
|
[mView release];
|
|
|
|
} else {
|
|
|
|
// Stop NSView hierarchy being changed during [ChildView drawRect:]
|
|
|
|
[mView performSelectorOnMainThread:@selector(delayedTearDown) withObject:nil waitUntilDone:false];
|
|
|
|
}
|
2006-10-20 03:19:50 +04:00
|
|
|
mView = nil;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2004-02-24 06:40:27 +03:00
|
|
|
}
|
2001-11-15 01:29:25 +03:00
|
|
|
|
2009-08-14 02:06:49 +04:00
|
|
|
nsCocoaWindow*
|
|
|
|
nsChildView::GetXULWindowWidget()
|
|
|
|
{
|
2009-09-16 01:56:44 +04:00
|
|
|
id windowDelegate = [[mView window] delegate];
|
2009-08-14 02:06:49 +04:00
|
|
|
if (windowDelegate && [windowDelegate isKindOfClass:[WindowDelegate class]]) {
|
|
|
|
return [(WindowDelegate *)windowDelegate geckoWidget];
|
|
|
|
}
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2009-08-14 02:06:49 +04:00
|
|
|
}
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
NS_IMETHODIMP nsChildView::Destroy()
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
2013-10-09 18:39:23 +04:00
|
|
|
// Make sure that no composition is in progress while disconnecting
|
|
|
|
// ourselves from the view.
|
|
|
|
MutexAutoLock lock(mViewTearDownLock);
|
|
|
|
|
2006-01-24 07:01:54 +03:00
|
|
|
if (mOnDestroyCalled)
|
2001-11-06 18:35:24 +03:00
|
|
|
return NS_OK;
|
2011-10-01 04:20:33 +04:00
|
|
|
mOnDestroyCalled = true;
|
2001-11-06 18:35:24 +03:00
|
|
|
|
2016-04-22 23:01:30 +03:00
|
|
|
// Stuff below may delete the last ref to this
|
|
|
|
nsCOMPtr<nsIWidget> kungFuDeathGrip(this);
|
|
|
|
|
2005-09-30 04:59:29 +04:00
|
|
|
[mView widgetDestroyed];
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
nsBaseWidget::Destroy();
|
|
|
|
|
2012-08-15 22:52:41 +04:00
|
|
|
NotifyWindowDestroyed();
|
2002-12-13 11:43:18 +03:00
|
|
|
mParentWidget = nil;
|
2001-11-06 18:35:24 +03:00
|
|
|
|
2004-02-24 06:40:27 +03:00
|
|
|
TearDownView();
|
|
|
|
|
2009-03-09 19:59:29 +03:00
|
|
|
nsBaseWidget::OnDestroy();
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
return NS_OK;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark -
|
2001-11-09 00:47:44 +03:00
|
|
|
|
2006-06-29 05:33:57 +04:00
|
|
|
#if 0
|
2006-12-06 20:04:13 +03:00
|
|
|
static void PrintViewHierarchy(NSView *view)
|
2002-12-13 11:43:18 +03:00
|
|
|
{
|
2006-10-20 03:19:50 +04:00
|
|
|
while (view) {
|
2006-12-06 20:04:13 +03:00
|
|
|
NSLog(@" view is %x, frame %@", view, NSStringFromRect([view frame]));
|
2005-06-28 03:44:09 +04:00
|
|
|
view = [view superview];
|
|
|
|
}
|
2002-12-13 11:43:18 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-12-20 05:13:57 +03:00
|
|
|
// Return native data according to aDataType
|
2012-08-22 19:56:38 +04:00
|
|
|
void* nsChildView::GetNativeData(uint32_t aDataType)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSNULL;
|
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
void* retVal = nullptr;
|
2001-11-06 18:35:24 +03:00
|
|
|
|
2014-04-23 03:23:18 +04:00
|
|
|
switch (aDataType)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2007-09-18 02:55:20 +04:00
|
|
|
case NS_NATIVE_WIDGET:
|
2001-11-09 00:47:44 +03:00
|
|
|
case NS_NATIVE_DISPLAY:
|
2001-11-06 18:35:24 +03:00
|
|
|
retVal = (void*)mView;
|
|
|
|
break;
|
|
|
|
|
2001-11-09 00:47:44 +03:00
|
|
|
case NS_NATIVE_WINDOW:
|
2009-09-16 01:56:44 +04:00
|
|
|
retVal = [mView window];
|
2001-11-09 00:47:44 +03:00
|
|
|
break;
|
2007-09-18 02:55:20 +04:00
|
|
|
|
|
|
|
case NS_NATIVE_GRAPHIC:
|
2009-08-14 18:09:00 +04:00
|
|
|
NS_ERROR("Requesting NS_NATIVE_GRAPHIC on a Mac OS X child view!");
|
2012-07-30 18:20:58 +04:00
|
|
|
retVal = nullptr;
|
2001-11-06 18:35:24 +03:00
|
|
|
break;
|
2007-09-18 02:55:20 +04:00
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
case NS_NATIVE_OFFSETX:
|
2001-11-19 18:02:23 +03:00
|
|
|
retVal = 0;
|
2001-11-06 18:35:24 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case NS_NATIVE_OFFSETY:
|
2001-11-19 18:02:23 +03:00
|
|
|
retVal = 0;
|
2001-11-06 18:35:24 +03:00
|
|
|
break;
|
2015-12-11 09:15:57 +03:00
|
|
|
|
2015-12-11 09:15:57 +03:00
|
|
|
case NS_RAW_NATIVE_IME_CONTEXT:
|
2016-03-16 07:47:47 +03:00
|
|
|
retVal = GetPseudoIMEContext();
|
|
|
|
if (retVal) {
|
|
|
|
break;
|
|
|
|
}
|
2015-12-11 09:15:57 +03:00
|
|
|
retVal = [mView inputContext];
|
|
|
|
// If input context isn't available on this widget, we should set |this|
|
|
|
|
// instead of nullptr since if this returns nullptr, IMEStateManager
|
|
|
|
// cannot manage composition with TextComposition instance. Although,
|
|
|
|
// this case shouldn't occur.
|
|
|
|
if (NS_WARN_IF(!retVal)) {
|
|
|
|
retVal = this;
|
|
|
|
}
|
|
|
|
break;
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return retVal;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSNULL;
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark -
|
|
|
|
|
2008-08-13 04:44:14 +04:00
|
|
|
nsTransparencyMode nsChildView::GetTransparencyMode()
|
2007-12-19 22:40:18 +03:00
|
|
|
{
|
2009-11-14 01:58:15 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
2009-11-14 01:58:15 +03:00
|
|
|
nsCocoaWindow* windowWidget = GetXULWindowWidget();
|
|
|
|
return windowWidget ? windowWidget->GetTransparencyMode() : eTransparencyOpaque;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
2009-11-14 01:58:15 +03:00
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(eTransparencyOpaque);
|
2007-12-19 22:40:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// This is called by nsContainerFrame on the root widget for all window types
|
2008-08-13 04:44:14 +04:00
|
|
|
// except popup windows (when nsCocoaWindow::SetTransparencyMode is used instead).
|
|
|
|
void nsChildView::SetTransparencyMode(nsTransparencyMode aMode)
|
2007-12-19 22:40:18 +03:00
|
|
|
{
|
2008-08-13 04:44:14 +04:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
2009-11-14 01:58:15 +03:00
|
|
|
nsCocoaWindow* windowWidget = GetXULWindowWidget();
|
|
|
|
if (windowWidget) {
|
|
|
|
windowWidget->SetTransparencyMode(aMode);
|
2007-12-19 22:40:18 +03:00
|
|
|
}
|
2008-02-21 02:47:05 +03:00
|
|
|
|
2008-08-13 04:44:14 +04:00
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2007-12-19 22:40:18 +03:00
|
|
|
}
|
|
|
|
|
2012-07-19 12:57:50 +04:00
|
|
|
bool nsChildView::IsVisible() const
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2012-07-19 12:57:50 +04:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
2006-08-26 00:36:18 +04:00
|
|
|
if (!mVisible) {
|
2012-07-19 12:57:50 +04:00
|
|
|
return mVisible;
|
2006-08-26 00:36:18 +04:00
|
|
|
}
|
2006-05-22 22:15:06 +04:00
|
|
|
|
2012-07-19 12:57:50 +04:00
|
|
|
// mVisible does not accurately reflect the state of a hidden tabbed view
|
|
|
|
// so verify that the view has a window as well
|
|
|
|
// then check native widget hierarchy visibility
|
|
|
|
return ([mView window] != nil) && !NSIsEmptyRect([mView visibleRect]);
|
2008-02-21 02:47:05 +03:00
|
|
|
|
2012-07-19 12:57:50 +04:00
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(false);
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
2014-01-08 13:37:59 +04:00
|
|
|
// Some NSView methods (e.g. setFrame and setHidden) invalidate the view's
|
|
|
|
// bounds in our window. However, we don't want these invalidations because
|
|
|
|
// they are unnecessary and because they actually slow us down since we
|
|
|
|
// block on the compositor inside drawRect.
|
|
|
|
// When we actually need something invalidated, there will be an explicit call
|
|
|
|
// to Invalidate from Gecko, so turning these automatic invalidations off
|
|
|
|
// won't hurt us in the non-OMTC case.
|
|
|
|
// The invalidations inside these NSView methods happen via a call to the
|
|
|
|
// private method -[NSWindow _setNeedsDisplayInRect:]. Our BaseWindow
|
|
|
|
// implementation of that method is augmented to let us ignore those calls
|
|
|
|
// using -[BaseWindow disable/enableSetNeedsDisplay].
|
|
|
|
static void
|
|
|
|
ManipulateViewWithoutNeedingDisplay(NSView* aView, void (^aCallback)())
|
|
|
|
{
|
|
|
|
BaseWindow* win = nil;
|
|
|
|
if ([[aView window] isKindOfClass:[BaseWindow class]]) {
|
|
|
|
win = (BaseWindow*)[aView window];
|
|
|
|
}
|
|
|
|
[win disableSetNeedsDisplay];
|
|
|
|
aCallback();
|
|
|
|
[win enableSetNeedsDisplay];
|
|
|
|
}
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
// Hide or show this component
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHODIMP nsChildView::Show(bool aState)
|
2006-05-22 22:15:06 +04:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
2006-05-22 22:15:06 +04:00
|
|
|
if (aState != mVisible) {
|
2010-04-14 00:36:03 +04:00
|
|
|
// Provide an autorelease pool because this gets called during startup
|
|
|
|
// on the "hidden window", resulting in cocoa object leakage if there's
|
|
|
|
// no pool in place.
|
|
|
|
nsAutoreleasePool localPool;
|
|
|
|
|
2014-01-08 13:37:59 +04:00
|
|
|
ManipulateViewWithoutNeedingDisplay(mView, ^{
|
|
|
|
[mView setHidden:!aState];
|
|
|
|
});
|
|
|
|
|
2006-05-22 22:15:06 +04:00
|
|
|
mVisible = aState;
|
2002-02-12 11:30:01 +03:00
|
|
|
}
|
2001-11-06 18:35:24 +03:00
|
|
|
return NS_OK;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
2009-04-23 19:54:50 +04:00
|
|
|
// Change the parent of this widget
|
2008-10-29 08:19:42 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsChildView::SetParent(nsIWidget* aNewParent)
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
|
|
|
if (mOnDestroyCalled)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> kungFuDeathGrip(this);
|
2014-04-23 03:23:18 +04:00
|
|
|
|
2011-11-22 00:15:38 +04:00
|
|
|
if (mParentWidget) {
|
2008-10-29 08:19:42 +03:00
|
|
|
mParentWidget->RemoveChild(this);
|
2011-11-22 00:15:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (aNewParent) {
|
|
|
|
ReparentNativeWidget(aNewParent);
|
|
|
|
} else {
|
|
|
|
[mView removeFromSuperview];
|
|
|
|
mParentView = nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
mParentWidget = aNewParent;
|
2010-09-18 15:28:50 +04:00
|
|
|
|
2011-11-22 00:15:38 +04:00
|
|
|
if (mParentWidget) {
|
|
|
|
mParentWidget->AddChild(this);
|
|
|
|
}
|
2010-09-18 15:28:50 +04:00
|
|
|
|
|
|
|
return NS_OK;
|
2011-11-22 00:15:38 +04:00
|
|
|
|
2010-09-18 15:28:50 +04:00
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsChildView::ReparentNativeWidget(nsIWidget* aNewParent)
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
|
|
|
NS_PRECONDITION(aNewParent, "");
|
|
|
|
|
|
|
|
if (mOnDestroyCalled)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
NSView<mozView>* newParentView =
|
2014-04-23 03:23:18 +04:00
|
|
|
(NSView<mozView>*)aNewParent->GetNativeData(NS_NATIVE_WIDGET);
|
2010-09-18 15:28:50 +04:00
|
|
|
NS_ENSURE_TRUE(newParentView, NS_ERROR_FAILURE);
|
|
|
|
|
2008-10-29 08:19:42 +03:00
|
|
|
// we hold a ref to mView, so this is safe
|
|
|
|
[mView removeFromSuperview];
|
2011-11-22 00:15:38 +04:00
|
|
|
mParentView = newParentView;
|
2008-10-29 08:19:42 +03:00
|
|
|
[mParentView addSubview:mView];
|
|
|
|
return NS_OK;
|
2010-09-18 15:28:50 +04:00
|
|
|
|
2008-10-29 08:19:42 +03:00
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
}
|
2006-12-20 05:13:57 +03:00
|
|
|
|
2009-04-23 19:54:50 +04:00
|
|
|
void nsChildView::ResetParent()
|
|
|
|
{
|
|
|
|
if (!mOnDestroyCalled) {
|
|
|
|
if (mParentWidget)
|
|
|
|
mParentWidget->RemoveChild(this);
|
|
|
|
if (mView)
|
|
|
|
[mView removeFromSuperview];
|
|
|
|
}
|
2012-07-30 18:20:58 +04:00
|
|
|
mParentWidget = nullptr;
|
2009-04-23 19:54:50 +04:00
|
|
|
}
|
|
|
|
|
2008-10-21 18:56:35 +04:00
|
|
|
nsIWidget*
|
2010-04-26 00:58:03 +04:00
|
|
|
nsChildView::GetParent()
|
2002-02-12 11:30:01 +03:00
|
|
|
{
|
2002-12-13 11:43:18 +03:00
|
|
|
return mParentWidget;
|
2002-02-12 11:30:01 +03:00
|
|
|
}
|
2006-12-20 05:13:57 +03:00
|
|
|
|
2010-08-13 13:57:55 +04:00
|
|
|
float
|
|
|
|
nsChildView::GetDPI()
|
|
|
|
{
|
|
|
|
NSWindow* window = [mView window];
|
2010-08-19 13:35:08 +04:00
|
|
|
if (window && [window isKindOfClass:[BaseWindow class]]) {
|
|
|
|
return [(BaseWindow*)window getDPI];
|
|
|
|
}
|
|
|
|
|
|
|
|
return 96.0;
|
2010-08-13 13:57:55 +04:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHODIMP nsChildView::Enable(bool aState)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-07-23 09:19:08 +04:00
|
|
|
bool nsChildView::IsEnabled() const
|
2002-03-01 02:10:04 +03:00
|
|
|
{
|
2012-07-23 09:19:08 +04:00
|
|
|
return true;
|
2002-03-01 02:10:04 +03:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHODIMP nsChildView::SetFocus(bool aRaise)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
2010-09-07 21:20:03 +04:00
|
|
|
NSWindow* window = [mView window];
|
|
|
|
if (window)
|
|
|
|
[window makeFirstResponder:mView];
|
2001-11-06 18:35:24 +03:00
|
|
|
return NS_OK;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Override to set the cursor on the mac
|
2005-09-30 04:59:29 +04:00
|
|
|
NS_IMETHODIMP nsChildView::SetCursor(nsCursor aCursor)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
2010-03-08 15:35:25 +03:00
|
|
|
if ([mView isDragInProgress])
|
|
|
|
return NS_OK; // Don't change the cursor during dragging.
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
nsBaseWidget::SetCursor(aCursor);
|
2010-03-11 19:44:31 +03:00
|
|
|
return [[nsCursorManager sharedInstance] setCursor:aCursor];
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
2005-09-30 04:59:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// implement to fix "hidden virtual function" warning
|
|
|
|
NS_IMETHODIMP nsChildView::SetCursor(imgIContainer* aCursor,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aHotspotX, uint32_t aHotspotY)
|
2005-09-30 04:59:29 +04:00
|
|
|
{
|
2010-03-11 19:44:31 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
|
|
|
nsBaseWidget::SetCursor(aCursor, aHotspotX, aHotspotY);
|
2013-12-05 02:46:19 +04:00
|
|
|
return [[nsCursorManager sharedInstance] setCursorWithImage:aCursor hotSpotX:aHotspotX hotSpotY:aHotspotY scaleFactor:BackingScaleFactor()];
|
2010-03-11 19:44:31 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
2005-09-30 04:59:29 +04:00
|
|
|
}
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
#pragma mark -
|
2006-12-20 05:13:57 +03:00
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
// Get this component dimension
|
2015-11-13 03:04:52 +03:00
|
|
|
NS_IMETHODIMP nsChildView::GetBounds(LayoutDeviceIntRect& aRect)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2015-11-23 07:32:29 +03:00
|
|
|
aRect = !mView ? mBounds : CocoaPointsToDevPixels([mView frame]);
|
2001-11-06 18:35:24 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-11-13 03:04:52 +03:00
|
|
|
NS_IMETHODIMP nsChildView::GetClientBounds(mozilla::LayoutDeviceIntRect& aRect)
|
2013-01-16 00:47:42 +04:00
|
|
|
{
|
2015-11-13 03:04:52 +03:00
|
|
|
GetBounds(aRect);
|
2013-01-16 00:47:42 +04:00
|
|
|
if (!mParentWidget) {
|
|
|
|
// For top level widgets we want the position on screen, not the position
|
|
|
|
// of this view inside the window.
|
2015-11-13 03:04:52 +03:00
|
|
|
aRect.MoveTo(WidgetToScreenOffset());
|
2013-01-16 00:47:42 +04:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-11-13 03:04:52 +03:00
|
|
|
NS_IMETHODIMP nsChildView::GetScreenBounds(LayoutDeviceIntRect& aRect)
|
2013-02-11 02:31:00 +04:00
|
|
|
{
|
2015-11-13 03:04:52 +03:00
|
|
|
GetBounds(aRect);
|
|
|
|
aRect.MoveTo(WidgetToScreenOffset());
|
2013-02-11 02:31:00 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-09-29 15:36:09 +04:00
|
|
|
double
|
2012-10-31 04:31:35 +04:00
|
|
|
nsChildView::GetDefaultScaleInternal()
|
2012-09-29 15:36:09 +04:00
|
|
|
{
|
|
|
|
return BackingScaleFactor();
|
|
|
|
}
|
|
|
|
|
|
|
|
CGFloat
|
2014-08-28 04:15:29 +04:00
|
|
|
nsChildView::BackingScaleFactor() const
|
2012-09-29 15:36:09 +04:00
|
|
|
{
|
|
|
|
if (mBackingScaleFactor > 0.0) {
|
|
|
|
return mBackingScaleFactor;
|
|
|
|
}
|
|
|
|
if (!mView) {
|
|
|
|
return 1.0;
|
|
|
|
}
|
|
|
|
mBackingScaleFactor = nsCocoaUtils::GetBackingScaleFactor(mView);
|
|
|
|
return mBackingScaleFactor;
|
|
|
|
}
|
|
|
|
|
2012-10-16 23:41:20 +04:00
|
|
|
void
|
|
|
|
nsChildView::BackingScaleFactorChanged()
|
|
|
|
{
|
|
|
|
CGFloat newScale = nsCocoaUtils::GetBackingScaleFactor(mView);
|
|
|
|
|
|
|
|
// ignore notification if it hasn't really changed (or maybe we have
|
|
|
|
// disabled HiDPI mode via prefs)
|
|
|
|
if (mBackingScaleFactor == newScale) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mBackingScaleFactor = newScale;
|
2016-03-23 19:30:07 +03:00
|
|
|
NSRect frame = [mView frame];
|
|
|
|
mBounds = nsCocoaUtils::CocoaRectToGeckoRectDevPix(frame, newScale);
|
2012-10-16 23:41:20 +04:00
|
|
|
|
2012-10-16 23:41:21 +04:00
|
|
|
if (mWidgetListener && !mWidgetListener->GetXULWindow()) {
|
|
|
|
nsIPresShell* presShell = mWidgetListener->GetPresShell();
|
|
|
|
if (presShell) {
|
|
|
|
presShell->BackingScaleFactorChanged();
|
|
|
|
}
|
2012-10-16 23:41:20 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-30 20:22:41 +04:00
|
|
|
int32_t
|
|
|
|
nsChildView::RoundsWidgetCoordinatesTo()
|
|
|
|
{
|
|
|
|
if (BackingScaleFactor() == 2.0) {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHODIMP nsChildView::ConstrainPosition(bool aAllowSlop,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t *aX, int32_t *aY)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2006-12-20 05:13:57 +03:00
|
|
|
// Move this component, aX and aY are in the parent widget coordinate system
|
2012-12-12 13:57:38 +04:00
|
|
|
NS_IMETHODIMP nsChildView::Move(double aX, double aY)
|
2002-04-06 23:50:30 +04:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
2012-12-12 13:57:38 +04:00
|
|
|
int32_t x = NSToIntRound(aX);
|
|
|
|
int32_t y = NSToIntRound(aY);
|
|
|
|
|
|
|
|
if (!mView || (mBounds.x == x && mBounds.y == y))
|
2007-11-07 10:36:10 +03:00
|
|
|
return NS_OK;
|
2002-04-06 23:50:30 +04:00
|
|
|
|
2012-12-12 13:57:38 +04:00
|
|
|
mBounds.x = x;
|
|
|
|
mBounds.y = y;
|
2006-12-20 05:13:57 +03:00
|
|
|
|
2014-01-08 13:37:59 +04:00
|
|
|
ManipulateViewWithoutNeedingDisplay(mView, ^{
|
2015-11-23 07:32:29 +03:00
|
|
|
[mView setFrame:DevPixelsToCocoaPoints(mBounds)];
|
2014-01-08 13:37:59 +04:00
|
|
|
});
|
2007-11-07 10:36:10 +03:00
|
|
|
|
2012-10-26 17:15:22 +04:00
|
|
|
NotifyRollupGeometryChange();
|
2007-11-07 10:36:10 +03:00
|
|
|
ReportMoveEvent();
|
2002-12-13 11:43:18 +03:00
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
return NS_OK;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
2012-12-12 13:57:38 +04:00
|
|
|
NS_IMETHODIMP nsChildView::Resize(double aWidth, double aHeight, bool aRepaint)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
2012-12-12 13:57:38 +04:00
|
|
|
int32_t width = NSToIntRound(aWidth);
|
|
|
|
int32_t height = NSToIntRound(aHeight);
|
|
|
|
|
|
|
|
if (!mView || (mBounds.width == width && mBounds.height == height))
|
2007-11-07 10:36:10 +03:00
|
|
|
return NS_OK;
|
2001-11-06 18:35:24 +03:00
|
|
|
|
2012-12-12 13:57:38 +04:00
|
|
|
mBounds.width = width;
|
|
|
|
mBounds.height = height;
|
2002-02-12 11:30:01 +03:00
|
|
|
|
2014-01-08 13:37:59 +04:00
|
|
|
ManipulateViewWithoutNeedingDisplay(mView, ^{
|
2015-11-23 07:32:29 +03:00
|
|
|
[mView setFrame:DevPixelsToCocoaPoints(mBounds)];
|
2014-01-08 13:37:59 +04:00
|
|
|
});
|
2007-11-07 10:36:10 +03:00
|
|
|
|
|
|
|
if (mVisible && aRepaint)
|
|
|
|
[mView setNeedsDisplay:YES];
|
|
|
|
|
2012-10-26 17:15:22 +04:00
|
|
|
NotifyRollupGeometryChange();
|
2007-11-07 10:36:10 +03:00
|
|
|
ReportSizeEvent();
|
2001-11-06 18:35:24 +03:00
|
|
|
|
|
|
|
return NS_OK;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
2012-12-12 13:57:38 +04:00
|
|
|
NS_IMETHODIMP nsChildView::Resize(double aX, double aY,
|
|
|
|
double aWidth, double aHeight, bool aRepaint)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
2012-12-12 13:57:38 +04:00
|
|
|
int32_t x = NSToIntRound(aX);
|
|
|
|
int32_t y = NSToIntRound(aY);
|
|
|
|
int32_t width = NSToIntRound(aWidth);
|
|
|
|
int32_t height = NSToIntRound(aHeight);
|
|
|
|
|
|
|
|
BOOL isMoving = (mBounds.x != x || mBounds.y != y);
|
|
|
|
BOOL isResizing = (mBounds.width != width || mBounds.height != height);
|
2007-11-07 10:36:10 +03:00
|
|
|
if (!mView || (!isMoving && !isResizing))
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
if (isMoving) {
|
2012-12-12 13:57:38 +04:00
|
|
|
mBounds.x = x;
|
|
|
|
mBounds.y = y;
|
2007-11-07 10:36:10 +03:00
|
|
|
}
|
|
|
|
if (isResizing) {
|
2012-12-12 13:57:38 +04:00
|
|
|
mBounds.width = width;
|
|
|
|
mBounds.height = height;
|
2007-11-07 10:36:10 +03:00
|
|
|
}
|
|
|
|
|
2014-01-08 13:37:59 +04:00
|
|
|
ManipulateViewWithoutNeedingDisplay(mView, ^{
|
2015-11-23 07:32:29 +03:00
|
|
|
[mView setFrame:DevPixelsToCocoaPoints(mBounds)];
|
2014-01-08 13:37:59 +04:00
|
|
|
});
|
2007-11-07 10:36:10 +03:00
|
|
|
|
|
|
|
if (mVisible && aRepaint)
|
|
|
|
[mView setNeedsDisplay:YES];
|
|
|
|
|
2012-10-26 17:15:22 +04:00
|
|
|
NotifyRollupGeometryChange();
|
2008-01-16 02:11:55 +03:00
|
|
|
if (isMoving) {
|
2007-11-07 10:36:10 +03:00
|
|
|
ReportMoveEvent();
|
2008-01-16 02:11:55 +03:00
|
|
|
if (mOnDestroyCalled)
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2007-11-07 10:36:10 +03:00
|
|
|
if (isResizing)
|
|
|
|
ReportSizeEvent();
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
return NS_OK;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
static const int32_t resizeIndicatorWidth = 15;
|
|
|
|
static const int32_t resizeIndicatorHeight = 15;
|
2015-11-19 06:10:38 +03:00
|
|
|
bool nsChildView::ShowsResizeIndicator(LayoutDeviceIntRect* aResizerRect)
|
2008-08-08 20:11:54 +04:00
|
|
|
{
|
|
|
|
NSView *topLevelView = mView, *superView = nil;
|
2008-08-20 08:23:19 +04:00
|
|
|
while ((superView = [topLevelView superview]))
|
2008-08-08 20:11:54 +04:00
|
|
|
topLevelView = superView;
|
|
|
|
|
2009-09-08 01:52:59 +04:00
|
|
|
if (![[topLevelView window] showsResizeIndicator] ||
|
|
|
|
!([[topLevelView window] styleMask] & NSResizableWindowMask))
|
2011-10-01 04:20:33 +04:00
|
|
|
return false;
|
2008-08-08 20:11:54 +04:00
|
|
|
|
|
|
|
if (aResizerRect) {
|
|
|
|
NSSize bounds = [topLevelView bounds].size;
|
|
|
|
NSPoint corner = NSMakePoint(bounds.width, [topLevelView isFlipped] ? bounds.height : 0);
|
|
|
|
corner = [topLevelView convertPoint:corner toView:mView];
|
|
|
|
aResizerRect->SetRect(NSToIntRound(corner.x) - resizeIndicatorWidth,
|
|
|
|
NSToIntRound(corner.y) - resizeIndicatorHeight,
|
|
|
|
resizeIndicatorWidth, resizeIndicatorHeight);
|
|
|
|
}
|
2011-10-01 04:20:33 +04:00
|
|
|
return true;
|
2008-08-08 20:11:54 +04:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
nsresult nsChildView::SynthesizeNativeKeyEvent(int32_t aNativeKeyboardLayout,
|
|
|
|
int32_t aNativeKeyCode,
|
|
|
|
uint32_t aModifierFlags,
|
2008-05-07 09:17:40 +04:00
|
|
|
const nsAString& aCharacters,
|
2015-04-14 18:36:36 +03:00
|
|
|
const nsAString& aUnmodifiedCharacters,
|
|
|
|
nsIObserver* aObserver)
|
2008-05-06 03:01:07 +04:00
|
|
|
{
|
2015-04-14 18:36:36 +03:00
|
|
|
AutoObserverNotifier notifier(aObserver, "keyevent");
|
2011-02-23 20:25:11 +03:00
|
|
|
return mTextInputHandler->SynthesizeNativeKeyEvent(aNativeKeyboardLayout,
|
|
|
|
aNativeKeyCode,
|
|
|
|
aModifierFlags,
|
|
|
|
aCharacters,
|
|
|
|
aUnmodifiedCharacters);
|
2008-05-06 03:01:07 +04:00
|
|
|
}
|
2001-11-06 18:35:24 +03:00
|
|
|
|
2015-02-15 21:52:28 +03:00
|
|
|
nsresult nsChildView::SynthesizeNativeMouseEvent(LayoutDeviceIntPoint aPoint,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aNativeMessage,
|
2015-04-14 18:36:36 +03:00
|
|
|
uint32_t aModifierFlags,
|
|
|
|
nsIObserver* aObserver)
|
2009-09-23 06:31:37 +04:00
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
2015-04-14 18:36:36 +03:00
|
|
|
AutoObserverNotifier notifier(aObserver, "mouseevent");
|
|
|
|
|
2015-01-21 01:26:38 +03:00
|
|
|
NSPoint pt =
|
|
|
|
nsCocoaUtils::DevPixelsToCocoaPoints(aPoint, BackingScaleFactor());
|
2013-03-06 21:16:44 +04:00
|
|
|
|
2009-09-23 06:31:37 +04:00
|
|
|
// Move the mouse cursor to the requested position and reconnect it to the mouse.
|
2013-03-06 21:16:44 +04:00
|
|
|
CGWarpMouseCursorPosition(NSPointToCGPoint(pt));
|
2009-09-23 06:31:37 +04:00
|
|
|
CGAssociateMouseAndMouseCursorPosition(true);
|
|
|
|
|
|
|
|
// aPoint is given with the origin on the top left, but convertScreenToBase
|
|
|
|
// expects a point in a coordinate system that has its origin on the bottom left.
|
2013-03-06 21:16:44 +04:00
|
|
|
NSPoint screenPoint = NSMakePoint(pt.x, nsCocoaUtils::FlippedScreenY(pt.y));
|
2009-09-23 06:31:37 +04:00
|
|
|
NSPoint windowPoint = [[mView window] convertScreenToBase:screenPoint];
|
|
|
|
|
2014-08-07 06:35:53 +04:00
|
|
|
NSEvent* event = [NSEvent mouseEventWithType:(NSEventType)aNativeMessage
|
2009-10-21 19:09:19 +04:00
|
|
|
location:windowPoint
|
|
|
|
modifierFlags:aModifierFlags
|
2015-08-10 20:59:16 +03:00
|
|
|
timestamp:[[NSProcessInfo processInfo] systemUptime]
|
2009-10-21 19:09:19 +04:00
|
|
|
windowNumber:[[mView window] windowNumber]
|
|
|
|
context:nil
|
|
|
|
eventNumber:0
|
|
|
|
clickCount:1
|
|
|
|
pressure:0.0];
|
2009-09-23 06:31:37 +04:00
|
|
|
|
|
|
|
if (!event)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2011-08-08 18:43:13 +04:00
|
|
|
if ([[mView window] isKindOfClass:[BaseWindow class]]) {
|
|
|
|
// Tracking area events don't end up in their tracking areas when sent
|
|
|
|
// through [NSApp sendEvent:], so pass them directly to the right methods.
|
|
|
|
BaseWindow* window = (BaseWindow*)[mView window];
|
|
|
|
if (aNativeMessage == NSMouseEntered) {
|
|
|
|
[window mouseEntered:event];
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
if (aNativeMessage == NSMouseExited) {
|
|
|
|
[window mouseExited:event];
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
if (aNativeMessage == NSMouseMoved) {
|
|
|
|
[window mouseMoved:event];
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-23 06:31:37 +04:00
|
|
|
[NSApp sendEvent:event];
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
}
|
|
|
|
|
2015-05-05 21:45:11 +03:00
|
|
|
nsresult nsChildView::SynthesizeNativeMouseScrollEvent(mozilla::LayoutDeviceIntPoint aPoint,
|
|
|
|
uint32_t aNativeMessage,
|
|
|
|
double aDeltaX,
|
|
|
|
double aDeltaY,
|
|
|
|
double aDeltaZ,
|
|
|
|
uint32_t aModifierFlags,
|
|
|
|
uint32_t aAdditionalFlags,
|
|
|
|
nsIObserver* aObserver)
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
|
|
|
AutoObserverNotifier notifier(aObserver, "mousescrollevent");
|
|
|
|
|
|
|
|
NSPoint pt =
|
|
|
|
nsCocoaUtils::DevPixelsToCocoaPoints(aPoint, BackingScaleFactor());
|
|
|
|
|
|
|
|
// Move the mouse cursor to the requested position and reconnect it to the mouse.
|
|
|
|
CGWarpMouseCursorPosition(NSPointToCGPoint(pt));
|
|
|
|
CGAssociateMouseAndMouseCursorPosition(true);
|
|
|
|
|
|
|
|
// Mostly copied from http://stackoverflow.com/a/6130349
|
|
|
|
CGScrollEventUnit units =
|
|
|
|
(aAdditionalFlags & nsIDOMWindowUtils::MOUSESCROLL_SCROLL_LINES)
|
|
|
|
? kCGScrollEventUnitLine : kCGScrollEventUnitPixel;
|
|
|
|
CGEventRef cgEvent = CGEventCreateScrollWheelEvent(NULL, units, 3, aDeltaY, aDeltaX, aDeltaZ);
|
|
|
|
if (!cgEvent) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
CGEventPost(kCGHIDEventTap, cgEvent);
|
|
|
|
CFRelease(cgEvent);
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
}
|
|
|
|
|
2008-10-30 08:36:01 +03:00
|
|
|
// First argument has to be an NSMenu representing the application's top-level
|
|
|
|
// menu bar. The returned item is *not* retained.
|
|
|
|
static NSMenuItem* NativeMenuItemWithLocation(NSMenu* menubar, NSString* locationString)
|
|
|
|
{
|
|
|
|
NSArray* indexes = [locationString componentsSeparatedByString:@"|"];
|
2008-06-28 11:55:30 +04:00
|
|
|
unsigned int indexCount = [indexes count];
|
|
|
|
if (indexCount == 0)
|
2008-10-30 08:36:01 +03:00
|
|
|
return nil;
|
|
|
|
|
2008-06-28 11:55:30 +04:00
|
|
|
NSMenu* currentSubmenu = [NSApp mainMenu];
|
2008-10-30 08:36:01 +03:00
|
|
|
for (unsigned int i = 0; i < indexCount; i++) {
|
2008-06-28 11:55:30 +04:00
|
|
|
int targetIndex;
|
|
|
|
// We remove the application menu from consideration for the top-level menu
|
|
|
|
if (i == 0)
|
|
|
|
targetIndex = [[indexes objectAtIndex:i] intValue] + 1;
|
|
|
|
else
|
|
|
|
targetIndex = [[indexes objectAtIndex:i] intValue];
|
|
|
|
int itemCount = [currentSubmenu numberOfItems];
|
|
|
|
if (targetIndex < itemCount) {
|
|
|
|
NSMenuItem* menuItem = [currentSubmenu itemAtIndex:targetIndex];
|
2008-10-30 08:36:01 +03:00
|
|
|
// if this is the last index just return the menu item
|
|
|
|
if (i == (indexCount - 1))
|
|
|
|
return menuItem;
|
|
|
|
// if this is not the last index find the submenu and keep going
|
2008-06-28 11:55:30 +04:00
|
|
|
if ([menuItem hasSubmenu])
|
2008-10-30 08:36:01 +03:00
|
|
|
currentSubmenu = [menuItem submenu];
|
|
|
|
else
|
|
|
|
return nil;
|
2008-06-28 11:55:30 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-30 08:36:01 +03:00
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Used for testing native menu system structure and event handling.
|
|
|
|
NS_IMETHODIMP nsChildView::ActivateNativeMenuItemAt(const nsAString& indexString)
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
2013-10-10 20:59:40 +04:00
|
|
|
NSString* locationString = [NSString stringWithCharacters:reinterpret_cast<const unichar*>(indexString.BeginReading())
|
|
|
|
length:indexString.Length()];
|
2008-10-30 08:36:01 +03:00
|
|
|
NSMenuItem* item = NativeMenuItemWithLocation([NSApp mainMenu], locationString);
|
2008-07-28 08:46:33 +04:00
|
|
|
// We can't perform an action on an item with a submenu, that will raise
|
|
|
|
// an obj-c exception.
|
2008-10-30 08:36:01 +03:00
|
|
|
if (item && ![item hasSubmenu]) {
|
|
|
|
NSMenu* parent = [item menu];
|
|
|
|
if (parent) {
|
2008-07-28 08:46:33 +04:00
|
|
|
// NSLog(@"Performing action for native menu item titled: %@\n",
|
|
|
|
// [[currentSubmenu itemAtIndex:targetIndex] title]);
|
2008-10-30 08:36:01 +03:00
|
|
|
[parent performActionForItemAtIndex:[parent indexOfItem:item]];
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2008-06-28 11:55:30 +04:00
|
|
|
}
|
2008-10-30 08:36:01 +03:00
|
|
|
return NS_ERROR_FAILURE;
|
2008-07-28 08:46:33 +04:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
}
|
|
|
|
|
2008-10-30 08:36:01 +03:00
|
|
|
// Used for testing native menu system structure and event handling.
|
|
|
|
NS_IMETHODIMP nsChildView::ForceUpdateNativeMenuAt(const nsAString& indexString)
|
2008-07-28 08:46:33 +04:00
|
|
|
{
|
2008-10-30 08:36:01 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
2009-08-14 02:06:49 +04:00
|
|
|
nsCocoaWindow *widget = GetXULWindowWidget();
|
|
|
|
if (widget) {
|
|
|
|
nsMenuBarX* mb = widget->GetMenuBar();
|
|
|
|
if (mb) {
|
|
|
|
if (indexString.IsEmpty())
|
|
|
|
mb->ForceNativeMenuReload();
|
|
|
|
else
|
|
|
|
mb->ForceUpdateNativeMenuAt(indexString);
|
2008-07-28 08:46:33 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_OK;
|
2008-10-30 08:36:01 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
2008-06-28 11:55:30 +04:00
|
|
|
}
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
#pragma mark -
|
|
|
|
|
2006-12-20 05:13:57 +03:00
|
|
|
#ifdef INVALIDATE_DEBUGGING
|
2002-12-13 11:43:18 +03:00
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
static Boolean KeyDown(const UInt8 theKey)
|
|
|
|
{
|
|
|
|
KeyMap map;
|
|
|
|
GetKeys(map);
|
|
|
|
return ((*((UInt8 *)map + (theKey >> 3)) >> (theKey & 7)) & 1) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Boolean caps_lock()
|
|
|
|
{
|
|
|
|
return KeyDown(0x39);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void blinkRect(Rect* r)
|
|
|
|
{
|
|
|
|
StRegionFromPool oldClip;
|
|
|
|
if (oldClip != NULL)
|
|
|
|
::GetClip(oldClip);
|
|
|
|
|
|
|
|
::ClipRect(r);
|
|
|
|
::InvertRect(r);
|
|
|
|
UInt32 end = ::TickCount() + 5;
|
|
|
|
while (::TickCount() < end) ;
|
|
|
|
::InvertRect(r);
|
|
|
|
|
|
|
|
if (oldClip != NULL)
|
|
|
|
::SetClip(oldClip);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void blinkRgn(RgnHandle rgn)
|
|
|
|
{
|
|
|
|
StRegionFromPool oldClip;
|
|
|
|
if (oldClip != NULL)
|
|
|
|
::GetClip(oldClip);
|
|
|
|
|
|
|
|
::SetClip(rgn);
|
|
|
|
::InvertRgn(rgn);
|
|
|
|
UInt32 end = ::TickCount() + 5;
|
|
|
|
while (::TickCount() < end) ;
|
|
|
|
::InvertRgn(rgn);
|
|
|
|
|
|
|
|
if (oldClip != NULL)
|
|
|
|
::SetClip(oldClip);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Invalidate this component's visible area
|
2015-11-17 08:18:31 +03:00
|
|
|
NS_IMETHODIMP nsChildView::Invalidate(const LayoutDeviceIntRect& aRect)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
2005-06-16 16:49:43 +04:00
|
|
|
if (!mView || !mVisible)
|
2001-11-06 18:35:24 +03:00
|
|
|
return NS_OK;
|
2005-06-16 16:49:43 +04:00
|
|
|
|
2014-01-23 22:26:41 +04:00
|
|
|
NS_ASSERTION(GetLayerManager()->GetBackendType() != LayersBackend::LAYERS_CLIENT,
|
2013-06-18 11:59:00 +04:00
|
|
|
"Shouldn't need to invalidate with accelerated OMTC layers!");
|
|
|
|
|
2011-12-24 07:52:21 +04:00
|
|
|
if ([NSView focusView]) {
|
2006-09-15 02:39:58 +04:00
|
|
|
// if a view is focussed (i.e. being drawn), then postpone the invalidate so that we
|
|
|
|
// don't lose it.
|
2015-11-17 08:18:31 +03:00
|
|
|
[mView setNeedsPendingDisplayInRect:DevPixelsToCocoaPoints(aRect)];
|
2006-09-15 02:39:58 +04:00
|
|
|
}
|
|
|
|
else {
|
2015-11-17 08:18:31 +03:00
|
|
|
[mView setNeedsDisplayInRect:DevPixelsToCocoaPoints(aRect)];
|
2006-09-11 21:09:47 +04:00
|
|
|
}
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
return NS_OK;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool
|
2015-07-17 01:18:05 +03:00
|
|
|
nsChildView::ComputeShouldAccelerate()
|
2010-09-29 22:38:39 +04:00
|
|
|
{
|
2011-02-08 15:42:06 +03:00
|
|
|
// Don't use OpenGL for transparent windows or for popup windows.
|
|
|
|
if (!mView || ![[mView window] isOpaque] ||
|
|
|
|
[[mView window] isKindOfClass:[PopupWindow class]])
|
2011-10-01 04:20:33 +04:00
|
|
|
return false;
|
2010-09-29 22:38:39 +04:00
|
|
|
|
2015-07-17 01:18:05 +03:00
|
|
|
return nsBaseWidget::ComputeShouldAccelerate();
|
2010-09-29 22:38:39 +04:00
|
|
|
}
|
|
|
|
|
2012-06-13 23:53:11 +04:00
|
|
|
bool
|
2013-03-04 22:32:20 +04:00
|
|
|
nsChildView::ShouldUseOffMainThreadCompositing()
|
2012-06-13 23:53:11 +04:00
|
|
|
{
|
2013-08-19 11:13:32 +04:00
|
|
|
// Don't use OMTC for transparent windows or for popup windows.
|
2013-07-09 08:21:05 +04:00
|
|
|
if (!mView || ![[mView window] isOpaque] ||
|
|
|
|
[[mView window] isKindOfClass:[PopupWindow class]])
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return nsBaseWidget::ShouldUseOffMainThreadCompositing();
|
2012-06-13 23:53:11 +04:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
inline uint16_t COLOR8TOCOLOR16(uint8_t color8)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
|
|
|
// return (color8 == 0xFF ? 0xFFFF : (color8 << 8));
|
|
|
|
return (color8 << 8) | color8; /* (color8 * 257) == (color8 * 0x0101) */
|
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark -
|
|
|
|
|
2009-07-22 04:44:55 +04:00
|
|
|
nsresult nsChildView::ConfigureChildren(const nsTArray<Configuration>& aConfigurations)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
2010-10-11 04:58:21 +04:00
|
|
|
}
|
2009-07-22 04:44:55 +04:00
|
|
|
|
2007-09-20 02:15:48 +04:00
|
|
|
// Invokes callback and ProcessEvent methods on Event Listener object
|
2013-10-02 07:46:03 +04:00
|
|
|
NS_IMETHODIMP nsChildView::DispatchEvent(WidgetGUIEvent* event,
|
|
|
|
nsEventStatus& aStatus)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2008-03-13 01:44:45 +03:00
|
|
|
#ifdef DEBUG
|
2016-04-14 11:03:14 +03:00
|
|
|
debug_DumpEvent(stdout, event->mWidget, event, "something", 0);
|
2008-03-13 01:44:45 +03:00
|
|
|
#endif
|
|
|
|
|
2011-05-08 14:19:23 +04:00
|
|
|
NS_ASSERTION(!(mTextInputHandler && mTextInputHandler->IsIMEComposing() &&
|
2013-09-24 14:04:16 +04:00
|
|
|
event->HasKeyEventMessage()),
|
2008-12-06 12:23:55 +03:00
|
|
|
"Any key events should not be fired during IME composing");
|
|
|
|
|
2013-10-18 10:10:24 +04:00
|
|
|
if (event->mFlags.mIsSynthesizedForTests) {
|
|
|
|
WidgetKeyboardEvent* keyEvent = event->AsKeyboardEvent();
|
|
|
|
if (keyEvent) {
|
|
|
|
nsresult rv = mTextInputHandler->AttachNativeKeyEvent(*keyEvent);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
2013-07-10 18:12:40 +04:00
|
|
|
}
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
aStatus = nsEventStatus_eIgnore;
|
2006-07-25 22:51:41 +04:00
|
|
|
|
2012-08-15 22:53:09 +04:00
|
|
|
nsIWidgetListener* listener = mWidgetListener;
|
|
|
|
|
|
|
|
// If the listener is NULL, check if the parent is a popup. If it is, then
|
|
|
|
// this child is the popup content view attached to a popup. Get the
|
|
|
|
// listener from the parent popup instead.
|
2009-07-01 22:41:34 +04:00
|
|
|
nsCOMPtr<nsIWidget> kungFuDeathGrip = do_QueryInterface(mParentWidget ? mParentWidget : this);
|
2012-08-15 22:53:09 +04:00
|
|
|
if (!listener && mParentWidget) {
|
2014-03-19 20:48:08 +04:00
|
|
|
if (mParentWidget->WindowType() == eWindowType_popup) {
|
2016-04-14 11:03:14 +03:00
|
|
|
// Check just in case event->mWidget isn't this widget
|
|
|
|
if (event->mWidget) {
|
|
|
|
listener = event->mWidget->GetWidgetListener();
|
|
|
|
}
|
2012-08-15 22:53:09 +04:00
|
|
|
if (!listener) {
|
2016-04-14 11:03:14 +03:00
|
|
|
event->mWidget = mParentWidget;
|
2012-08-15 22:53:09 +04:00
|
|
|
listener = mParentWidget->GetWidgetListener();
|
|
|
|
}
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
}
|
2007-09-20 12:56:42 +04:00
|
|
|
|
2012-08-15 22:53:09 +04:00
|
|
|
if (listener)
|
|
|
|
aStatus = listener->HandleEvent(event, mUseAttachedEvents);
|
2007-09-20 12:56:42 +04:00
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-10-02 07:46:03 +04:00
|
|
|
bool nsChildView::DispatchWindowEvent(WidgetGUIEvent& event)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
|
|
|
nsEventStatus status;
|
|
|
|
DispatchEvent(&event, status);
|
|
|
|
return ConvertStatus(status);
|
|
|
|
}
|
|
|
|
|
2013-02-26 01:18:48 +04:00
|
|
|
nsIWidget*
|
|
|
|
nsChildView::GetWidgetForListenerEvents()
|
2012-08-15 22:52:42 +04:00
|
|
|
{
|
|
|
|
// If there is no listener, use the parent popup's listener if that exists.
|
2014-03-19 20:48:08 +04:00
|
|
|
if (!mWidgetListener && mParentWidget &&
|
|
|
|
mParentWidget->WindowType() == eWindowType_popup) {
|
|
|
|
return mParentWidget;
|
2012-08-15 22:52:42 +04:00
|
|
|
}
|
|
|
|
|
2013-02-26 01:18:48 +04:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsChildView::WillPaintWindow()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidgetForListenerEvents();
|
|
|
|
|
|
|
|
nsIWidgetListener* listener = widget->GetWidgetListener();
|
|
|
|
if (listener) {
|
|
|
|
listener->WillPaintWindow(widget);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-03 08:45:41 +03:00
|
|
|
bool nsChildView::PaintWindow(LayoutDeviceIntRegion aRegion)
|
2013-02-26 01:18:48 +04:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidgetForListenerEvents();
|
|
|
|
|
2013-01-28 23:34:03 +04:00
|
|
|
nsIWidgetListener* listener = widget->GetWidgetListener();
|
2012-08-15 22:52:42 +04:00
|
|
|
if (!listener)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bool returnValue = false;
|
|
|
|
bool oldDispatchPaint = mIsDispatchPaint;
|
|
|
|
mIsDispatchPaint = true;
|
2013-05-23 18:49:18 +04:00
|
|
|
returnValue = listener->PaintWindow(widget, aRegion);
|
2013-01-28 23:34:03 +04:00
|
|
|
|
|
|
|
listener = widget->GetWidgetListener();
|
|
|
|
if (listener) {
|
|
|
|
listener->DidPaintWindow();
|
|
|
|
}
|
|
|
|
|
2012-08-15 22:52:42 +04:00
|
|
|
mIsDispatchPaint = oldDispatchPaint;
|
|
|
|
return returnValue;
|
|
|
|
}
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
#pragma mark -
|
|
|
|
|
2012-08-15 22:52:42 +04:00
|
|
|
void nsChildView::ReportMoveEvent()
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2014-02-28 11:45:08 +04:00
|
|
|
NotifyWindowMoved(mBounds.x, mBounds.y);
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
2012-08-15 22:52:42 +04:00
|
|
|
void nsChildView::ReportSizeEvent()
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2012-08-15 22:52:42 +04:00
|
|
|
if (mWidgetListener)
|
|
|
|
mWidgetListener->WindowResized(this, mBounds.width, mBounds.height);
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark -
|
|
|
|
|
2015-11-13 12:37:02 +03:00
|
|
|
LayoutDeviceIntPoint nsChildView::GetClientOffset()
|
2015-04-29 18:41:19 +03:00
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
|
|
|
NSPoint origin = [mView convertPoint:NSMakePoint(0, 0) toView:nil];
|
|
|
|
origin.y = [[mView window] frame].size.height - origin.y;
|
2015-11-19 09:34:20 +03:00
|
|
|
return CocoaPointsToDevPixels(origin);
|
2015-04-29 18:41:19 +03:00
|
|
|
|
2015-11-13 12:37:02 +03:00
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(LayoutDeviceIntPoint(0, 0));
|
2015-04-29 18:41:19 +03:00
|
|
|
}
|
|
|
|
|
2009-02-19 03:11:49 +03:00
|
|
|
// Return the offset between this child view and the screen.
|
2012-09-29 15:36:09 +04:00
|
|
|
// @return -- widget origin in device-pixel coords
|
2015-02-04 23:21:03 +03:00
|
|
|
LayoutDeviceIntPoint nsChildView::WidgetToScreenOffset()
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2009-02-19 03:11:49 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
2012-09-29 15:36:09 +04:00
|
|
|
NSPoint origin = NSMakePoint(0, 0);
|
|
|
|
|
|
|
|
// 1. First translate view origin point into window coords.
|
|
|
|
// The returned point is in bottom-left coordinates.
|
|
|
|
origin = [mView convertPoint:origin toView:nil];
|
|
|
|
|
2006-09-21 20:22:44 +04:00
|
|
|
// 2. We turn the window-coord rect's origin into screen (still bottom-left) coords.
|
2012-09-29 15:36:09 +04:00
|
|
|
origin = [[mView window] convertBaseToScreen:origin];
|
|
|
|
|
2006-09-21 20:22:44 +04:00
|
|
|
// 3. Since we're dealing in bottom-left coords, we need to make it top-left coords
|
|
|
|
// before we pass it back to Gecko.
|
2012-09-29 15:36:09 +04:00
|
|
|
FlipCocoaScreenCoordinate(origin);
|
|
|
|
|
|
|
|
// convert to device pixels
|
2015-11-19 09:34:20 +03:00
|
|
|
return CocoaPointsToDevPixels(origin);
|
2008-02-21 02:47:05 +03:00
|
|
|
|
2015-02-04 23:21:03 +03:00
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(LayoutDeviceIntPoint(0,0));
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
2012-10-26 17:15:22 +04:00
|
|
|
NS_IMETHODIMP nsChildView::CaptureRollupEvents(nsIRollupListener * aListener,
|
|
|
|
bool aDoCapture)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2006-06-29 05:33:57 +04:00
|
|
|
// this never gets called, only top-level windows can be rollup widgets
|
2001-11-06 18:35:24 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2004-04-19 03:18:23 +04:00
|
|
|
NS_IMETHODIMP nsChildView::SetTitle(const nsAString& title)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2007-07-19 04:56:33 +04:00
|
|
|
// child views don't have titles
|
2001-11-06 18:35:24 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
NS_IMETHODIMP nsChildView::GetAttention(int32_t aCycleCount)
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
2006-07-11 23:51:56 +04:00
|
|
|
[NSApp requestUserAttention:NSInformationalRequest];
|
2001-11-06 18:35:24 +03:00
|
|
|
return NS_OK;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
2009-04-22 03:53:52 +04:00
|
|
|
/* static */
|
2011-09-29 10:19:26 +04:00
|
|
|
bool nsChildView::DoHasPendingInputEvent()
|
2009-04-22 03:53:52 +04:00
|
|
|
{
|
2014-04-23 03:23:18 +04:00
|
|
|
return sLastInputEventCount != GetCurrentInputEventCount();
|
2009-04-22 03:53:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* static */
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t nsChildView::GetCurrentInputEventCount()
|
2009-04-22 03:53:52 +04:00
|
|
|
{
|
|
|
|
// Can't use kCGAnyInputEventType because that updates too rarely for us (and
|
|
|
|
// always in increments of 30+!) and because apparently it's sort of broken
|
|
|
|
// on Tiger. So just go ahead and query the counters we care about.
|
|
|
|
static const CGEventType eventTypes[] = {
|
|
|
|
kCGEventLeftMouseDown,
|
|
|
|
kCGEventLeftMouseUp,
|
|
|
|
kCGEventRightMouseDown,
|
|
|
|
kCGEventRightMouseUp,
|
|
|
|
kCGEventMouseMoved,
|
|
|
|
kCGEventLeftMouseDragged,
|
|
|
|
kCGEventRightMouseDragged,
|
|
|
|
kCGEventKeyDown,
|
|
|
|
kCGEventKeyUp,
|
|
|
|
kCGEventScrollWheel,
|
|
|
|
kCGEventTabletPointer,
|
|
|
|
kCGEventOtherMouseDown,
|
|
|
|
kCGEventOtherMouseUp,
|
|
|
|
kCGEventOtherMouseDragged
|
|
|
|
};
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t eventCount = 0;
|
|
|
|
for (uint32_t i = 0; i < ArrayLength(eventTypes); ++i) {
|
2009-04-22 03:53:52 +04:00
|
|
|
eventCount +=
|
|
|
|
CGEventSourceCounterForEventType(kCGEventSourceStateCombinedSessionState,
|
|
|
|
eventTypes[i]);
|
|
|
|
}
|
|
|
|
return eventCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */
|
|
|
|
void nsChildView::UpdateCurrentInputEventCount()
|
|
|
|
{
|
|
|
|
sLastInputEventCount = GetCurrentInputEventCount();
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool nsChildView::HasPendingInputEvent()
|
2009-04-22 03:53:52 +04:00
|
|
|
{
|
|
|
|
return DoHasPendingInputEvent();
|
|
|
|
}
|
2006-12-20 05:13:57 +03:00
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
#pragma mark -
|
|
|
|
|
2015-02-20 19:37:02 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsChildView::StartPluginIME(const mozilla::WidgetKeyboardEvent& aKeyboardEvent,
|
|
|
|
int32_t aPanelX, int32_t aPanelY,
|
|
|
|
nsString& aCommitted)
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(mView, NS_ERROR_NOT_AVAILABLE);
|
|
|
|
|
|
|
|
ComplexTextInputPanel* ctiPanel =
|
|
|
|
ComplexTextInputPanel::GetSharedComplexTextInputPanel();
|
|
|
|
|
|
|
|
ctiPanel->PlacePanel(aPanelX, aPanelY);
|
|
|
|
// We deliberately don't use TextInputHandler::GetCurrentKeyEvent() to
|
|
|
|
// obtain the NSEvent* we pass to InterpretKeyEvent(). This works fine in
|
|
|
|
// non-e10s mode. But in e10s mode TextInputHandler::HandleKeyDownEvent()
|
|
|
|
// has already returned, so the relevant KeyEventState* (and its NSEvent*)
|
|
|
|
// is already out of scope. Furthermore we don't *need* to use it.
|
|
|
|
// StartPluginIME() is only ever called to start a new IME session when none
|
|
|
|
// currently exists. So nested IME should never reach here, and so it should
|
|
|
|
// be fine to use the last key-down event received by -[ChildView keyDown:]
|
|
|
|
// (as we currently do).
|
2015-07-09 18:11:22 +03:00
|
|
|
ctiPanel->InterpretKeyEvent([(ChildView*)mView lastKeyDownEvent], aCommitted);
|
2015-02-20 19:37:02 +03:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsChildView::SetPluginFocused(bool& aFocused)
|
|
|
|
{
|
|
|
|
if (aFocused == mPluginFocused) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
if (!aFocused) {
|
|
|
|
ComplexTextInputPanel* ctiPanel =
|
|
|
|
ComplexTextInputPanel::GetSharedComplexTextInputPanel();
|
|
|
|
if (ctiPanel) {
|
|
|
|
ctiPanel->CancelComposition();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mPluginFocused = aFocused;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-11-27 15:51:52 +04:00
|
|
|
NS_IMETHODIMP_(void)
|
|
|
|
nsChildView::SetInputContext(const InputContext& aContext,
|
|
|
|
const InputContextAction& aAction)
|
2005-08-23 18:32:09 +04:00
|
|
|
{
|
2013-08-07 06:49:21 +04:00
|
|
|
NS_ENSURE_TRUE_VOID(mTextInputHandler);
|
|
|
|
|
2015-09-01 21:56:23 +03:00
|
|
|
if (mTextInputHandler->IsFocused()) {
|
2013-08-07 06:49:21 +04:00
|
|
|
if (aContext.IsPasswordEditor()) {
|
|
|
|
TextInputHandler::EnableSecureEventInput();
|
|
|
|
} else {
|
|
|
|
TextInputHandler::EnsureSecureEventInputDisabled();
|
|
|
|
}
|
2013-05-24 20:27:52 +04:00
|
|
|
}
|
|
|
|
|
2011-11-27 15:51:52 +04:00
|
|
|
mInputContext = aContext;
|
2011-11-27 15:51:53 +04:00
|
|
|
switch (aContext.mIMEState.mEnabled) {
|
|
|
|
case IMEState::ENABLED:
|
|
|
|
case IMEState::PLUGIN:
|
2011-10-01 04:20:33 +04:00
|
|
|
mTextInputHandler->SetASCIICapableOnly(false);
|
|
|
|
mTextInputHandler->EnableIME(true);
|
2011-11-27 15:51:53 +04:00
|
|
|
if (mInputContext.mIMEState.mOpen != IMEState::DONT_CHANGE_OPEN_STATE) {
|
|
|
|
mTextInputHandler->SetIMEOpenState(
|
|
|
|
mInputContext.mIMEState.mOpen == IMEState::OPEN);
|
|
|
|
}
|
2007-04-15 17:43:55 +04:00
|
|
|
break;
|
2011-11-27 15:51:53 +04:00
|
|
|
case IMEState::DISABLED:
|
2011-10-01 04:20:33 +04:00
|
|
|
mTextInputHandler->SetASCIICapableOnly(false);
|
|
|
|
mTextInputHandler->EnableIME(false);
|
2007-04-15 17:43:55 +04:00
|
|
|
break;
|
2011-11-27 15:51:53 +04:00
|
|
|
case IMEState::PASSWORD:
|
2011-10-01 04:20:33 +04:00
|
|
|
mTextInputHandler->SetASCIICapableOnly(true);
|
|
|
|
mTextInputHandler->EnableIME(false);
|
2007-04-15 17:43:55 +04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
NS_ERROR("not implemented!");
|
|
|
|
}
|
2005-08-23 18:32:09 +04:00
|
|
|
}
|
|
|
|
|
2011-11-27 15:51:52 +04:00
|
|
|
NS_IMETHODIMP_(InputContext)
|
|
|
|
nsChildView::GetInputContext()
|
2005-08-23 18:32:09 +04:00
|
|
|
{
|
2011-11-27 15:51:53 +04:00
|
|
|
switch (mInputContext.mIMEState.mEnabled) {
|
|
|
|
case IMEState::ENABLED:
|
|
|
|
case IMEState::PLUGIN:
|
|
|
|
if (mTextInputHandler) {
|
|
|
|
mInputContext.mIMEState.mOpen =
|
|
|
|
mTextInputHandler->IsIMEOpened() ? IMEState::OPEN : IMEState::CLOSED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// If mTextInputHandler is null, set CLOSED instead...
|
2015-10-07 07:03:59 +03:00
|
|
|
MOZ_FALLTHROUGH;
|
2011-11-27 15:51:53 +04:00
|
|
|
default:
|
|
|
|
mInputContext.mIMEState.mOpen = IMEState::CLOSED;
|
|
|
|
break;
|
|
|
|
}
|
2011-11-27 15:51:52 +04:00
|
|
|
return mInputContext;
|
2005-08-23 18:32:09 +04:00
|
|
|
}
|
|
|
|
|
2016-03-16 07:47:49 +03:00
|
|
|
NS_IMETHODIMP_(TextEventDispatcherListener*)
|
|
|
|
nsChildView::GetNativeTextEventDispatcherListener()
|
|
|
|
{
|
|
|
|
if (NS_WARN_IF(!mTextInputHandler)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return mTextInputHandler;
|
|
|
|
}
|
|
|
|
|
2014-04-22 00:40:09 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsChildView::AttachNativeKeyEvent(mozilla::WidgetKeyboardEvent& aEvent)
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(mTextInputHandler, NS_ERROR_NOT_AVAILABLE);
|
|
|
|
return mTextInputHandler->AttachNativeKeyEvent(aEvent);
|
|
|
|
}
|
|
|
|
|
2014-11-22 17:39:03 +03:00
|
|
|
bool
|
|
|
|
nsChildView::ExecuteNativeKeyBindingRemapped(NativeKeyBindingsType aType,
|
|
|
|
const WidgetKeyboardEvent& aEvent,
|
|
|
|
DoCommandCallback aCallback,
|
|
|
|
void* aCallbackData,
|
|
|
|
uint32_t aGeckoKeyCode,
|
|
|
|
uint32_t aCocoaKeyCode)
|
|
|
|
{
|
|
|
|
NSEvent *originalEvent = reinterpret_cast<NSEvent*>(aEvent.mNativeKeyEvent);
|
|
|
|
|
|
|
|
WidgetKeyboardEvent modifiedEvent(aEvent);
|
|
|
|
modifiedEvent.keyCode = aGeckoKeyCode;
|
|
|
|
|
|
|
|
unichar ch = nsCocoaUtils::ConvertGeckoKeyCodeToMacCharCode(aGeckoKeyCode);
|
|
|
|
NSString *chars =
|
|
|
|
[[[NSString alloc] initWithCharacters:&ch length:1] autorelease];
|
|
|
|
|
|
|
|
modifiedEvent.mNativeKeyEvent =
|
|
|
|
[NSEvent keyEventWithType:[originalEvent type]
|
|
|
|
location:[originalEvent locationInWindow]
|
|
|
|
modifierFlags:[originalEvent modifierFlags]
|
|
|
|
timestamp:[originalEvent timestamp]
|
|
|
|
windowNumber:[originalEvent windowNumber]
|
|
|
|
context:[originalEvent context]
|
|
|
|
characters:chars
|
|
|
|
charactersIgnoringModifiers:chars
|
|
|
|
isARepeat:[originalEvent isARepeat]
|
|
|
|
keyCode:aCocoaKeyCode];
|
|
|
|
|
|
|
|
NativeKeyBindings* keyBindings = NativeKeyBindings::GetInstance(aType);
|
|
|
|
return keyBindings->Execute(modifiedEvent, aCallback, aCallbackData);
|
|
|
|
}
|
|
|
|
|
2014-03-14 17:13:31 +04:00
|
|
|
NS_IMETHODIMP_(bool)
|
|
|
|
nsChildView::ExecuteNativeKeyBinding(NativeKeyBindingsType aType,
|
|
|
|
const WidgetKeyboardEvent& aEvent,
|
|
|
|
DoCommandCallback aCallback,
|
|
|
|
void* aCallbackData)
|
|
|
|
{
|
2014-11-22 17:39:03 +03:00
|
|
|
// If the key is a cursor-movement arrow, and the current selection has
|
|
|
|
// vertical writing-mode, we'll remap so that the movement command
|
|
|
|
// generated (in terms of characters/lines) will be appropriate for
|
|
|
|
// the physical direction of the arrow.
|
|
|
|
if (aEvent.keyCode >= nsIDOMKeyEvent::DOM_VK_LEFT &&
|
|
|
|
aEvent.keyCode <= nsIDOMKeyEvent::DOM_VK_DOWN) {
|
2015-09-10 04:40:05 +03:00
|
|
|
WidgetQueryContentEvent query(true, eQuerySelectedText, this);
|
2014-11-22 17:39:03 +03:00
|
|
|
DispatchWindowEvent(query);
|
|
|
|
|
|
|
|
if (query.mSucceeded && query.mReply.mWritingMode.IsVertical()) {
|
|
|
|
uint32_t geckoKey = 0;
|
|
|
|
uint32_t cocoaKey = 0;
|
|
|
|
|
|
|
|
switch (aEvent.keyCode) {
|
|
|
|
case nsIDOMKeyEvent::DOM_VK_LEFT:
|
|
|
|
if (query.mReply.mWritingMode.IsVerticalLR()) {
|
|
|
|
geckoKey = nsIDOMKeyEvent::DOM_VK_UP;
|
|
|
|
cocoaKey = kVK_UpArrow;
|
|
|
|
} else {
|
|
|
|
geckoKey = nsIDOMKeyEvent::DOM_VK_DOWN;
|
|
|
|
cocoaKey = kVK_DownArrow;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case nsIDOMKeyEvent::DOM_VK_RIGHT:
|
|
|
|
if (query.mReply.mWritingMode.IsVerticalLR()) {
|
|
|
|
geckoKey = nsIDOMKeyEvent::DOM_VK_DOWN;
|
|
|
|
cocoaKey = kVK_DownArrow;
|
|
|
|
} else {
|
|
|
|
geckoKey = nsIDOMKeyEvent::DOM_VK_UP;
|
|
|
|
cocoaKey = kVK_UpArrow;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case nsIDOMKeyEvent::DOM_VK_UP:
|
|
|
|
geckoKey = nsIDOMKeyEvent::DOM_VK_LEFT;
|
|
|
|
cocoaKey = kVK_LeftArrow;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case nsIDOMKeyEvent::DOM_VK_DOWN:
|
|
|
|
geckoKey = nsIDOMKeyEvent::DOM_VK_RIGHT;
|
|
|
|
cocoaKey = kVK_RightArrow;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ExecuteNativeKeyBindingRemapped(aType, aEvent, aCallback,
|
|
|
|
aCallbackData,
|
|
|
|
geckoKey, cocoaKey);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-14 17:13:32 +04:00
|
|
|
NativeKeyBindings* keyBindings = NativeKeyBindings::GetInstance(aType);
|
2014-03-14 17:13:32 +04:00
|
|
|
return keyBindings->Execute(aEvent, aCallback, aCallbackData);
|
2014-03-14 17:13:31 +04:00
|
|
|
}
|
|
|
|
|
2013-07-11 11:46:35 +04:00
|
|
|
nsIMEUpdatePreference
|
|
|
|
nsChildView::GetIMEUpdatePreference()
|
|
|
|
{
|
2015-10-10 04:21:02 +03:00
|
|
|
// While a plugin has focus, IMEInputHandler doesn't need any notifications.
|
|
|
|
if (mInputContext.mIMEState.mEnabled == IMEState::PLUGIN) {
|
|
|
|
return nsIMEUpdatePreference();
|
|
|
|
}
|
2014-01-29 13:32:35 +04:00
|
|
|
return nsIMEUpdatePreference(nsIMEUpdatePreference::NOTIFY_SELECTION_CHANGE);
|
2013-07-11 11:46:35 +04:00
|
|
|
}
|
|
|
|
|
2009-10-01 06:52:50 +04:00
|
|
|
NSView<mozView>* nsChildView::GetEditorView()
|
|
|
|
{
|
|
|
|
NSView<mozView>* editorView = mView;
|
|
|
|
// We need to get editor's view. E.g., when the focus is in the bookmark
|
|
|
|
// dialog, the view is <panel> element of the dialog. At this time, the key
|
|
|
|
// events are processed the parent window's view that has native focus.
|
2015-09-10 04:40:05 +03:00
|
|
|
WidgetQueryContentEvent textContent(true, eQueryTextContent, this);
|
2009-10-01 06:52:50 +04:00
|
|
|
textContent.InitForQueryTextContent(0, 0);
|
|
|
|
DispatchWindowEvent(textContent);
|
|
|
|
if (textContent.mSucceeded && textContent.mReply.mFocusedWidget) {
|
|
|
|
NSView<mozView>* view = static_cast<NSView<mozView>*>(
|
|
|
|
textContent.mReply.mFocusedWidget->GetNativeData(NS_NATIVE_WIDGET));
|
|
|
|
if (view)
|
|
|
|
editorView = view;
|
|
|
|
}
|
|
|
|
return editorView;
|
|
|
|
}
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
#pragma mark -
|
|
|
|
|
2012-01-19 18:45:37 +04:00
|
|
|
void
|
|
|
|
nsChildView::CreateCompositor()
|
|
|
|
{
|
|
|
|
nsBaseWidget::CreateCompositor();
|
2016-03-22 21:08:38 +03:00
|
|
|
if (mCompositorBridgeChild) {
|
2012-01-19 18:45:37 +04:00
|
|
|
[(ChildView *)mView setUsingOMTCompositor:true];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-15 12:47:15 +03:00
|
|
|
void
|
|
|
|
nsChildView::ConfigureAPZCTreeManager()
|
|
|
|
{
|
|
|
|
nsBaseWidget::ConfigureAPZCTreeManager();
|
2014-06-04 16:44:27 +04:00
|
|
|
|
2015-03-29 07:58:52 +03:00
|
|
|
if (gfxPrefs::AsyncPanZoomSeparateEventThread()) {
|
|
|
|
if (gNumberOfWidgetsNeedingEventThread == 0) {
|
|
|
|
[EventThreadRunner start];
|
|
|
|
}
|
|
|
|
gNumberOfWidgetsNeedingEventThread++;
|
2014-06-04 16:44:27 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-07 23:53:41 +03:00
|
|
|
void
|
|
|
|
nsChildView::ConfigureAPZControllerThread()
|
|
|
|
{
|
2015-04-13 22:42:58 +03:00
|
|
|
if (gfxPrefs::AsyncPanZoomSeparateEventThread()) {
|
|
|
|
// The EventThreadRunner is the controller thread, but it doesn't
|
|
|
|
// have a MessageLoop.
|
|
|
|
APZThreadUtils::SetControllerThread(nullptr);
|
2015-04-14 00:03:38 +03:00
|
|
|
} else {
|
|
|
|
nsBaseWidget::ConfigureAPZControllerThread();
|
2015-04-13 22:42:58 +03:00
|
|
|
}
|
2015-04-07 23:53:41 +03:00
|
|
|
}
|
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
LayoutDeviceIntRect
|
2013-05-23 18:49:17 +04:00
|
|
|
nsChildView::RectContainingTitlebarControls()
|
|
|
|
{
|
2014-01-03 19:53:33 +04:00
|
|
|
// Start with a thin strip at the top of the window for the highlight line.
|
2013-05-23 18:49:17 +04:00
|
|
|
NSRect rect = NSMakeRect(0, 0, [mView bounds].size.width,
|
2014-01-03 19:53:33 +04:00
|
|
|
[(ChildView*)mView cornerRadius]);
|
2013-05-23 18:49:17 +04:00
|
|
|
|
|
|
|
// Add the rects of the titlebar controls.
|
|
|
|
for (id view in [(BaseWindow*)[mView window] titlebarControls]) {
|
|
|
|
rect = NSUnionRect(rect, [mView convertRect:[view bounds] fromView:view]);
|
|
|
|
}
|
|
|
|
return CocoaPointsToDevPixels(rect);
|
|
|
|
}
|
|
|
|
|
2013-04-22 06:40:51 +04:00
|
|
|
void
|
|
|
|
nsChildView::PrepareWindowEffects()
|
|
|
|
{
|
|
|
|
MutexAutoLock lock(mEffectsLock);
|
|
|
|
mShowsResizeIndicator = ShowsResizeIndicator(&mResizeIndicatorRect);
|
2013-05-23 18:49:17 +04:00
|
|
|
mHasRoundedBottomCorners = [(ChildView*)mView hasRoundedBottomCorners];
|
|
|
|
CGFloat cornerRadius = [(ChildView*)mView cornerRadius];
|
2013-04-22 06:40:51 +04:00
|
|
|
mDevPixelCornerRadius = cornerRadius * BackingScaleFactor();
|
2013-05-23 18:49:17 +04:00
|
|
|
mIsCoveringTitlebar = [(ChildView*)mView isCoveringTitlebar];
|
2015-06-04 04:49:34 +03:00
|
|
|
NSInteger styleMask = [[mView window] styleMask];
|
|
|
|
mIsFullscreen = (styleMask & NSFullScreenWindowMask) || !(styleMask & NSTitledWindowMask);
|
2013-05-23 18:49:17 +04:00
|
|
|
if (mIsCoveringTitlebar) {
|
|
|
|
mTitlebarRect = RectContainingTitlebarControls();
|
2013-11-27 09:49:45 +04:00
|
|
|
UpdateTitlebarCGContext();
|
2013-05-23 18:49:17 +04:00
|
|
|
}
|
2013-04-22 06:40:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsChildView::CleanupWindowEffects()
|
|
|
|
{
|
|
|
|
mResizerImage = nullptr;
|
|
|
|
mCornerMaskImage = nullptr;
|
2013-05-23 18:49:17 +04:00
|
|
|
mTitlebarImage = nullptr;
|
2013-04-22 06:40:51 +04:00
|
|
|
}
|
|
|
|
|
2013-10-09 18:39:22 +04:00
|
|
|
bool
|
2013-12-09 05:40:59 +04:00
|
|
|
nsChildView::PreRender(LayerManagerComposite* aManager)
|
2013-10-09 18:39:23 +04:00
|
|
|
{
|
|
|
|
nsAutoPtr<GLManager> manager(GLManager::CreateGLManager(aManager));
|
|
|
|
if (!manager) {
|
2013-10-09 18:39:22 +04:00
|
|
|
return true;
|
2013-10-09 18:39:23 +04:00
|
|
|
}
|
2013-10-09 18:39:23 +04:00
|
|
|
|
|
|
|
// The lock makes sure that we don't attempt to tear down the view while
|
|
|
|
// compositing. That would make us unable to call postRender on it when the
|
|
|
|
// composition is done, thus keeping the GL context locked forever.
|
|
|
|
mViewTearDownLock.Lock();
|
|
|
|
|
2014-01-08 00:02:18 +04:00
|
|
|
NSOpenGLContext *glContext = GLContextCGL::Cast(manager->gl())->GetNSOpenGLContext();
|
2013-10-09 18:39:23 +04:00
|
|
|
|
|
|
|
if (![(ChildView*)mView preRender:glContext]) {
|
|
|
|
mViewTearDownLock.Unlock();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2013-10-09 18:39:23 +04:00
|
|
|
}
|
|
|
|
|
2013-10-09 18:39:23 +04:00
|
|
|
void
|
2013-12-09 05:40:59 +04:00
|
|
|
nsChildView::PostRender(LayerManagerComposite* aManager)
|
2013-10-09 18:39:23 +04:00
|
|
|
{
|
|
|
|
nsAutoPtr<GLManager> manager(GLManager::CreateGLManager(aManager));
|
|
|
|
if (!manager) {
|
|
|
|
return;
|
|
|
|
}
|
2014-01-08 00:02:18 +04:00
|
|
|
NSOpenGLContext *glContext = GLContextCGL::Cast(manager->gl())->GetNSOpenGLContext();
|
2013-10-09 18:39:23 +04:00
|
|
|
[(ChildView*)mView postRender:glContext];
|
2013-10-09 18:39:23 +04:00
|
|
|
mViewTearDownLock.Unlock();
|
2013-10-09 18:39:23 +04:00
|
|
|
}
|
|
|
|
|
2013-03-27 19:49:02 +04:00
|
|
|
void
|
2015-11-19 06:10:38 +03:00
|
|
|
nsChildView::DrawWindowOverlay(LayerManagerComposite* aManager,
|
|
|
|
LayoutDeviceIntRect aRect)
|
2013-03-27 19:49:02 +04:00
|
|
|
{
|
2013-05-01 04:42:05 +04:00
|
|
|
nsAutoPtr<GLManager> manager(GLManager::CreateGLManager(aManager));
|
2013-07-09 08:21:05 +04:00
|
|
|
if (manager) {
|
|
|
|
DrawWindowOverlay(manager, aRect);
|
2013-03-27 19:49:02 +04:00
|
|
|
}
|
2013-07-09 08:21:05 +04:00
|
|
|
}
|
2013-03-27 19:49:02 +04:00
|
|
|
|
2013-07-09 08:21:05 +04:00
|
|
|
void
|
2015-11-19 06:10:38 +03:00
|
|
|
nsChildView::DrawWindowOverlay(GLManager* aManager, LayoutDeviceIntRect aRect)
|
2013-07-09 08:21:05 +04:00
|
|
|
{
|
2014-01-08 00:02:18 +04:00
|
|
|
GLContext* gl = aManager->gl();
|
2014-01-09 20:59:24 +04:00
|
|
|
ScopedGLState scopedScissorTestState(gl, LOCAL_GL_SCISSOR_TEST, false);
|
2014-01-08 00:02:18 +04:00
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
MaybeDrawTitlebar(aManager);
|
|
|
|
MaybeDrawResizeIndicator(aManager);
|
2013-07-09 08:21:05 +04:00
|
|
|
MaybeDrawRoundedCorners(aManager, aRect);
|
2013-05-23 18:49:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-11-19 06:10:38 +03:00
|
|
|
ClearRegion(gfx::DrawTarget *aDT, LayoutDeviceIntRegion aRegion)
|
2013-05-23 18:49:17 +04:00
|
|
|
{
|
2015-11-19 06:10:38 +03:00
|
|
|
gfxUtils::ClipToRegion(aDT, aRegion.ToUnknownRegion());
|
2013-07-09 08:21:05 +04:00
|
|
|
aDT->ClearRect(gfx::Rect(0, 0, aDT->GetSize().width, aDT->GetSize().height));
|
|
|
|
aDT->PopClip();
|
2013-03-27 19:49:02 +04:00
|
|
|
}
|
|
|
|
|
2011-02-20 01:23:02 +03:00
|
|
|
static void
|
|
|
|
DrawResizer(CGContextRef aCtx)
|
2011-01-07 23:32:42 +03:00
|
|
|
{
|
2011-02-20 01:23:02 +03:00
|
|
|
CGContextSetShouldAntialias(aCtx, false);
|
2011-02-20 01:22:12 +03:00
|
|
|
CGPoint points[6];
|
|
|
|
points[0] = CGPointMake(13.0f, 4.0f);
|
|
|
|
points[1] = CGPointMake(3.0f, 14.0f);
|
|
|
|
points[2] = CGPointMake(13.0f, 8.0f);
|
|
|
|
points[3] = CGPointMake(7.0f, 14.0f);
|
|
|
|
points[4] = CGPointMake(13.0f, 12.0f);
|
|
|
|
points[5] = CGPointMake(11.0f, 14.0f);
|
2011-02-20 01:23:02 +03:00
|
|
|
CGContextSetRGBStrokeColor(aCtx, 0.00f, 0.00f, 0.00f, 0.15f);
|
|
|
|
CGContextStrokeLineSegments(aCtx, points, 6);
|
2011-02-20 01:22:12 +03:00
|
|
|
|
|
|
|
points[0] = CGPointMake(13.0f, 5.0f);
|
|
|
|
points[1] = CGPointMake(4.0f, 14.0f);
|
|
|
|
points[2] = CGPointMake(13.0f, 9.0f);
|
|
|
|
points[3] = CGPointMake(8.0f, 14.0f);
|
|
|
|
points[4] = CGPointMake(13.0f, 13.0f);
|
|
|
|
points[5] = CGPointMake(12.0f, 14.0f);
|
2011-02-20 01:23:02 +03:00
|
|
|
CGContextSetRGBStrokeColor(aCtx, 0.13f, 0.13f, 0.13f, 0.54f);
|
|
|
|
CGContextStrokeLineSegments(aCtx, points, 6);
|
2011-02-20 01:22:12 +03:00
|
|
|
|
|
|
|
points[0] = CGPointMake(13.0f, 6.0f);
|
|
|
|
points[1] = CGPointMake(5.0f, 14.0f);
|
|
|
|
points[2] = CGPointMake(13.0f, 10.0f);
|
|
|
|
points[3] = CGPointMake(9.0f, 14.0f);
|
|
|
|
points[5] = CGPointMake(13.0f, 13.9f);
|
|
|
|
points[4] = CGPointMake(13.0f, 14.0f);
|
2011-02-20 01:23:02 +03:00
|
|
|
CGContextSetRGBStrokeColor(aCtx, 0.84f, 0.84f, 0.84f, 0.55f);
|
|
|
|
CGContextStrokeLineSegments(aCtx, points, 6);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-11-19 06:10:38 +03:00
|
|
|
nsChildView::MaybeDrawResizeIndicator(GLManager* aManager)
|
2011-02-20 01:23:02 +03:00
|
|
|
{
|
2013-05-23 18:49:17 +04:00
|
|
|
MutexAutoLock lock(mEffectsLock);
|
2013-07-09 08:21:05 +04:00
|
|
|
if (!mShowsResizeIndicator) {
|
2011-02-20 01:23:02 +03:00
|
|
|
return;
|
|
|
|
}
|
2011-02-20 01:22:12 +03:00
|
|
|
|
2011-02-20 01:23:02 +03:00
|
|
|
if (!mResizerImage) {
|
2016-04-19 13:28:12 +03:00
|
|
|
mResizerImage = MakeUnique<RectTextureImage>(aManager->gl());
|
2011-02-20 01:23:02 +03:00
|
|
|
}
|
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
LayoutDeviceIntSize size = mResizeIndicatorRect.Size();
|
|
|
|
mResizerImage->UpdateIfNeeded(size, LayoutDeviceIntRegion(), ^(gfx::DrawTarget* drawTarget, const LayoutDeviceIntRegion& updateRegion) {
|
2013-07-09 08:21:05 +04:00
|
|
|
ClearRegion(drawTarget, updateRegion);
|
2013-07-13 01:19:29 +04:00
|
|
|
gfx::BorrowedCGContext borrow(drawTarget);
|
|
|
|
DrawResizer(borrow.cg);
|
|
|
|
borrow.Finish();
|
2013-07-09 08:21:05 +04:00
|
|
|
});
|
2011-02-20 01:23:02 +03:00
|
|
|
|
2013-07-09 08:21:05 +04:00
|
|
|
mResizerImage->Draw(aManager, mResizeIndicatorRect.TopLeft());
|
2013-03-27 19:49:02 +04:00
|
|
|
}
|
|
|
|
|
2013-05-23 18:49:17 +04:00
|
|
|
// Draw the highlight line at the top of the titlebar.
|
|
|
|
// This function draws into the current NSGraphicsContext and assumes flippedness.
|
|
|
|
static void
|
|
|
|
DrawTitlebarHighlight(NSSize aWindowSize, CGFloat aRadius, CGFloat aDevicePixelWidth)
|
|
|
|
{
|
|
|
|
[NSGraphicsContext saveGraphicsState];
|
|
|
|
|
|
|
|
// Set up the clip path. We start with the outer rectangle and cut out a
|
|
|
|
// slightly smaller inner rectangle with rounded corners.
|
|
|
|
// The outer corners of the resulting path will be square, but they will be
|
|
|
|
// masked away in a later step.
|
|
|
|
NSBezierPath* path = [NSBezierPath bezierPath];
|
|
|
|
[path setWindingRule:NSEvenOddWindingRule];
|
2014-01-03 19:53:33 +04:00
|
|
|
NSRect pathRect = NSMakeRect(0, 0, aWindowSize.width, aRadius + 2);
|
2013-05-23 18:49:17 +04:00
|
|
|
[path appendBezierPathWithRect:pathRect];
|
|
|
|
pathRect = NSInsetRect(pathRect, aDevicePixelWidth, aDevicePixelWidth);
|
|
|
|
CGFloat innerRadius = aRadius - aDevicePixelWidth;
|
|
|
|
[path appendBezierPathWithRoundedRect:pathRect xRadius:innerRadius yRadius:innerRadius];
|
|
|
|
[path addClip];
|
|
|
|
|
|
|
|
// Now we fill the path with a subtle highlight gradient.
|
2014-01-03 19:53:33 +04:00
|
|
|
// We don't use NSGradient because it's 5x to 15x slower than the manual fill,
|
|
|
|
// as indicated by the performance test in bug 880620.
|
|
|
|
for (CGFloat y = 0; y < aRadius; y += aDevicePixelWidth) {
|
|
|
|
CGFloat t = y / aRadius;
|
|
|
|
[[NSColor colorWithDeviceWhite:1.0 alpha:0.4 * (1.0 - t)] set];
|
2014-07-01 20:32:28 +04:00
|
|
|
NSRectFillUsingOperation(NSMakeRect(0, y, aWindowSize.width, aDevicePixelWidth), NSCompositeSourceOver);
|
2014-01-03 19:53:33 +04:00
|
|
|
}
|
2013-05-23 18:49:17 +04:00
|
|
|
|
|
|
|
[NSGraphicsContext restoreGraphicsState];
|
|
|
|
}
|
|
|
|
|
2013-11-27 09:49:45 +04:00
|
|
|
static CGContextRef
|
2015-11-19 06:10:38 +03:00
|
|
|
CreateCGContext(const LayoutDeviceIntSize& aSize)
|
2013-11-27 09:49:45 +04:00
|
|
|
{
|
|
|
|
CGColorSpaceRef cs = CGColorSpaceCreateDeviceRGB();
|
|
|
|
CGContextRef ctx =
|
|
|
|
CGBitmapContextCreate(NULL,
|
|
|
|
aSize.width,
|
|
|
|
aSize.height,
|
|
|
|
8 /* bitsPerComponent */,
|
|
|
|
aSize.width * 4,
|
|
|
|
cs,
|
|
|
|
kCGBitmapByteOrder32Host | kCGImageAlphaPremultipliedFirst);
|
|
|
|
CGColorSpaceRelease(cs);
|
|
|
|
|
|
|
|
CGContextTranslateCTM(ctx, 0, aSize.height);
|
|
|
|
CGContextScaleCTM(ctx, 1, -1);
|
|
|
|
CGContextSetInterpolationQuality(ctx, kCGInterpolationLow);
|
|
|
|
|
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
|
2013-05-23 18:49:17 +04:00
|
|
|
// When this method is entered, mEffectsLock is already being held.
|
|
|
|
void
|
2013-11-27 09:49:45 +04:00
|
|
|
nsChildView::UpdateTitlebarCGContext()
|
2013-05-23 18:49:17 +04:00
|
|
|
{
|
2014-08-28 04:16:25 +04:00
|
|
|
if (mTitlebarRect.IsEmpty()) {
|
|
|
|
ReleaseTitlebarCGContext();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-11-07 21:11:48 +03:00
|
|
|
NSRect titlebarRect = DevPixelsToCocoaPoints(mTitlebarRect);
|
|
|
|
NSRect dirtyRect = [mView convertRect:[(BaseWindow*)[mView window] getAndResetNativeDirtyRect] fromView:nil];
|
|
|
|
NSRect dirtyTitlebarRect = NSIntersectionRect(titlebarRect, dirtyRect);
|
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
LayoutDeviceIntSize texSize =
|
|
|
|
RectTextureImage::TextureSizeForSize(mTitlebarRect.Size());
|
2013-11-27 09:49:45 +04:00
|
|
|
if (!mTitlebarCGContext ||
|
|
|
|
CGBitmapContextGetWidth(mTitlebarCGContext) != size_t(texSize.width) ||
|
|
|
|
CGBitmapContextGetHeight(mTitlebarCGContext) != size_t(texSize.height)) {
|
2014-11-07 21:11:48 +03:00
|
|
|
dirtyTitlebarRect = titlebarRect;
|
2013-05-23 18:49:17 +04:00
|
|
|
|
2013-11-27 09:49:45 +04:00
|
|
|
ReleaseTitlebarCGContext();
|
|
|
|
|
|
|
|
mTitlebarCGContext = CreateCGContext(texSize);
|
2013-05-23 18:49:17 +04:00
|
|
|
}
|
|
|
|
|
2014-11-07 21:11:48 +03:00
|
|
|
if (NSIsEmptyRect(dirtyTitlebarRect)) {
|
2013-05-23 18:49:17 +04:00
|
|
|
return;
|
2014-11-07 21:11:48 +03:00
|
|
|
}
|
2013-05-23 18:49:17 +04:00
|
|
|
|
2013-11-27 09:49:45 +04:00
|
|
|
CGContextRef ctx = mTitlebarCGContext;
|
2013-05-23 18:49:17 +04:00
|
|
|
|
2013-11-27 09:49:45 +04:00
|
|
|
CGContextSaveGState(ctx);
|
|
|
|
|
2013-05-23 18:49:17 +04:00
|
|
|
double scale = BackingScaleFactor();
|
|
|
|
CGContextScaleCTM(ctx, scale, scale);
|
2014-11-07 21:11:48 +03:00
|
|
|
|
|
|
|
CGContextClipToRect(ctx, NSRectToCGRect(dirtyTitlebarRect));
|
|
|
|
CGContextClearRect(ctx, NSRectToCGRect(dirtyTitlebarRect));
|
|
|
|
|
2013-05-23 18:49:17 +04:00
|
|
|
NSGraphicsContext* oldContext = [NSGraphicsContext currentContext];
|
|
|
|
|
|
|
|
CGContextSaveGState(ctx);
|
|
|
|
|
|
|
|
BaseWindow* window = (BaseWindow*)[mView window];
|
|
|
|
NSView* frameView = [[window contentView] superview];
|
|
|
|
if (![frameView isFlipped]) {
|
|
|
|
CGContextTranslateCTM(ctx, 0, [frameView bounds].size.height);
|
|
|
|
CGContextScaleCTM(ctx, 1, -1);
|
|
|
|
}
|
2013-06-29 04:59:07 +04:00
|
|
|
NSGraphicsContext* context = [NSGraphicsContext graphicsContextWithGraphicsPort:ctx flipped:[frameView isFlipped]];
|
|
|
|
[NSGraphicsContext setCurrentContext:context];
|
2013-05-23 18:49:17 +04:00
|
|
|
|
2013-12-17 20:11:13 +04:00
|
|
|
// Draw the title string.
|
2013-12-17 20:19:25 +04:00
|
|
|
if ([window wantsTitleDrawn] && [frameView respondsToSelector:@selector(_drawTitleBar:)]) {
|
2013-12-17 20:11:13 +04:00
|
|
|
[frameView _drawTitleBar:[frameView bounds]];
|
|
|
|
}
|
|
|
|
|
2013-05-23 18:49:17 +04:00
|
|
|
// Draw the titlebar controls into the titlebar image.
|
|
|
|
for (id view in [window titlebarControls]) {
|
|
|
|
NSRect viewFrame = [view frame];
|
2014-11-07 21:11:48 +03:00
|
|
|
NSRect viewRect = [mView convertRect:viewFrame fromView:frameView];
|
|
|
|
if (!NSIntersectsRect(dirtyTitlebarRect, viewRect)) {
|
2013-05-23 18:49:17 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// All of the titlebar controls we're interested in are subclasses of
|
|
|
|
// NSButton.
|
|
|
|
if (![view isKindOfClass:[NSButton class]]) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
NSButton *button = (NSButton *) view;
|
|
|
|
id cellObject = [button cell];
|
|
|
|
if (![cellObject isKindOfClass:[NSCell class]]) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
NSCell *cell = (NSCell *) cellObject;
|
|
|
|
|
|
|
|
CGContextSaveGState(ctx);
|
|
|
|
CGContextTranslateCTM(ctx, viewFrame.origin.x, viewFrame.origin.y);
|
|
|
|
|
2013-06-29 04:59:07 +04:00
|
|
|
if ([context isFlipped] != [view isFlipped]) {
|
2013-05-23 18:49:17 +04:00
|
|
|
CGContextTranslateCTM(ctx, 0, viewFrame.size.height);
|
|
|
|
CGContextScaleCTM(ctx, 1, -1);
|
|
|
|
}
|
|
|
|
|
2013-06-29 04:59:07 +04:00
|
|
|
[NSGraphicsContext setCurrentContext:[NSGraphicsContext graphicsContextWithGraphicsPort:ctx flipped:[view isFlipped]]];
|
|
|
|
|
2014-11-04 06:14:10 +03:00
|
|
|
if ([window useBrightTitlebarForeground] && !nsCocoaFeatures::OnYosemiteOrLater() &&
|
|
|
|
view == [window standardWindowButton:NSWindowFullScreenButton]) {
|
|
|
|
// Make the fullscreen button visible on dark titlebar backgrounds by
|
|
|
|
// drawing it into a new transparency layer and turning it white.
|
|
|
|
CGRect r = NSRectToCGRect([view bounds]);
|
|
|
|
CGContextBeginTransparencyLayerWithRect(ctx, r, nullptr);
|
|
|
|
|
|
|
|
// Draw twice for double opacity.
|
|
|
|
[cell drawWithFrame:[button bounds] inView:button];
|
|
|
|
[cell drawWithFrame:[button bounds] inView:button];
|
|
|
|
|
|
|
|
// Make it white.
|
|
|
|
CGContextSetBlendMode(ctx, kCGBlendModeSourceIn);
|
|
|
|
CGContextSetRGBFillColor(ctx, 1, 1, 1, 1);
|
|
|
|
CGContextFillRect(ctx, r);
|
|
|
|
CGContextSetBlendMode(ctx, kCGBlendModeNormal);
|
|
|
|
|
|
|
|
CGContextEndTransparencyLayer(ctx);
|
|
|
|
} else {
|
|
|
|
[cell drawWithFrame:[button bounds] inView:button];
|
|
|
|
}
|
2013-05-23 18:49:17 +04:00
|
|
|
|
2013-06-29 04:59:07 +04:00
|
|
|
[NSGraphicsContext setCurrentContext:context];
|
2013-05-23 18:49:17 +04:00
|
|
|
CGContextRestoreGState(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
CGContextRestoreGState(ctx);
|
|
|
|
|
|
|
|
DrawTitlebarHighlight([frameView bounds].size, [(ChildView*)mView cornerRadius],
|
|
|
|
DevPixelsToCocoaPoints(1));
|
|
|
|
|
|
|
|
[NSGraphicsContext setCurrentContext:oldContext];
|
|
|
|
|
2013-11-27 09:49:45 +04:00
|
|
|
CGContextRestoreGState(ctx);
|
2013-11-20 20:21:24 +04:00
|
|
|
|
2014-11-07 21:11:48 +03:00
|
|
|
mUpdatedTitlebarRegion.OrWith(CocoaPointsToDevPixels(dirtyTitlebarRect));
|
2013-05-23 18:49:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// This method draws an overlay in the top of the window which contains the
|
|
|
|
// titlebar controls (e.g. close, min, zoom, fullscreen) and the titlebar
|
|
|
|
// highlight effect.
|
|
|
|
// This is necessary because the real titlebar controls are covered by our
|
|
|
|
// OpenGL context. Note that in terms of the NSView hierarchy, our ChildView
|
|
|
|
// is actually below the titlebar controls - that's why hovering and clicking
|
|
|
|
// them works as expected - but their visual representation is only drawn into
|
|
|
|
// the normal window buffer, and the window buffer surface lies below the
|
|
|
|
// GLContext surface. In order to make the titlebar controls visible, we have
|
|
|
|
// to redraw them inside the OpenGL context surface.
|
|
|
|
void
|
2015-11-19 06:10:38 +03:00
|
|
|
nsChildView::MaybeDrawTitlebar(GLManager* aManager)
|
2013-05-23 18:49:17 +04:00
|
|
|
{
|
|
|
|
MutexAutoLock lock(mEffectsLock);
|
2014-01-17 14:06:15 +04:00
|
|
|
if (!mIsCoveringTitlebar || mIsFullscreen) {
|
2013-05-23 18:49:17 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
LayoutDeviceIntRegion updatedTitlebarRegion;
|
2013-07-09 08:21:05 +04:00
|
|
|
updatedTitlebarRegion.And(mUpdatedTitlebarRegion, mTitlebarRect);
|
|
|
|
mUpdatedTitlebarRegion.SetEmpty();
|
2013-05-23 18:49:17 +04:00
|
|
|
|
|
|
|
if (!mTitlebarImage) {
|
2016-04-19 13:28:12 +03:00
|
|
|
mTitlebarImage = MakeUnique<RectTextureImage>(aManager->gl());
|
2013-05-23 18:49:17 +04:00
|
|
|
}
|
|
|
|
|
2013-11-27 09:49:45 +04:00
|
|
|
mTitlebarImage->UpdateFromCGContext(mTitlebarRect.Size(),
|
|
|
|
updatedTitlebarRegion,
|
|
|
|
mTitlebarCGContext);
|
2013-05-23 18:49:17 +04:00
|
|
|
|
2013-07-09 08:21:05 +04:00
|
|
|
mTitlebarImage->Draw(aManager, mTitlebarRect.TopLeft());
|
2013-05-23 18:49:17 +04:00
|
|
|
}
|
|
|
|
|
2013-03-27 19:49:02 +04:00
|
|
|
static void
|
|
|
|
DrawTopLeftCornerMask(CGContextRef aCtx, int aRadius)
|
|
|
|
{
|
|
|
|
CGContextSetRGBFillColor(aCtx, 1.0, 1.0, 1.0, 1.0);
|
|
|
|
CGContextFillEllipseInRect(aCtx, CGRectMake(0, 0, aRadius * 2, aRadius * 2));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-11-19 06:10:38 +03:00
|
|
|
nsChildView::MaybeDrawRoundedCorners(GLManager* aManager,
|
|
|
|
const LayoutDeviceIntRect& aRect)
|
2013-03-27 19:49:02 +04:00
|
|
|
{
|
2013-04-22 06:40:51 +04:00
|
|
|
MutexAutoLock lock(mEffectsLock);
|
2013-07-03 18:14:11 +04:00
|
|
|
|
2013-07-09 08:21:05 +04:00
|
|
|
if (!mCornerMaskImage) {
|
2016-04-19 13:28:12 +03:00
|
|
|
mCornerMaskImage = MakeUnique<RectTextureImage>(aManager->gl());
|
2013-07-03 18:14:11 +04:00
|
|
|
}
|
2013-07-09 08:21:05 +04:00
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
LayoutDeviceIntSize size(mDevPixelCornerRadius, mDevPixelCornerRadius);
|
|
|
|
mCornerMaskImage->UpdateIfNeeded(size, LayoutDeviceIntRegion(), ^(gfx::DrawTarget* drawTarget, const LayoutDeviceIntRegion& updateRegion) {
|
2013-07-09 08:21:05 +04:00
|
|
|
ClearRegion(drawTarget, updateRegion);
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<gfx::PathBuilder> builder = drawTarget->CreatePathBuilder();
|
2013-11-27 09:50:33 +04:00
|
|
|
builder->Arc(gfx::Point(mDevPixelCornerRadius, mDevPixelCornerRadius), mDevPixelCornerRadius, 0, 2.0f * M_PI);
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<gfx::Path> path = builder->Finish();
|
2013-11-27 09:50:33 +04:00
|
|
|
drawTarget->Fill(path,
|
|
|
|
gfx::ColorPattern(gfx::Color(1.0, 1.0, 1.0, 1.0)),
|
2014-01-10 23:06:17 +04:00
|
|
|
gfx::DrawOptions(1.0f, gfx::CompositionOp::OP_SOURCE));
|
2013-07-09 08:21:05 +04:00
|
|
|
});
|
2013-05-23 18:49:17 +04:00
|
|
|
|
2013-03-27 19:49:02 +04:00
|
|
|
// Use operator destination in: multiply all 4 channels with source alpha.
|
|
|
|
aManager->gl()->fBlendFuncSeparate(LOCAL_GL_ZERO, LOCAL_GL_SRC_ALPHA,
|
|
|
|
LOCAL_GL_ZERO, LOCAL_GL_SRC_ALPHA);
|
2013-07-09 08:21:05 +04:00
|
|
|
|
2014-10-08 07:43:00 +04:00
|
|
|
Matrix4x4 flipX = Matrix4x4::Scaling(-1, 1, 1);
|
|
|
|
Matrix4x4 flipY = Matrix4x4::Scaling(1, -1, 1);
|
2013-07-09 08:21:05 +04:00
|
|
|
|
2014-01-17 14:06:15 +04:00
|
|
|
if (mIsCoveringTitlebar && !mIsFullscreen) {
|
2013-05-23 18:49:17 +04:00
|
|
|
// Mask the top corners.
|
2013-07-09 08:21:05 +04:00
|
|
|
mCornerMaskImage->Draw(aManager, aRect.TopLeft());
|
|
|
|
mCornerMaskImage->Draw(aManager, aRect.TopRight(), flipX);
|
2013-05-23 18:49:17 +04:00
|
|
|
}
|
|
|
|
|
2014-01-17 14:06:15 +04:00
|
|
|
if (mHasRoundedBottomCorners && !mIsFullscreen) {
|
2013-05-23 18:49:17 +04:00
|
|
|
// Mask the bottom corners.
|
2013-07-09 08:21:05 +04:00
|
|
|
mCornerMaskImage->Draw(aManager, aRect.BottomLeft(), flipY);
|
|
|
|
mCornerMaskImage->Draw(aManager, aRect.BottomRight(), flipY * flipX);
|
2013-05-23 18:49:17 +04:00
|
|
|
}
|
|
|
|
|
2013-03-27 19:49:02 +04:00
|
|
|
// Reset blend mode.
|
|
|
|
aManager->gl()->fBlendFuncSeparate(LOCAL_GL_ONE, LOCAL_GL_ONE_MINUS_SRC_ALPHA,
|
|
|
|
LOCAL_GL_ONE, LOCAL_GL_ONE);
|
2011-01-07 23:32:42 +03:00
|
|
|
}
|
|
|
|
|
2013-05-22 13:50:57 +04:00
|
|
|
static int32_t
|
|
|
|
FindTitlebarBottom(const nsTArray<nsIWidget::ThemeGeometry>& aThemeGeometries,
|
|
|
|
int32_t aWindowWidth)
|
2011-01-11 16:03:16 +03:00
|
|
|
{
|
2013-05-22 13:50:57 +04:00
|
|
|
int32_t titlebarBottom = 0;
|
|
|
|
for (uint32_t i = 0; i < aThemeGeometries.Length(); ++i) {
|
|
|
|
const nsIWidget::ThemeGeometry& g = aThemeGeometries[i];
|
2015-02-05 01:25:18 +03:00
|
|
|
if ((g.mType == nsNativeThemeCocoa::eThemeGeometryTypeTitlebar) &&
|
2013-05-22 13:50:57 +04:00
|
|
|
g.mRect.X() <= 0 &&
|
|
|
|
g.mRect.XMost() >= aWindowWidth &&
|
|
|
|
g.mRect.Y() <= 0) {
|
|
|
|
titlebarBottom = std::max(titlebarBottom, g.mRect.YMost());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return titlebarBottom;
|
|
|
|
}
|
2011-01-11 16:03:16 +03:00
|
|
|
|
2013-05-22 13:50:57 +04:00
|
|
|
static int32_t
|
|
|
|
FindUnifiedToolbarBottom(const nsTArray<nsIWidget::ThemeGeometry>& aThemeGeometries,
|
|
|
|
int32_t aWindowWidth, int32_t aTitlebarBottom)
|
|
|
|
{
|
|
|
|
int32_t unifiedToolbarBottom = aTitlebarBottom;
|
2012-08-22 19:56:38 +04:00
|
|
|
for (uint32_t i = 0; i < aThemeGeometries.Length(); ++i) {
|
2013-05-22 13:50:57 +04:00
|
|
|
const nsIWidget::ThemeGeometry& g = aThemeGeometries[i];
|
2015-02-05 01:25:18 +03:00
|
|
|
if ((g.mType == nsNativeThemeCocoa::eThemeGeometryTypeToolbar) &&
|
2013-05-22 13:48:47 +04:00
|
|
|
g.mRect.X() <= 0 &&
|
2013-05-22 13:50:57 +04:00
|
|
|
g.mRect.XMost() >= aWindowWidth &&
|
|
|
|
g.mRect.Y() <= aTitlebarBottom) {
|
|
|
|
unifiedToolbarBottom = std::max(unifiedToolbarBottom, g.mRect.YMost());
|
2011-01-11 16:03:16 +03:00
|
|
|
}
|
|
|
|
}
|
2013-05-22 13:50:57 +04:00
|
|
|
return unifiedToolbarBottom;
|
|
|
|
}
|
2014-04-23 03:23:18 +04:00
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
static LayoutDeviceIntRect
|
2013-06-13 01:42:00 +04:00
|
|
|
FindFirstRectOfType(const nsTArray<nsIWidget::ThemeGeometry>& aThemeGeometries,
|
2015-02-05 01:25:18 +03:00
|
|
|
nsITheme::ThemeGeometryType aThemeGeometryType)
|
2013-06-13 01:42:00 +04:00
|
|
|
{
|
|
|
|
for (uint32_t i = 0; i < aThemeGeometries.Length(); ++i) {
|
|
|
|
const nsIWidget::ThemeGeometry& g = aThemeGeometries[i];
|
2015-02-05 01:25:18 +03:00
|
|
|
if (g.mType == aThemeGeometryType) {
|
2015-11-23 07:32:29 +03:00
|
|
|
return g.mRect;
|
2013-06-13 01:42:00 +04:00
|
|
|
}
|
|
|
|
}
|
2015-11-19 06:10:38 +03:00
|
|
|
return LayoutDeviceIntRect();
|
2013-06-13 01:42:00 +04:00
|
|
|
}
|
2013-05-22 13:48:47 +04:00
|
|
|
|
2013-05-22 13:50:57 +04:00
|
|
|
void
|
|
|
|
nsChildView::UpdateThemeGeometries(const nsTArray<ThemeGeometry>& aThemeGeometries)
|
|
|
|
{
|
2014-08-28 04:15:33 +04:00
|
|
|
if (![mView window])
|
|
|
|
return;
|
|
|
|
|
|
|
|
UpdateVibrancy(aThemeGeometries);
|
|
|
|
|
|
|
|
if (![[mView window] isKindOfClass:[ToolbarWindow class]])
|
2013-05-22 13:50:57 +04:00
|
|
|
return;
|
|
|
|
|
2015-03-06 22:43:46 +03:00
|
|
|
// Update unified toolbar height and sheet attachment position.
|
2013-05-22 13:50:57 +04:00
|
|
|
int32_t windowWidth = mBounds.width;
|
|
|
|
int32_t titlebarBottom = FindTitlebarBottom(aThemeGeometries, windowWidth);
|
|
|
|
int32_t unifiedToolbarBottom =
|
|
|
|
FindUnifiedToolbarBottom(aThemeGeometries, windowWidth, titlebarBottom);
|
2015-03-06 22:43:46 +03:00
|
|
|
int32_t toolboxBottom =
|
|
|
|
FindFirstRectOfType(aThemeGeometries, nsNativeThemeCocoa::eThemeGeometryTypeToolbox).YMost();
|
2013-05-22 13:50:57 +04:00
|
|
|
|
|
|
|
ToolbarWindow* win = (ToolbarWindow*)[mView window];
|
|
|
|
bool drawsContentsIntoWindowFrame = [win drawsContentsIntoWindowFrame];
|
|
|
|
int32_t titlebarHeight = CocoaPointsToDevPixels([win titlebarHeight]);
|
|
|
|
int32_t contentOffset = drawsContentsIntoWindowFrame ? titlebarHeight : 0;
|
|
|
|
int32_t devUnifiedHeight = titlebarHeight + unifiedToolbarBottom - contentOffset;
|
|
|
|
[win setUnifiedToolbarHeight:DevPixelsToCocoaPoints(devUnifiedHeight)];
|
2015-03-06 22:43:46 +03:00
|
|
|
int32_t devSheetPosition = titlebarHeight + std::max(toolboxBottom, unifiedToolbarBottom) - contentOffset;
|
|
|
|
[win setSheetAttachmentPosition:DevPixelsToCocoaPoints(devSheetPosition)];
|
2013-06-13 01:42:00 +04:00
|
|
|
|
|
|
|
// Update titlebar control offsets.
|
2015-11-19 06:10:38 +03:00
|
|
|
LayoutDeviceIntRect windowButtonRect = FindFirstRectOfType(aThemeGeometries, nsNativeThemeCocoa::eThemeGeometryTypeWindowButtons);
|
2013-06-13 01:42:00 +04:00
|
|
|
[win placeWindowButtons:[mView convertRect:DevPixelsToCocoaPoints(windowButtonRect) toView:nil]];
|
2015-11-19 06:10:38 +03:00
|
|
|
LayoutDeviceIntRect fullScreenButtonRect = FindFirstRectOfType(aThemeGeometries, nsNativeThemeCocoa::eThemeGeometryTypeFullscreenButton);
|
2013-06-13 01:42:00 +04:00
|
|
|
[win placeFullScreenButton:[mView convertRect:DevPixelsToCocoaPoints(fullScreenButtonRect) toView:nil]];
|
2011-01-11 16:03:16 +03:00
|
|
|
}
|
|
|
|
|
2015-11-23 07:32:29 +03:00
|
|
|
static LayoutDeviceIntRegion
|
2014-08-28 04:15:33 +04:00
|
|
|
GatherThemeGeometryRegion(const nsTArray<nsIWidget::ThemeGeometry>& aThemeGeometries,
|
2015-02-05 01:25:18 +03:00
|
|
|
nsITheme::ThemeGeometryType aThemeGeometryType)
|
2014-08-28 04:15:33 +04:00
|
|
|
{
|
2015-11-23 07:32:29 +03:00
|
|
|
LayoutDeviceIntRegion region;
|
2014-08-28 04:15:33 +04:00
|
|
|
for (size_t i = 0; i < aThemeGeometries.Length(); ++i) {
|
|
|
|
const nsIWidget::ThemeGeometry& g = aThemeGeometries[i];
|
2015-02-05 01:25:18 +03:00
|
|
|
if (g.mType == aThemeGeometryType) {
|
2014-08-28 04:15:33 +04:00
|
|
|
region.OrWith(g.mRect);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return region;
|
|
|
|
}
|
|
|
|
|
2015-02-09 08:17:35 +03:00
|
|
|
template<typename Region>
|
|
|
|
static void MakeRegionsNonOverlappingImpl(Region& aOutUnion) { }
|
2015-02-05 01:25:19 +03:00
|
|
|
|
2015-02-09 08:17:35 +03:00
|
|
|
template<typename Region, typename ... Regions>
|
|
|
|
static void MakeRegionsNonOverlappingImpl(Region& aOutUnion, Region& aFirst, Regions& ... aRest)
|
2015-02-05 01:25:19 +03:00
|
|
|
{
|
|
|
|
MakeRegionsNonOverlappingImpl(aOutUnion, aRest...);
|
|
|
|
aFirst.SubOut(aOutUnion);
|
|
|
|
aOutUnion.OrWith(aFirst);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Subtracts parts from regions in such a way that they don't have any overlap.
|
|
|
|
// Each region in the argument list will have the union of all the regions
|
|
|
|
// *following* it subtracted from itself. In other words, the arguments are
|
|
|
|
// sorted low priority to high priority.
|
2015-02-09 08:17:35 +03:00
|
|
|
template<typename Region, typename ... Regions>
|
|
|
|
static void MakeRegionsNonOverlapping(Region& aFirst, Regions& ... aRest)
|
2015-02-05 01:25:19 +03:00
|
|
|
{
|
2015-02-09 08:17:35 +03:00
|
|
|
Region unionOfAll;
|
2015-02-05 01:25:19 +03:00
|
|
|
MakeRegionsNonOverlappingImpl(unionOfAll, aFirst, aRest...);
|
|
|
|
}
|
|
|
|
|
2014-08-28 04:15:33 +04:00
|
|
|
void
|
|
|
|
nsChildView::UpdateVibrancy(const nsTArray<ThemeGeometry>& aThemeGeometries)
|
|
|
|
{
|
|
|
|
if (!VibrancyManager::SystemSupportsVibrancy()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-23 07:32:29 +03:00
|
|
|
LayoutDeviceIntRegion sheetRegion =
|
2015-05-26 20:55:08 +03:00
|
|
|
GatherThemeGeometryRegion(aThemeGeometries, nsNativeThemeCocoa::eThemeGeometryTypeSheet);
|
2015-11-23 07:32:29 +03:00
|
|
|
LayoutDeviceIntRegion vibrantLightRegion =
|
2015-02-05 01:25:18 +03:00
|
|
|
GatherThemeGeometryRegion(aThemeGeometries, nsNativeThemeCocoa::eThemeGeometryTypeVibrancyLight);
|
2015-11-23 07:32:29 +03:00
|
|
|
LayoutDeviceIntRegion vibrantDarkRegion =
|
2015-02-05 01:25:18 +03:00
|
|
|
GatherThemeGeometryRegion(aThemeGeometries, nsNativeThemeCocoa::eThemeGeometryTypeVibrancyDark);
|
2015-11-23 07:32:29 +03:00
|
|
|
LayoutDeviceIntRegion menuRegion =
|
2015-02-05 01:25:18 +03:00
|
|
|
GatherThemeGeometryRegion(aThemeGeometries, nsNativeThemeCocoa::eThemeGeometryTypeMenu);
|
2015-11-23 07:32:29 +03:00
|
|
|
LayoutDeviceIntRegion tooltipRegion =
|
2015-02-05 01:25:18 +03:00
|
|
|
GatherThemeGeometryRegion(aThemeGeometries, nsNativeThemeCocoa::eThemeGeometryTypeTooltip);
|
2015-11-23 07:32:29 +03:00
|
|
|
LayoutDeviceIntRegion highlightedMenuItemRegion =
|
2015-02-05 01:25:19 +03:00
|
|
|
GatherThemeGeometryRegion(aThemeGeometries, nsNativeThemeCocoa::eThemeGeometryTypeHighlightedMenuItem);
|
2014-08-28 04:15:33 +04:00
|
|
|
|
2015-05-26 20:55:08 +03:00
|
|
|
MakeRegionsNonOverlapping(sheetRegion, vibrantLightRegion, vibrantDarkRegion,
|
|
|
|
menuRegion, tooltipRegion, highlightedMenuItemRegion);
|
2014-08-28 04:15:33 +04:00
|
|
|
|
|
|
|
auto& vm = EnsureVibrancyManager();
|
|
|
|
vm.UpdateVibrantRegion(VibrancyType::LIGHT, vibrantLightRegion);
|
2014-09-12 17:10:09 +04:00
|
|
|
vm.UpdateVibrantRegion(VibrancyType::TOOLTIP, tooltipRegion);
|
2015-02-05 01:25:18 +03:00
|
|
|
vm.UpdateVibrantRegion(VibrancyType::MENU, menuRegion);
|
2015-02-05 01:25:19 +03:00
|
|
|
vm.UpdateVibrantRegion(VibrancyType::HIGHLIGHTED_MENUITEM, highlightedMenuItemRegion);
|
2015-05-26 20:55:08 +03:00
|
|
|
vm.UpdateVibrantRegion(VibrancyType::SHEET, sheetRegion);
|
2014-08-28 04:15:33 +04:00
|
|
|
vm.UpdateVibrantRegion(VibrancyType::DARK, vibrantDarkRegion);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsChildView::ClearVibrantAreas()
|
|
|
|
{
|
|
|
|
if (VibrancyManager::SystemSupportsVibrancy()) {
|
|
|
|
EnsureVibrancyManager().ClearVibrantAreas();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-12 17:10:09 +04:00
|
|
|
static VibrancyType
|
2015-02-05 01:25:18 +03:00
|
|
|
ThemeGeometryTypeToVibrancyType(nsITheme::ThemeGeometryType aThemeGeometryType)
|
2014-09-12 17:10:09 +04:00
|
|
|
{
|
2015-02-05 01:25:18 +03:00
|
|
|
switch (aThemeGeometryType) {
|
|
|
|
case nsNativeThemeCocoa::eThemeGeometryTypeVibrancyLight:
|
2014-09-12 17:10:09 +04:00
|
|
|
return VibrancyType::LIGHT;
|
2015-02-05 01:25:18 +03:00
|
|
|
case nsNativeThemeCocoa::eThemeGeometryTypeVibrancyDark:
|
2014-09-12 17:10:09 +04:00
|
|
|
return VibrancyType::DARK;
|
2015-02-05 01:25:18 +03:00
|
|
|
case nsNativeThemeCocoa::eThemeGeometryTypeTooltip:
|
2014-09-12 17:10:09 +04:00
|
|
|
return VibrancyType::TOOLTIP;
|
2015-02-05 01:25:18 +03:00
|
|
|
case nsNativeThemeCocoa::eThemeGeometryTypeMenu:
|
2015-02-05 01:25:18 +03:00
|
|
|
return VibrancyType::MENU;
|
2015-02-05 01:25:19 +03:00
|
|
|
case nsNativeThemeCocoa::eThemeGeometryTypeHighlightedMenuItem:
|
|
|
|
return VibrancyType::HIGHLIGHTED_MENUITEM;
|
2015-05-26 20:55:08 +03:00
|
|
|
case nsNativeThemeCocoa::eThemeGeometryTypeSheet:
|
|
|
|
return VibrancyType::SHEET;
|
2014-09-12 17:10:09 +04:00
|
|
|
default:
|
|
|
|
MOZ_CRASH();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-07 18:18:01 +04:00
|
|
|
NSColor*
|
2015-02-05 01:25:18 +03:00
|
|
|
nsChildView::VibrancyFillColorForThemeGeometryType(nsITheme::ThemeGeometryType aThemeGeometryType)
|
2014-10-07 18:18:01 +04:00
|
|
|
{
|
|
|
|
if (VibrancyManager::SystemSupportsVibrancy()) {
|
|
|
|
return EnsureVibrancyManager().VibrancyFillColorForType(
|
2015-02-05 01:25:18 +03:00
|
|
|
ThemeGeometryTypeToVibrancyType(aThemeGeometryType));
|
2014-10-07 18:18:01 +04:00
|
|
|
}
|
|
|
|
return [NSColor whiteColor];
|
|
|
|
}
|
|
|
|
|
2014-10-24 20:32:23 +04:00
|
|
|
NSColor*
|
2015-02-05 01:25:18 +03:00
|
|
|
nsChildView::VibrancyFontSmoothingBackgroundColorForThemeGeometryType(nsITheme::ThemeGeometryType aThemeGeometryType)
|
2014-10-24 20:32:23 +04:00
|
|
|
{
|
|
|
|
if (VibrancyManager::SystemSupportsVibrancy()) {
|
|
|
|
return EnsureVibrancyManager().VibrancyFontSmoothingBackgroundColorForType(
|
2015-02-05 01:25:18 +03:00
|
|
|
ThemeGeometryTypeToVibrancyType(aThemeGeometryType));
|
2014-10-24 20:32:23 +04:00
|
|
|
}
|
|
|
|
return [NSColor clearColor];
|
|
|
|
}
|
|
|
|
|
2014-08-28 04:15:33 +04:00
|
|
|
mozilla::VibrancyManager&
|
|
|
|
nsChildView::EnsureVibrancyManager()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mView, "Only call this once we have a view!");
|
|
|
|
if (!mVibrancyManager) {
|
|
|
|
mVibrancyManager = MakeUnique<VibrancyManager>(*this, mView);
|
|
|
|
}
|
|
|
|
return *mVibrancyManager;
|
|
|
|
}
|
|
|
|
|
2015-08-12 06:12:57 +03:00
|
|
|
nsChildView::SwipeInfo
|
|
|
|
nsChildView::SendMayStartSwipe(const mozilla::PanGestureInput& aSwipeStartEvent)
|
2015-08-27 23:07:59 +03:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> kungFuDeathGrip(this);
|
|
|
|
|
|
|
|
uint32_t direction = (aSwipeStartEvent.mPanDisplacement.x > 0.0)
|
|
|
|
? (uint32_t)nsIDOMSimpleGestureEvent::DIRECTION_RIGHT
|
|
|
|
: (uint32_t)nsIDOMSimpleGestureEvent::DIRECTION_LEFT;
|
|
|
|
|
|
|
|
// We're ready to start the animation. Tell Gecko about it, and at the same
|
|
|
|
// time ask it if it really wants to start an animation for this event.
|
|
|
|
// This event also reports back the directions that we can swipe in.
|
|
|
|
LayoutDeviceIntPoint position =
|
|
|
|
RoundedToInt(aSwipeStartEvent.mPanStartPoint * ScreenToLayoutDeviceScale(1));
|
|
|
|
WidgetSimpleGestureEvent geckoEvent =
|
2015-09-14 18:14:38 +03:00
|
|
|
SwipeTracker::CreateSwipeGestureEvent(eSwipeGestureMayStart, this,
|
|
|
|
position);
|
2015-08-27 23:07:59 +03:00
|
|
|
geckoEvent.direction = direction;
|
|
|
|
geckoEvent.delta = 0.0;
|
2016-05-09 22:16:54 +03:00
|
|
|
geckoEvent.mAllowedDirections = 0;
|
2015-08-27 23:07:59 +03:00
|
|
|
bool shouldStartSwipe = DispatchWindowEvent(geckoEvent); // event cancelled == swipe should start
|
|
|
|
|
2016-05-09 22:16:54 +03:00
|
|
|
SwipeInfo result = { shouldStartSwipe, geckoEvent.mAllowedDirections };
|
2015-08-12 06:12:57 +03:00
|
|
|
return result;
|
|
|
|
}
|
2015-08-27 23:07:59 +03:00
|
|
|
|
2015-08-12 06:12:57 +03:00
|
|
|
void
|
|
|
|
nsChildView::TrackScrollEventAsSwipe(const mozilla::PanGestureInput& aSwipeStartEvent,
|
|
|
|
uint32_t aAllowedDirections)
|
|
|
|
{
|
2015-08-27 23:07:59 +03:00
|
|
|
// If a swipe is currently being tracked kill it -- it's been interrupted
|
|
|
|
// by another gesture event.
|
|
|
|
if (mSwipeTracker) {
|
|
|
|
mSwipeTracker->CancelSwipe();
|
|
|
|
mSwipeTracker->Destroy();
|
|
|
|
mSwipeTracker = nullptr;
|
|
|
|
}
|
|
|
|
|
2015-08-12 06:12:57 +03:00
|
|
|
uint32_t direction = (aSwipeStartEvent.mPanDisplacement.x > 0.0)
|
|
|
|
? (uint32_t)nsIDOMSimpleGestureEvent::DIRECTION_RIGHT
|
|
|
|
: (uint32_t)nsIDOMSimpleGestureEvent::DIRECTION_LEFT;
|
|
|
|
|
2015-08-27 23:07:59 +03:00
|
|
|
mSwipeTracker = new SwipeTracker(*this, aSwipeStartEvent,
|
2015-08-12 06:12:57 +03:00
|
|
|
aAllowedDirections, direction);
|
2015-11-27 19:33:50 +03:00
|
|
|
|
|
|
|
if (!mAPZC) {
|
|
|
|
mCurrentPanGestureBelongsToSwipe = true;
|
|
|
|
}
|
2015-08-27 23:07:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsChildView::SwipeFinished()
|
|
|
|
{
|
|
|
|
mSwipeTracker = nullptr;
|
|
|
|
}
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
already_AddRefed<gfx::DrawTarget>
|
2016-02-19 04:57:29 +03:00
|
|
|
nsChildView::StartRemoteDrawingInRegion(LayoutDeviceIntRegion& aInvalidRegion,
|
|
|
|
BufferMode* aBufferMode)
|
2013-07-09 08:21:05 +04:00
|
|
|
{
|
2015-07-13 17:46:48 +03:00
|
|
|
// should have created the GLPresenter in InitCompositor.
|
|
|
|
MOZ_ASSERT(mGLPresenter);
|
2013-07-09 08:21:05 +04:00
|
|
|
if (!mGLPresenter) {
|
|
|
|
mGLPresenter = GLPresenter::CreateForWindow(this);
|
|
|
|
|
|
|
|
if (!mGLPresenter) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-03 09:29:54 +03:00
|
|
|
LayoutDeviceIntRegion dirtyRegion(aInvalidRegion);
|
2015-11-23 07:32:29 +03:00
|
|
|
LayoutDeviceIntSize renderSize = mBounds.Size();
|
2013-07-09 08:21:05 +04:00
|
|
|
|
|
|
|
if (!mBasicCompositorImage) {
|
2016-04-19 13:28:12 +03:00
|
|
|
mBasicCompositorImage = MakeUnique<RectTextureImage>(mGLPresenter->gl());
|
2013-07-09 08:21:05 +04:00
|
|
|
}
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<gfx::DrawTarget> drawTarget =
|
2013-07-09 08:21:05 +04:00
|
|
|
mBasicCompositorImage->BeginUpdate(renderSize, dirtyRegion);
|
|
|
|
|
|
|
|
if (!drawTarget) {
|
|
|
|
// Composite unchanged textures.
|
2015-11-23 07:32:29 +03:00
|
|
|
DoRemoteComposition(mBounds);
|
2013-07-09 08:21:05 +04:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-12-03 09:29:54 +03:00
|
|
|
aInvalidRegion = mBasicCompositorImage->GetUpdateRegion();
|
2016-03-24 07:41:43 +03:00
|
|
|
*aBufferMode = BufferMode::BUFFER_NONE;
|
2016-01-11 22:12:25 +03:00
|
|
|
|
2015-05-01 16:14:16 +03:00
|
|
|
return drawTarget.forget();
|
2013-07-09 08:21:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsChildView::EndRemoteDrawing()
|
|
|
|
{
|
|
|
|
mBasicCompositorImage->EndUpdate(true);
|
2015-11-23 07:32:29 +03:00
|
|
|
DoRemoteComposition(mBounds);
|
2013-07-09 08:21:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsChildView::CleanupRemoteDrawing()
|
|
|
|
{
|
|
|
|
mBasicCompositorImage = nullptr;
|
|
|
|
mCornerMaskImage = nullptr;
|
|
|
|
mResizerImage = nullptr;
|
|
|
|
mTitlebarImage = nullptr;
|
|
|
|
mGLPresenter = nullptr;
|
|
|
|
}
|
|
|
|
|
2015-07-13 17:46:48 +03:00
|
|
|
bool
|
|
|
|
nsChildView::InitCompositor(Compositor* aCompositor)
|
|
|
|
{
|
|
|
|
if (aCompositor->GetBackendType() == LayersBackend::LAYERS_BASIC) {
|
|
|
|
if (!mGLPresenter) {
|
|
|
|
mGLPresenter = GLPresenter::CreateForWindow(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return !!mGLPresenter;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-07-09 08:21:05 +04:00
|
|
|
void
|
2015-11-19 06:10:38 +03:00
|
|
|
nsChildView::DoRemoteComposition(const LayoutDeviceIntRect& aRenderRect)
|
2013-07-09 08:21:05 +04:00
|
|
|
{
|
2013-10-09 18:39:22 +04:00
|
|
|
if (![(ChildView*)mView preRender:mGLPresenter->GetNSOpenGLContext()]) {
|
|
|
|
return;
|
|
|
|
}
|
2013-07-09 08:21:05 +04:00
|
|
|
mGLPresenter->BeginFrame(aRenderRect.Size());
|
|
|
|
|
|
|
|
// Draw the result from the basic compositor.
|
2015-11-19 06:10:38 +03:00
|
|
|
mBasicCompositorImage->Draw(mGLPresenter, LayoutDeviceIntPoint(0, 0));
|
2013-07-09 08:21:05 +04:00
|
|
|
|
|
|
|
// DrawWindowOverlay doesn't do anything for non-GL, so it didn't paint
|
|
|
|
// anything during the basic compositor transaction. Draw the overlay now.
|
|
|
|
DrawWindowOverlay(mGLPresenter, aRenderRect);
|
|
|
|
|
|
|
|
mGLPresenter->EndFrame();
|
2013-10-09 18:39:23 +04:00
|
|
|
|
|
|
|
[(ChildView*)mView postRender:mGLPresenter->GetNSOpenGLContext()];
|
2013-07-09 08:21:05 +04:00
|
|
|
}
|
|
|
|
|
2014-09-18 12:52:30 +04:00
|
|
|
void
|
2015-11-26 08:42:59 +03:00
|
|
|
nsChildView::UpdateWindowDraggingRegion(const LayoutDeviceIntRegion& aRegion)
|
2014-09-18 12:52:30 +04:00
|
|
|
{
|
2015-11-26 08:42:59 +03:00
|
|
|
if (mDraggableRegion != aRegion) {
|
|
|
|
mDraggableRegion = aRegion;
|
2014-09-18 12:52:30 +04:00
|
|
|
[(ChildView*)mView updateWindowDraggableState];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-09 03:05:18 +03:00
|
|
|
void
|
|
|
|
nsChildView::ReportSwipeStarted(uint64_t aInputBlockId,
|
|
|
|
bool aStartSwipe)
|
|
|
|
{
|
|
|
|
if (mSwipeEventQueue && mSwipeEventQueue->inputBlockId == aInputBlockId) {
|
|
|
|
if (aStartSwipe) {
|
|
|
|
PanGestureInput& startEvent = mSwipeEventQueue->queuedEvents[0];
|
|
|
|
TrackScrollEventAsSwipe(startEvent, mSwipeEventQueue->allowedDirections);
|
|
|
|
for (size_t i = 1; i < mSwipeEventQueue->queuedEvents.Length(); i++) {
|
|
|
|
mSwipeTracker->ProcessEvent(mSwipeEventQueue->queuedEvents[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mSwipeEventQueue = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-29 00:30:16 +03:00
|
|
|
void
|
|
|
|
nsChildView::DispatchAPZWheelInputEvent(InputData& aEvent, bool aCanTriggerSwipe)
|
|
|
|
{
|
|
|
|
if (mSwipeTracker && aEvent.mInputType == PANGESTURE_INPUT) {
|
|
|
|
// Give the swipe tracker a first pass at the event. If a new pan gesture
|
|
|
|
// has been started since the beginning of the swipe, the swipe tracker
|
|
|
|
// will know to ignore the event.
|
|
|
|
nsEventStatus status = mSwipeTracker->ProcessEvent(aEvent.AsPanGestureInput());
|
|
|
|
if (status == nsEventStatus_eConsumeNoDefault) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-10 19:59:54 +03:00
|
|
|
WidgetWheelEvent event(true, eWheel, this);
|
2015-08-27 23:07:59 +03:00
|
|
|
|
2015-08-24 02:50:29 +03:00
|
|
|
if (mAPZC) {
|
|
|
|
uint64_t inputBlockId = 0;
|
|
|
|
ScrollableLayerGuid guid;
|
|
|
|
|
|
|
|
nsEventStatus result = mAPZC->ReceiveInputEvent(aEvent, &guid, &inputBlockId);
|
|
|
|
if (result == nsEventStatus_eConsumeNoDefault) {
|
2015-08-29 00:30:16 +03:00
|
|
|
return;
|
2015-08-24 02:50:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
switch(aEvent.mInputType) {
|
|
|
|
case PANGESTURE_INPUT: {
|
2015-08-28 07:04:53 +03:00
|
|
|
PanGestureInput& panInput = aEvent.AsPanGestureInput();
|
|
|
|
|
|
|
|
event = panInput.ToWidgetWheelEvent(this);
|
|
|
|
if (aCanTriggerSwipe) {
|
|
|
|
SwipeInfo swipeInfo = SendMayStartSwipe(panInput);
|
|
|
|
event.mCanTriggerSwipe = swipeInfo.wantsSwipe;
|
2015-08-12 07:15:32 +03:00
|
|
|
if (swipeInfo.wantsSwipe) {
|
2015-08-28 23:50:00 +03:00
|
|
|
if (result == nsEventStatus_eIgnore) {
|
|
|
|
// APZ has determined and that scrolling horizontally in the
|
|
|
|
// requested direction is impossible, so it didn't do any
|
|
|
|
// scrolling for the event.
|
|
|
|
// We know now that MayStartSwipe wants a swipe, so we can start
|
|
|
|
// the swipe now.
|
|
|
|
TrackScrollEventAsSwipe(panInput, swipeInfo.allowedDirections);
|
|
|
|
} else {
|
|
|
|
// We don't know whether this event can start a swipe, so we need
|
|
|
|
// to queue up events and wait for a call to ReportSwipeStarted.
|
|
|
|
// APZ might already have started scrolling in response to the
|
|
|
|
// event if it knew that it's the right thing to do. In that case
|
|
|
|
// we'll still get a call to ReportSwipeStarted, and we will
|
|
|
|
// discard the queued events at that point.
|
|
|
|
mSwipeEventQueue = MakeUnique<SwipeEventQueue>(swipeInfo.allowedDirections,
|
|
|
|
inputBlockId);
|
|
|
|
}
|
2015-08-12 07:15:32 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mSwipeEventQueue && mSwipeEventQueue->inputBlockId == inputBlockId) {
|
|
|
|
mSwipeEventQueue->queuedEvents.AppendElement(panInput);
|
2015-08-28 07:04:53 +03:00
|
|
|
}
|
2015-08-24 02:50:29 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SCROLLWHEEL_INPUT: {
|
|
|
|
event = aEvent.AsScrollWheelInput().ToWidgetWheelEvent(this);
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
default:
|
|
|
|
MOZ_CRASH("unsupported event type");
|
2015-08-29 00:30:16 +03:00
|
|
|
return;
|
2015-08-24 02:50:29 +03:00
|
|
|
}
|
2016-03-31 12:55:59 +03:00
|
|
|
if (event.mMessage == eWheel &&
|
2016-03-31 12:09:47 +03:00
|
|
|
(event.mDeltaX != 0 || event.mDeltaY != 0)) {
|
2015-08-24 02:50:29 +03:00
|
|
|
ProcessUntransformedAPZEvent(&event, guid, inputBlockId, result);
|
|
|
|
}
|
2015-08-29 00:30:16 +03:00
|
|
|
return;
|
2015-08-24 02:50:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsEventStatus status;
|
|
|
|
switch(aEvent.mInputType) {
|
|
|
|
case PANGESTURE_INPUT: {
|
2015-08-29 00:30:16 +03:00
|
|
|
PanGestureInput panInput = aEvent.AsPanGestureInput();
|
2015-08-27 07:23:09 +03:00
|
|
|
if (panInput.mType == PanGestureInput::PANGESTURE_MAYSTART ||
|
|
|
|
panInput.mType == PanGestureInput::PANGESTURE_START) {
|
|
|
|
mCurrentPanGestureBelongsToSwipe = false;
|
|
|
|
}
|
|
|
|
if (mCurrentPanGestureBelongsToSwipe) {
|
|
|
|
// Ignore this event. It's a momentum event from a scroll gesture
|
|
|
|
// that was processed as a swipe, and the swipe animation has
|
|
|
|
// already finished (so mSwipeTracker is already null).
|
|
|
|
MOZ_ASSERT(panInput.IsMomentum(),
|
|
|
|
"If the fingers are still on the touchpad, we should still have a SwipeTracker, and it should have consumed this event.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-08-29 00:30:16 +03:00
|
|
|
event = panInput.ToWidgetWheelEvent(this);
|
|
|
|
if (aCanTriggerSwipe) {
|
2015-08-12 06:12:57 +03:00
|
|
|
SwipeInfo swipeInfo = SendMayStartSwipe(panInput);
|
2015-11-27 19:33:50 +03:00
|
|
|
|
|
|
|
// We're in the non-APZ case here, but we still want to know whether
|
|
|
|
// the event was routed to a child process, so we use InputAPZContext
|
|
|
|
// to get that piece of information.
|
|
|
|
ScrollableLayerGuid guid;
|
|
|
|
InputAPZContext context(guid, 0, nsEventStatus_eIgnore);
|
|
|
|
|
2015-08-28 06:50:31 +03:00
|
|
|
event.mCanTriggerSwipe = swipeInfo.wantsSwipe;
|
2015-08-09 01:31:58 +03:00
|
|
|
DispatchEvent(&event, status);
|
2015-11-27 19:33:50 +03:00
|
|
|
if (swipeInfo.wantsSwipe) {
|
|
|
|
if (context.WasRoutedToChildProcess()) {
|
|
|
|
// We don't know whether this event can start a swipe, so we need
|
|
|
|
// to queue up events and wait for a call to ReportSwipeStarted.
|
|
|
|
mSwipeEventQueue = MakeUnique<SwipeEventQueue>(swipeInfo.allowedDirections, 0);
|
|
|
|
} else if (event.TriggersSwipe()) {
|
|
|
|
TrackScrollEventAsSwipe(panInput, swipeInfo.allowedDirections);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mSwipeEventQueue && mSwipeEventQueue->inputBlockId == 0) {
|
|
|
|
mSwipeEventQueue->queuedEvents.AppendElement(panInput);
|
2015-08-29 00:30:16 +03:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2015-08-24 02:50:29 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SCROLLWHEEL_INPUT: {
|
|
|
|
event = aEvent.AsScrollWheelInput().ToWidgetWheelEvent(this);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
MOZ_CRASH("unexpected event type");
|
2015-08-29 00:30:16 +03:00
|
|
|
return;
|
2015-08-24 02:50:29 +03:00
|
|
|
}
|
2016-03-31 12:55:59 +03:00
|
|
|
if (event.mMessage == eWheel &&
|
2016-03-31 12:09:47 +03:00
|
|
|
(event.mDeltaX != 0 || event.mDeltaY != 0)) {
|
2015-08-24 02:50:29 +03:00
|
|
|
DispatchEvent(&event, status);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-11 19:47:35 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
2012-11-18 06:01:44 +04:00
|
|
|
already_AddRefed<a11y::Accessible>
|
2010-05-12 10:47:35 +04:00
|
|
|
nsChildView::GetDocumentAccessible()
|
2006-09-11 19:47:35 +04:00
|
|
|
{
|
2012-06-07 04:26:45 +04:00
|
|
|
if (!mozilla::a11y::ShouldA11yBeEnabled())
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2012-06-07 04:26:45 +04:00
|
|
|
|
2010-05-12 10:47:35 +04:00
|
|
|
if (mAccessible) {
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<a11y::Accessible> ret;
|
2013-04-28 15:52:10 +04:00
|
|
|
CallQueryReferent(mAccessible.get(),
|
|
|
|
static_cast<a11y::Accessible**>(getter_AddRefs(ret)));
|
|
|
|
return ret.forget();
|
2006-09-27 11:53:07 +04:00
|
|
|
}
|
|
|
|
|
2010-05-12 10:47:35 +04:00
|
|
|
// need to fetch the accessible anew, because it has gone away.
|
|
|
|
// cache the accessible in our weak ptr
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<a11y::Accessible> acc = GetRootAccessible();
|
2014-10-22 04:49:28 +04:00
|
|
|
mAccessible = do_GetWeakReference(acc.get());
|
2010-05-12 10:47:35 +04:00
|
|
|
|
2013-04-28 15:52:10 +04:00
|
|
|
return acc.forget();
|
2006-09-11 19:47:35 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-07-09 08:21:05 +04:00
|
|
|
// RectTextureImage implementation
|
|
|
|
|
|
|
|
RectTextureImage::~RectTextureImage()
|
|
|
|
{
|
|
|
|
if (mTexture) {
|
|
|
|
mGLContext->MakeCurrent();
|
|
|
|
mGLContext->fDeleteTextures(1, &mTexture);
|
|
|
|
mTexture = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
LayoutDeviceIntSize
|
|
|
|
RectTextureImage::TextureSizeForSize(const LayoutDeviceIntSize& aSize)
|
2013-07-09 08:21:05 +04:00
|
|
|
{
|
2015-11-19 06:10:38 +03:00
|
|
|
return LayoutDeviceIntSize(gfx::NextPowerOfTwo(aSize.width),
|
|
|
|
gfx::NextPowerOfTwo(aSize.height));
|
2013-07-09 08:21:05 +04:00
|
|
|
}
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
already_AddRefed<gfx::DrawTarget>
|
2015-11-19 06:10:38 +03:00
|
|
|
RectTextureImage::BeginUpdate(const LayoutDeviceIntSize& aNewSize,
|
|
|
|
const LayoutDeviceIntRegion& aDirtyRegion)
|
2013-07-09 08:21:05 +04:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mInUpdate, "Beginning update during update!");
|
|
|
|
mUpdateRegion = aDirtyRegion;
|
|
|
|
if (aNewSize != mUsedSize) {
|
|
|
|
mUsedSize = aNewSize;
|
2015-11-19 06:10:38 +03:00
|
|
|
mUpdateRegion =
|
|
|
|
LayoutDeviceIntRect(LayoutDeviceIntPoint(0, 0), aNewSize);
|
2013-07-09 08:21:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (mUpdateRegion.IsEmpty()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
LayoutDeviceIntSize neededBufferSize = TextureSizeForSize(mUsedSize);
|
2013-07-09 08:21:05 +04:00
|
|
|
if (!mUpdateDrawTarget || mBufferSize != neededBufferSize) {
|
|
|
|
gfx::IntSize size(neededBufferSize.width, neededBufferSize.height);
|
2016-01-12 16:20:08 +03:00
|
|
|
mUpdateDrawTarget = nullptr;
|
|
|
|
mUpdateDrawTargetData = nullptr;
|
|
|
|
gfx::SurfaceFormat format = gfx::SurfaceFormat::B8G8R8A8;
|
|
|
|
int32_t stride = size.width * gfx::BytesPerPixel(format);
|
|
|
|
mUpdateDrawTargetData = MakeUnique<unsigned char[]>(stride * size.height);
|
2013-07-09 08:21:05 +04:00
|
|
|
mUpdateDrawTarget =
|
2016-01-11 22:22:33 +03:00
|
|
|
gfx::Factory::CreateDrawTargetForData(gfx::BackendType::SKIA,
|
2016-01-12 16:20:08 +03:00
|
|
|
mUpdateDrawTargetData.get(), size,
|
|
|
|
stride, format);
|
2013-07-09 08:21:05 +04:00
|
|
|
mBufferSize = neededBufferSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
mInUpdate = true;
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<gfx::DrawTarget> drawTarget = mUpdateDrawTarget;
|
2015-05-01 16:14:16 +03:00
|
|
|
return drawTarget.forget();
|
2013-07-09 08:21:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#define NSFoundationVersionWithProperStrideSupportForSubtextureUpload NSFoundationVersionNumber10_6_3
|
|
|
|
|
|
|
|
static bool
|
|
|
|
CanUploadSubtextures()
|
|
|
|
{
|
|
|
|
return NSFoundationVersionNumber >= NSFoundationVersionWithProperStrideSupportForSubtextureUpload;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
RectTextureImage::EndUpdate(bool aKeepSurface)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mInUpdate, "Ending update while not in update");
|
|
|
|
|
2016-01-27 19:09:01 +03:00
|
|
|
bool needInit = !mTexture;
|
2015-11-19 06:10:38 +03:00
|
|
|
LayoutDeviceIntRegion updateRegion = mUpdateRegion;
|
2016-01-27 19:09:01 +03:00
|
|
|
if (mTextureSize != mBufferSize) {
|
2013-07-09 08:21:05 +04:00
|
|
|
mTextureSize = mBufferSize;
|
2016-03-23 17:38:31 +03:00
|
|
|
needInit = true;
|
2013-07-09 08:21:05 +04:00
|
|
|
}
|
|
|
|
|
2016-01-27 19:09:01 +03:00
|
|
|
if (needInit || !CanUploadSubtextures()) {
|
2015-11-19 06:10:38 +03:00
|
|
|
updateRegion =
|
|
|
|
LayoutDeviceIntRect(LayoutDeviceIntPoint(0, 0), mTextureSize);
|
2013-07-09 08:21:05 +04:00
|
|
|
}
|
|
|
|
|
2016-01-12 16:20:08 +03:00
|
|
|
gfx::IntPoint srcPoint = updateRegion.GetBounds().TopLeft().ToUnknownPoint();
|
|
|
|
gfx::SurfaceFormat format = mUpdateDrawTarget->GetFormat();
|
|
|
|
int bpp = gfx::BytesPerPixel(format);
|
|
|
|
int32_t stride = mBufferSize.width * bpp;
|
|
|
|
unsigned char* data = mUpdateDrawTargetData.get();
|
|
|
|
data += srcPoint.y * stride + srcPoint.x * bpp;
|
2013-07-09 08:21:05 +04:00
|
|
|
|
2016-01-12 16:20:08 +03:00
|
|
|
UploadImageDataToTexture(mGLContext, data, stride, format,
|
2016-01-27 00:03:37 +03:00
|
|
|
updateRegion.ToUnknownRegion(), mTexture, nullptr,
|
2016-01-27 19:09:01 +03:00
|
|
|
needInit, /* aPixelBuffer = */ false,
|
2016-01-12 16:20:08 +03:00
|
|
|
LOCAL_GL_TEXTURE0,
|
|
|
|
LOCAL_GL_TEXTURE_RECTANGLE_ARB);
|
2013-07-09 08:21:05 +04:00
|
|
|
|
2016-01-27 00:03:37 +03:00
|
|
|
|
|
|
|
|
2013-07-09 08:21:05 +04:00
|
|
|
if (!aKeepSurface) {
|
|
|
|
mUpdateDrawTarget = nullptr;
|
2016-01-12 16:20:08 +03:00
|
|
|
mUpdateDrawTargetData = nullptr;
|
2013-07-09 08:21:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
mInUpdate = false;
|
|
|
|
}
|
|
|
|
|
2013-11-27 09:49:45 +04:00
|
|
|
void
|
2015-11-19 06:10:38 +03:00
|
|
|
RectTextureImage::UpdateFromCGContext(const LayoutDeviceIntSize& aNewSize,
|
|
|
|
const LayoutDeviceIntRegion& aDirtyRegion,
|
2013-11-27 09:49:45 +04:00
|
|
|
CGContextRef aCGContext)
|
|
|
|
{
|
|
|
|
gfx::IntSize size = gfx::IntSize(CGBitmapContextGetWidth(aCGContext),
|
|
|
|
CGBitmapContextGetHeight(aCGContext));
|
|
|
|
mBufferSize.SizeTo(size.width, size.height);
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<gfx::DrawTarget> dt = BeginUpdate(aNewSize, aDirtyRegion);
|
2013-11-27 09:49:45 +04:00
|
|
|
if (dt) {
|
|
|
|
gfx::Rect rect(0, 0, size.width, size.height);
|
2015-11-19 06:10:38 +03:00
|
|
|
gfxUtils::ClipToRegion(dt, GetUpdateRegion().ToUnknownRegion());
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<gfx::SourceSurface> sourceSurface =
|
2013-11-27 09:49:45 +04:00
|
|
|
dt->CreateSourceSurfaceFromData(static_cast<uint8_t *>(CGBitmapContextGetData(aCGContext)),
|
|
|
|
size,
|
|
|
|
CGBitmapContextGetBytesPerRow(aCGContext),
|
2014-01-10 23:06:16 +04:00
|
|
|
gfx::SurfaceFormat::B8G8R8A8);
|
2013-11-27 09:49:45 +04:00
|
|
|
dt->DrawSurface(sourceSurface, rect, rect,
|
|
|
|
gfx::DrawSurfaceOptions(),
|
2014-01-10 23:06:17 +04:00
|
|
|
gfx::DrawOptions(1.0, gfx::CompositionOp::OP_SOURCE));
|
2013-11-27 09:49:45 +04:00
|
|
|
dt->PopClip();
|
|
|
|
EndUpdate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-09 08:21:05 +04:00
|
|
|
void
|
|
|
|
RectTextureImage::Draw(GLManager* aManager,
|
2015-11-19 06:10:38 +03:00
|
|
|
const LayoutDeviceIntPoint& aLocation,
|
2014-08-22 17:40:02 +04:00
|
|
|
const Matrix4x4& aTransform)
|
2013-07-09 08:21:05 +04:00
|
|
|
{
|
2013-11-08 10:22:05 +04:00
|
|
|
ShaderProgramOGL* program = aManager->GetProgram(LOCAL_GL_TEXTURE_RECTANGLE_ARB,
|
|
|
|
gfx::SurfaceFormat::R8G8B8A8);
|
2013-07-09 08:21:05 +04:00
|
|
|
|
2015-08-13 22:59:57 +03:00
|
|
|
aManager->gl()->fActiveTexture(LOCAL_GL_TEXTURE0);
|
2013-07-09 08:21:05 +04:00
|
|
|
aManager->gl()->fBindTexture(LOCAL_GL_TEXTURE_RECTANGLE_ARB, mTexture);
|
|
|
|
|
2014-11-10 22:34:06 +03:00
|
|
|
aManager->ActivateProgram(program);
|
2013-11-08 10:22:05 +04:00
|
|
|
program->SetProjectionMatrix(aManager->GetProjMatrix());
|
2014-10-08 07:43:00 +04:00
|
|
|
program->SetLayerTransform(Matrix4x4(aTransform).PostTranslate(aLocation.x, aLocation.y, 0));
|
2014-01-28 00:25:20 +04:00
|
|
|
program->SetTextureTransform(gfx::Matrix4x4());
|
2013-07-09 08:21:05 +04:00
|
|
|
program->SetRenderOffset(nsIntPoint(0, 0));
|
|
|
|
program->SetTexCoordMultiplier(mUsedSize.width, mUsedSize.height);
|
|
|
|
program->SetTextureUnit(0);
|
|
|
|
|
2014-05-22 14:29:54 +04:00
|
|
|
aManager->BindAndDrawQuad(program,
|
|
|
|
gfx::Rect(0.0, 0.0, mUsedSize.width, mUsedSize.height),
|
|
|
|
gfx::Rect(0.0, 0.0, 1.0f, 1.0f));
|
2013-07-09 08:21:05 +04:00
|
|
|
|
|
|
|
aManager->gl()->fBindTexture(LOCAL_GL_TEXTURE_RECTANGLE_ARB, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// GLPresenter implementation
|
|
|
|
|
|
|
|
GLPresenter::GLPresenter(GLContext* aContext)
|
|
|
|
: mGLContext(aContext)
|
|
|
|
{
|
|
|
|
mGLContext->MakeCurrent();
|
2013-11-08 10:22:05 +04:00
|
|
|
ShaderConfigOGL config;
|
|
|
|
config.SetTextureTarget(LOCAL_GL_TEXTURE_RECTANGLE_ARB);
|
2013-07-18 10:54:09 +04:00
|
|
|
mRGBARectProgram = new ShaderProgramOGL(mGLContext,
|
2013-11-08 10:22:05 +04:00
|
|
|
ProgramProfileOGL::GetProfileFor(config));
|
2013-07-09 08:21:05 +04:00
|
|
|
|
|
|
|
// Create mQuadVBO.
|
|
|
|
mGLContext->fGenBuffers(1, &mQuadVBO);
|
|
|
|
mGLContext->fBindBuffer(LOCAL_GL_ARRAY_BUFFER, mQuadVBO);
|
|
|
|
|
2014-06-02 18:47:24 +04:00
|
|
|
// 1 quad, with the number of the quad (vertexID) encoded in w.
|
2013-07-09 08:21:05 +04:00
|
|
|
GLfloat vertices[] = {
|
2014-06-02 18:47:24 +04:00
|
|
|
0.0f, 0.0f, 0.0f, 0.0f,
|
|
|
|
1.0f, 0.0f, 0.0f, 0.0f,
|
|
|
|
0.0f, 1.0f, 0.0f, 0.0f,
|
|
|
|
1.0f, 0.0f, 0.0f, 0.0f,
|
|
|
|
0.0f, 1.0f, 0.0f, 0.0f,
|
|
|
|
1.0f, 1.0f, 0.0f, 0.0f,
|
2013-07-09 08:21:05 +04:00
|
|
|
};
|
2014-05-28 13:45:02 +04:00
|
|
|
HeapCopyOfStackArray<GLfloat> verticesOnHeap(vertices);
|
|
|
|
mGLContext->fBufferData(LOCAL_GL_ARRAY_BUFFER,
|
|
|
|
verticesOnHeap.ByteLength(),
|
|
|
|
verticesOnHeap.Data(),
|
|
|
|
LOCAL_GL_STATIC_DRAW);
|
|
|
|
mGLContext->fBindBuffer(LOCAL_GL_ARRAY_BUFFER, 0);
|
2013-07-09 08:21:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
GLPresenter::~GLPresenter()
|
|
|
|
{
|
|
|
|
if (mQuadVBO) {
|
|
|
|
mGLContext->MakeCurrent();
|
|
|
|
mGLContext->fDeleteBuffers(1, &mQuadVBO);
|
|
|
|
mQuadVBO = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-05-22 14:29:54 +04:00
|
|
|
GLPresenter::BindAndDrawQuad(ShaderProgramOGL *aProgram,
|
|
|
|
const gfx::Rect& aLayerRect,
|
|
|
|
const gfx::Rect& aTextureRect)
|
2013-07-09 08:21:05 +04:00
|
|
|
{
|
|
|
|
mGLContext->MakeCurrent();
|
|
|
|
|
2014-05-28 18:15:31 +04:00
|
|
|
gfx::Rect layerRects[4];
|
|
|
|
gfx::Rect textureRects[4];
|
|
|
|
|
|
|
|
layerRects[0] = aLayerRect;
|
|
|
|
textureRects[0] = aTextureRect;
|
|
|
|
|
|
|
|
aProgram->SetLayerRects(layerRects);
|
|
|
|
aProgram->SetTextureRects(textureRects);
|
2014-05-22 01:36:56 +04:00
|
|
|
|
2014-05-29 18:19:37 +04:00
|
|
|
const GLuint coordAttribIndex = 0;
|
2013-07-09 08:21:05 +04:00
|
|
|
|
|
|
|
mGLContext->fBindBuffer(LOCAL_GL_ARRAY_BUFFER, mQuadVBO);
|
2014-05-29 18:19:37 +04:00
|
|
|
mGLContext->fVertexAttribPointer(coordAttribIndex, 4,
|
2013-07-09 08:21:05 +04:00
|
|
|
LOCAL_GL_FLOAT, LOCAL_GL_FALSE, 0,
|
|
|
|
(GLvoid*)0);
|
2014-05-29 18:19:37 +04:00
|
|
|
mGLContext->fEnableVertexAttribArray(coordAttribIndex);
|
2014-06-02 18:47:24 +04:00
|
|
|
mGLContext->fDrawArrays(LOCAL_GL_TRIANGLES, 0, 6);
|
2014-05-29 18:19:37 +04:00
|
|
|
mGLContext->fDisableVertexAttribArray(coordAttribIndex);
|
2013-07-09 08:21:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-11-19 06:10:38 +03:00
|
|
|
GLPresenter::BeginFrame(LayoutDeviceIntSize aRenderSize)
|
2013-07-09 08:21:05 +04:00
|
|
|
{
|
|
|
|
mGLContext->MakeCurrent();
|
|
|
|
|
|
|
|
mGLContext->fViewport(0, 0, aRenderSize.width, aRenderSize.height);
|
|
|
|
|
|
|
|
// Matrix to transform (0, 0, width, height) to viewport space (-1.0, 1.0,
|
|
|
|
// 2, 2) and flip the contents.
|
2014-09-10 17:26:12 +04:00
|
|
|
gfx::Matrix viewMatrix = gfx::Matrix::Translation(-1.0, 1.0);
|
2014-09-10 21:29:35 +04:00
|
|
|
viewMatrix.PreScale(2.0f / float(aRenderSize.width),
|
|
|
|
2.0f / float(aRenderSize.height));
|
|
|
|
viewMatrix.PreScale(1.0f, -1.0f);
|
2013-07-09 08:21:05 +04:00
|
|
|
|
2014-01-28 00:25:20 +04:00
|
|
|
gfx::Matrix4x4 matrix3d = gfx::Matrix4x4::From2D(viewMatrix);
|
2013-07-09 08:21:05 +04:00
|
|
|
matrix3d._33 = 0.0f;
|
|
|
|
|
2014-01-30 02:53:38 +04:00
|
|
|
// set the projection matrix for the next time the program is activated
|
2013-11-08 10:22:05 +04:00
|
|
|
mProjMatrix = matrix3d;
|
2013-07-09 08:21:05 +04:00
|
|
|
|
|
|
|
// Default blend function implements "OVER"
|
|
|
|
mGLContext->fBlendFuncSeparate(LOCAL_GL_ONE, LOCAL_GL_ONE_MINUS_SRC_ALPHA,
|
|
|
|
LOCAL_GL_ONE, LOCAL_GL_ONE);
|
|
|
|
mGLContext->fEnable(LOCAL_GL_BLEND);
|
|
|
|
|
|
|
|
mGLContext->fClearColor(0.0, 0.0, 0.0, 0.0);
|
|
|
|
mGLContext->fClear(LOCAL_GL_COLOR_BUFFER_BIT | LOCAL_GL_DEPTH_BUFFER_BIT);
|
|
|
|
|
|
|
|
mGLContext->fEnable(LOCAL_GL_TEXTURE_RECTANGLE_ARB);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GLPresenter::EndFrame()
|
|
|
|
{
|
|
|
|
mGLContext->SwapBuffers();
|
|
|
|
mGLContext->fBindBuffer(LOCAL_GL_ARRAY_BUFFER, 0);
|
|
|
|
}
|
|
|
|
|
2002-04-23 07:55:19 +04:00
|
|
|
#pragma mark -
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
@implementation ChildView
|
|
|
|
|
2006-10-26 02:45:22 +04:00
|
|
|
// globalDragPboard is non-null during native drag sessions that did not originate
|
|
|
|
// in our native NSView (it is set in |draggingEntered:|). It is unset when the
|
|
|
|
// drag session ends for this view, either with the mouse exiting or when a drop
|
|
|
|
// occurs in this view.
|
2015-08-15 00:33:59 +03:00
|
|
|
NSPasteboard* globalDragPboard = nil;
|
2006-10-26 02:45:22 +04:00
|
|
|
|
2009-11-06 13:21:41 +03:00
|
|
|
// gLastDragView and gLastDragMouseDownEvent are used to communicate information
|
|
|
|
// to the drag service during drag invocation (starting a drag in from the view).
|
|
|
|
// gLastDragView is only non-null while mouseDragged is on the call stack.
|
2007-09-24 04:01:04 +04:00
|
|
|
NSView* gLastDragView = nil;
|
2009-11-06 13:21:41 +03:00
|
|
|
NSEvent* gLastDragMouseDownEvent = nil;
|
2006-10-26 02:45:22 +04:00
|
|
|
|
2008-12-15 23:56:29 +03:00
|
|
|
+ (void)initialize
|
|
|
|
{
|
|
|
|
static BOOL initialized = NO;
|
|
|
|
|
|
|
|
if (!initialized) {
|
|
|
|
// Inform the OS about the types of services (from the "Services" menu)
|
|
|
|
// that we can handle.
|
2009-03-18 05:04:01 +03:00
|
|
|
|
|
|
|
NSArray *sendTypes = [[NSArray alloc] initWithObjects:NSStringPboardType,NSHTMLPboardType,nil];
|
2010-01-11 04:45:45 +03:00
|
|
|
NSArray *returnTypes = [[NSArray alloc] initWithObjects:NSStringPboardType,NSHTMLPboardType,nil];
|
2014-04-23 03:23:18 +04:00
|
|
|
|
2008-12-15 23:56:29 +03:00
|
|
|
[NSApp registerServicesMenuSendTypes:sendTypes returnTypes:returnTypes];
|
|
|
|
|
2009-03-18 05:04:01 +03:00
|
|
|
[sendTypes release];
|
|
|
|
[returnTypes release];
|
|
|
|
|
2008-12-15 23:56:29 +03:00
|
|
|
initialized = YES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-06 01:40:34 +04:00
|
|
|
+ (void)registerViewForDraggedTypes:(NSView*)aView
|
|
|
|
{
|
|
|
|
[aView registerForDraggedTypes:[NSArray arrayWithObjects:NSFilenamesPboardType,
|
|
|
|
NSStringPboardType,
|
|
|
|
NSHTMLPboardType,
|
|
|
|
NSURLPboardType,
|
|
|
|
NSFilesPromisePboardType,
|
|
|
|
kWildcardPboardType,
|
|
|
|
kCorePboardType_url,
|
|
|
|
kCorePboardType_urld,
|
|
|
|
kCorePboardType_urln,
|
|
|
|
nil]];
|
|
|
|
}
|
|
|
|
|
2007-10-09 22:46:30 +04:00
|
|
|
// initWithFrame:geckoChild:
|
|
|
|
- (id)initWithFrame:(NSRect)inFrame geckoChild:(nsChildView*)inChild
|
2002-03-10 01:43:04 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NIL;
|
|
|
|
|
2006-01-24 07:01:54 +03:00
|
|
|
if ((self = [super initWithFrame:inFrame])) {
|
2005-06-16 16:49:43 +04:00
|
|
|
mGeckoChild = inChild;
|
2010-06-09 08:11:42 +04:00
|
|
|
mPendingDisplay = NO;
|
2010-07-16 16:48:02 +04:00
|
|
|
mBlockedLastMouseDown = NO;
|
2013-08-17 01:17:40 +04:00
|
|
|
mExpectingWheelStop = NO;
|
2008-02-29 08:47:41 +03:00
|
|
|
|
2008-04-07 03:52:05 +04:00
|
|
|
mLastMouseDownEvent = nil;
|
2015-02-20 19:37:02 +03:00
|
|
|
mLastKeyDownEvent = nil;
|
2010-07-16 16:48:02 +04:00
|
|
|
mClickThroughMouseDownEvent = nil;
|
2012-07-30 18:20:58 +04:00
|
|
|
mDragService = nullptr;
|
2008-06-30 20:30:22 +04:00
|
|
|
|
2008-10-24 00:15:20 +04:00
|
|
|
mGestureState = eGestureState_None;
|
|
|
|
mCumulativeMagnification = 0.0;
|
|
|
|
mCumulativeRotation = 0.0;
|
2009-09-17 02:06:16 +04:00
|
|
|
|
2011-02-04 00:12:33 +03:00
|
|
|
// We can't call forceRefreshOpenGL here because, in order to work around
|
|
|
|
// the bug, it seems we need to have a draw already happening. Therefore,
|
|
|
|
// we call it in drawRect:inContext:, when we know that a draw is in
|
|
|
|
// progress.
|
|
|
|
mDidForceRefreshOpenGL = NO;
|
|
|
|
|
2009-09-17 02:06:16 +04:00
|
|
|
[self setFocusRingType:NSFocusRingTypeNone];
|
2011-08-11 21:42:23 +04:00
|
|
|
|
|
|
|
#ifdef __LP64__
|
2013-04-09 23:44:01 +04:00
|
|
|
mCancelSwipeAnimation = nil;
|
2011-08-11 21:42:23 +04:00
|
|
|
#endif
|
2013-05-23 18:49:17 +04:00
|
|
|
|
|
|
|
mTopLeftCornerMask = NULL;
|
2005-06-16 16:49:43 +04:00
|
|
|
}
|
2013-04-09 23:44:01 +04:00
|
|
|
|
2006-10-26 02:45:22 +04:00
|
|
|
// register for things we'll take from other applications
|
2013-02-06 01:40:34 +04:00
|
|
|
[ChildView registerViewForDraggedTypes:self];
|
|
|
|
|
2008-09-17 20:26:57 +04:00
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
2008-10-14 17:31:09 +04:00
|
|
|
selector:@selector(systemMetricsChanged)
|
2008-09-17 20:26:57 +04:00
|
|
|
name:NSControlTintDidChangeNotification
|
|
|
|
object:nil];
|
2008-09-22 13:09:32 +04:00
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
2008-10-14 17:31:09 +04:00
|
|
|
selector:@selector(systemMetricsChanged)
|
2008-09-22 13:09:32 +04:00
|
|
|
name:NSSystemColorsDidChangeNotification
|
|
|
|
object:nil];
|
2013-05-02 18:58:00 +04:00
|
|
|
// TODO: replace the string with the constant once we build with the 10.7 SDK
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
2013-07-16 16:58:44 +04:00
|
|
|
selector:@selector(scrollbarSystemMetricChanged)
|
2013-05-02 18:58:00 +04:00
|
|
|
name:@"NSPreferredScrollerStyleDidChangeNotification"
|
|
|
|
object:nil];
|
2008-10-14 17:31:09 +04:00
|
|
|
[[NSDistributedNotificationCenter defaultCenter] addObserver:self
|
|
|
|
selector:@selector(systemMetricsChanged)
|
|
|
|
name:@"AppleAquaScrollBarVariantChanged"
|
|
|
|
object:nil
|
2014-04-23 03:23:18 +04:00
|
|
|
suspensionBehavior:NSNotificationSuspensionBehaviorDeliverImmediately];
|
2010-04-28 02:29:29 +04:00
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
|
|
selector:@selector(_surfaceNeedsUpdate:)
|
|
|
|
name:NSViewGlobalFrameDidChangeNotification
|
|
|
|
object:self];
|
2006-10-26 02:45:22 +04:00
|
|
|
|
2005-06-16 16:49:43 +04:00
|
|
|
return self;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NIL;
|
2002-03-10 01:43:04 +03:00
|
|
|
}
|
|
|
|
|
2015-02-20 19:37:02 +03:00
|
|
|
// ComplexTextInputPanel's interpretKeyEvent hack won't work without this.
|
|
|
|
// It makes calls to +[NSTextInputContext currentContext], deep in system
|
|
|
|
// code, return the appropriate context.
|
|
|
|
- (NSTextInputContext *)inputContext
|
|
|
|
{
|
|
|
|
NSTextInputContext* pluginContext = NULL;
|
|
|
|
if (mGeckoChild && mGeckoChild->IsPluginFocused()) {
|
|
|
|
ComplexTextInputPanel* ctiPanel =
|
|
|
|
ComplexTextInputPanel::GetSharedComplexTextInputPanel();
|
|
|
|
if (ctiPanel) {
|
|
|
|
pluginContext = (NSTextInputContext*) ctiPanel->GetInputContext();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pluginContext) {
|
|
|
|
return pluginContext;
|
|
|
|
} else {
|
|
|
|
return [super inputContext];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-08 14:19:23 +04:00
|
|
|
- (void)installTextInputHandler:(TextInputHandler*)aHandler
|
|
|
|
{
|
|
|
|
mTextInputHandler = aHandler;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)uninstallTextInputHandler
|
|
|
|
{
|
2012-07-30 18:20:58 +04:00
|
|
|
mTextInputHandler = nullptr;
|
2011-05-08 14:19:23 +04:00
|
|
|
}
|
|
|
|
|
2011-02-04 00:12:33 +03:00
|
|
|
// Work around bug 603134.
|
|
|
|
// OS X has a bug that causes new OpenGL windows to only paint once or twice,
|
|
|
|
// then stop painting altogether. By clearing the drawable from the GL context,
|
|
|
|
// and then resetting the view to ourselves, we convince OS X to start updating
|
|
|
|
// again.
|
|
|
|
// This can cause a flash in new windows - bug 631339 - but it's very hard to
|
|
|
|
// fix that while maintaining this workaround.
|
|
|
|
- (void)forceRefreshOpenGL
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
|
|
|
[mGLContext clearDrawable];
|
2013-10-09 18:39:22 +04:00
|
|
|
[self updateGLContext];
|
2011-02-04 00:12:33 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
|
|
|
|
2012-01-19 18:45:37 +04:00
|
|
|
- (void)setGLContext:(NSOpenGLContext *)aGLContext
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
|
|
|
mGLContext = aGLContext;
|
|
|
|
[mGLContext retain];
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
|
|
|
|
2013-10-09 18:39:22 +04:00
|
|
|
- (bool)preRender:(NSOpenGLContext *)aGLContext
|
2013-05-10 01:02:49 +04:00
|
|
|
{
|
2013-10-09 18:39:22 +04:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
2013-10-09 18:39:22 +04:00
|
|
|
|
2013-10-09 18:39:23 +04:00
|
|
|
if (![self window] ||
|
|
|
|
([[self window] isKindOfClass:[BaseWindow class]] &&
|
|
|
|
![(BaseWindow*)[self window] isVisibleOrBeingShown])) {
|
2013-10-09 18:39:22 +04:00
|
|
|
// Before the window is shown, our GL context's front FBO is not
|
|
|
|
// framebuffer complete, so we refuse to render.
|
|
|
|
return false;
|
|
|
|
}
|
2013-10-09 18:39:22 +04:00
|
|
|
|
|
|
|
if (!mGLContext) {
|
|
|
|
[self setGLContext:aGLContext];
|
|
|
|
[self updateGLContext];
|
|
|
|
}
|
2013-10-09 18:39:23 +04:00
|
|
|
|
2013-10-09 18:39:23 +04:00
|
|
|
CGLLockContext((CGLContextObj)[aGLContext CGLContextObj]);
|
|
|
|
|
2013-10-09 18:39:22 +04:00
|
|
|
return true;
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(false);
|
2013-10-09 18:39:23 +04:00
|
|
|
}
|
|
|
|
|
2013-10-09 18:39:23 +04:00
|
|
|
- (void)postRender:(NSOpenGLContext *)aGLContext
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
|
|
|
CGLUnlockContext((CGLContextObj)[aGLContext CGLContextObj]);
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
|
|
|
|
2005-06-16 16:49:43 +04:00
|
|
|
- (void)dealloc
|
2002-04-12 13:39:59 +04:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2010-06-18 13:22:01 +04:00
|
|
|
[mGLContext release];
|
2006-11-19 16:59:46 +03:00
|
|
|
[mPendingDirtyRects release];
|
2008-04-07 03:52:05 +04:00
|
|
|
[mLastMouseDownEvent release];
|
2015-02-20 19:37:02 +03:00
|
|
|
[mLastKeyDownEvent release];
|
2010-07-16 16:48:02 +04:00
|
|
|
[mClickThroughMouseDownEvent release];
|
2013-05-23 18:49:17 +04:00
|
|
|
CGImageRelease(mTopLeftCornerMask);
|
2009-10-21 11:02:13 +04:00
|
|
|
ChildViewMouseTracker::OnDestroyView(self);
|
2007-09-18 02:55:20 +04:00
|
|
|
|
2008-09-17 20:26:57 +04:00
|
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
2008-10-14 17:31:09 +04:00
|
|
|
[[NSDistributedNotificationCenter defaultCenter] removeObserver:self];
|
2008-09-17 20:26:57 +04:00
|
|
|
|
2012-08-30 23:10:55 +04:00
|
|
|
[super dealloc];
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2002-04-12 13:39:59 +04:00
|
|
|
}
|
2001-11-06 18:35:24 +03:00
|
|
|
|
2005-09-30 04:59:29 +04:00
|
|
|
- (void)widgetDestroyed
|
|
|
|
{
|
2011-05-08 14:19:23 +04:00
|
|
|
if (mTextInputHandler) {
|
|
|
|
mTextInputHandler->OnDestroyWidget(mGeckoChild);
|
2012-07-30 18:20:58 +04:00
|
|
|
mTextInputHandler = nullptr;
|
2011-05-08 14:19:23 +04:00
|
|
|
}
|
2012-07-30 18:20:58 +04:00
|
|
|
mGeckoChild = nullptr;
|
2008-10-22 02:15:08 +04:00
|
|
|
|
2007-10-10 16:19:47 +04:00
|
|
|
// Just in case we're destroyed abruptly and missed the draggingExited
|
|
|
|
// or performDragOperation message.
|
|
|
|
NS_IF_RELEASE(mDragService);
|
2005-09-30 04:59:29 +04:00
|
|
|
}
|
|
|
|
|
2006-12-20 05:13:57 +03:00
|
|
|
// mozView method, return our gecko child view widget. Note this does not AddRef.
|
2005-06-16 16:49:43 +04:00
|
|
|
- (nsIWidget*) widget
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2007-07-08 11:08:04 +04:00
|
|
|
return static_cast<nsIWidget*>(mGeckoChild);
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
2008-10-14 17:31:09 +04:00
|
|
|
- (void)systemMetricsChanged
|
2008-09-17 20:26:57 +04:00
|
|
|
{
|
2012-08-15 22:52:35 +04:00
|
|
|
if (mGeckoChild)
|
|
|
|
mGeckoChild->NotifyThemeChanged();
|
2008-09-17 20:26:57 +04:00
|
|
|
}
|
|
|
|
|
2013-07-16 16:58:44 +04:00
|
|
|
- (void)scrollbarSystemMetricChanged
|
|
|
|
{
|
|
|
|
[self systemMetricsChanged];
|
|
|
|
|
|
|
|
if (mGeckoChild) {
|
|
|
|
nsIWidgetListener* listener = mGeckoChild->GetWidgetListener();
|
|
|
|
if (listener) {
|
2015-04-15 20:15:44 +03:00
|
|
|
nsIPresShell* presShell = listener->GetPresShell();
|
|
|
|
if (presShell) {
|
|
|
|
presShell->ReconstructFrames();
|
|
|
|
}
|
2013-07-16 16:58:44 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-09 17:00:08 +03:00
|
|
|
- (void)setNeedsPendingDisplay
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2006-11-09 17:00:08 +03:00
|
|
|
mPendingFullDisplay = YES;
|
2010-06-09 08:11:42 +04:00
|
|
|
if (!mPendingDisplay) {
|
|
|
|
[self performSelector:@selector(processPendingRedraws) withObject:nil afterDelay:0];
|
|
|
|
mPendingDisplay = YES;
|
|
|
|
}
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2006-11-09 17:00:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setNeedsPendingDisplayInRect:(NSRect)invalidRect
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2006-11-09 17:00:08 +03:00
|
|
|
if (!mPendingDirtyRects)
|
|
|
|
mPendingDirtyRects = [[NSMutableArray alloc] initWithCapacity:1];
|
|
|
|
[mPendingDirtyRects addObject:[NSValue valueWithRect:invalidRect]];
|
2010-06-09 08:11:42 +04:00
|
|
|
if (!mPendingDisplay) {
|
|
|
|
[self performSelector:@selector(processPendingRedraws) withObject:nil afterDelay:0];
|
|
|
|
mPendingDisplay = YES;
|
|
|
|
}
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2006-11-09 17:00:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Clears the queue of any pending invalides
|
|
|
|
- (void)processPendingRedraws
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2006-11-09 17:00:08 +03:00
|
|
|
if (mPendingFullDisplay) {
|
|
|
|
[self setNeedsDisplay:YES];
|
2005-06-16 16:49:43 +04:00
|
|
|
}
|
2010-06-09 08:11:42 +04:00
|
|
|
else if (mPendingDirtyRects) {
|
2006-11-09 17:00:08 +03:00
|
|
|
unsigned int count = [mPendingDirtyRects count];
|
|
|
|
for (unsigned int i = 0; i < count; ++i) {
|
|
|
|
[self setNeedsDisplayInRect:[[mPendingDirtyRects objectAtIndex:i] rectValue]];
|
|
|
|
}
|
2005-06-16 16:49:43 +04:00
|
|
|
}
|
2006-11-09 17:00:08 +03:00
|
|
|
mPendingFullDisplay = NO;
|
2010-06-09 08:11:42 +04:00
|
|
|
mPendingDisplay = NO;
|
2006-11-09 17:00:08 +03:00
|
|
|
[mPendingDirtyRects release];
|
|
|
|
mPendingDirtyRects = nil;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
2009-10-21 11:05:39 +04:00
|
|
|
- (void)setNeedsDisplayInRect:(NSRect)aRect
|
|
|
|
{
|
2013-05-23 18:55:50 +04:00
|
|
|
if (![self isUsingOpenGL]) {
|
|
|
|
[super setNeedsDisplayInRect:aRect];
|
2013-03-05 19:21:28 +04:00
|
|
|
return;
|
2013-05-23 18:55:50 +04:00
|
|
|
}
|
2013-03-05 19:21:28 +04:00
|
|
|
|
2013-05-23 18:55:50 +04:00
|
|
|
if ([[self window] isVisible] && [self isUsingMainThreadOpenGL]) {
|
|
|
|
// Draw without calling drawRect. This prevent us from
|
2013-03-05 19:21:28 +04:00
|
|
|
// needing to access the normal window buffer surface unnecessarily, so we
|
|
|
|
// waste less time synchronizing the two surfaces. (These synchronizations
|
|
|
|
// show up in a profiler as CGSDeviceLock / _CGSLockWindow /
|
|
|
|
// _CGSSynchronizeWindowBackingStore.) It also means that Cocoa doesn't
|
|
|
|
// have any potentially expensive invalid rect management for us.
|
|
|
|
if (!mWaitingForPaint) {
|
|
|
|
mWaitingForPaint = YES;
|
2013-04-05 12:18:06 +04:00
|
|
|
// Use NSRunLoopCommonModes instead of the default NSDefaultRunLoopMode
|
|
|
|
// so that the timer also fires while a native menu is open.
|
|
|
|
[self performSelector:@selector(drawUsingOpenGLCallback)
|
|
|
|
withObject:nil
|
|
|
|
afterDelay:0
|
|
|
|
inModes:[NSArray arrayWithObject:NSRunLoopCommonModes]];
|
2013-03-05 19:21:28 +04:00
|
|
|
}
|
|
|
|
}
|
2009-10-21 11:05:39 +04:00
|
|
|
}
|
|
|
|
|
2005-04-13 08:51:36 +04:00
|
|
|
- (NSString*)description
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NIL;
|
|
|
|
|
2005-04-13 08:51:36 +04:00
|
|
|
return [NSString stringWithFormat:@"ChildView %p, gecko child %p, frame %@", self, mGeckoChild, NSStringFromRect([self frame])];
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NIL;
|
2005-04-13 08:51:36 +04:00
|
|
|
}
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
// Make the origin of this view the topLeft corner (gecko origin) rather
|
|
|
|
// than the bottomLeft corner (standard cocoa origin).
|
|
|
|
- (BOOL)isFlipped
|
|
|
|
{
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2002-02-20 04:07:39 +03:00
|
|
|
- (BOOL)isOpaque
|
|
|
|
{
|
2014-12-11 17:44:07 +03:00
|
|
|
return [[self window] isOpaque];
|
2010-09-17 21:55:39 +04:00
|
|
|
}
|
|
|
|
|
2015-08-26 15:56:59 +03:00
|
|
|
- (void)sendFocusEvent:(EventMessage)eventMessage
|
2007-08-03 03:01:32 +04:00
|
|
|
{
|
|
|
|
if (!mGeckoChild)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
2015-08-26 15:56:59 +03:00
|
|
|
WidgetGUIEvent focusGuiEvent(true, eventMessage, mGeckoChild);
|
2016-03-28 07:29:42 +03:00
|
|
|
focusGuiEvent.mTime = PR_IntervalNow();
|
2007-08-03 03:01:32 +04:00
|
|
|
mGeckoChild->DispatchEvent(&focusGuiEvent, status);
|
|
|
|
}
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
// We accept key and mouse events, so don't keep passing them up the chain. Allow
|
2010-04-26 00:58:03 +04:00
|
|
|
// this to be a 'focused' widget for event dispatch.
|
2001-11-06 18:35:24 +03:00
|
|
|
- (BOOL)acceptsFirstResponder
|
|
|
|
{
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2010-07-16 16:48:02 +04:00
|
|
|
// Accept mouse down events on background windows
|
|
|
|
- (BOOL)acceptsFirstMouse:(NSEvent*)aEvent
|
|
|
|
{
|
|
|
|
if (![[self window] isKindOfClass:[PopupWindow class]]) {
|
|
|
|
// We rely on this function to tell us that the mousedown was on a
|
|
|
|
// background window. Inside mouseDown we can't tell whether we were
|
|
|
|
// inactive because at that point we've already been made active.
|
|
|
|
// Unfortunately, acceptsFirstMouse is called for PopupWindows even when
|
|
|
|
// their parent window is active, so ignore this on them for now.
|
|
|
|
mClickThroughMouseDownEvent = [aEvent retain];
|
|
|
|
}
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2006-11-09 17:00:08 +03:00
|
|
|
- (void)scrollRect:(NSRect)aRect by:(NSSize)offset
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2006-11-09 17:00:08 +03:00
|
|
|
// Update any pending dirty rects to reflect the new scroll position
|
|
|
|
if (mPendingDirtyRects) {
|
|
|
|
unsigned int count = [mPendingDirtyRects count];
|
|
|
|
for (unsigned int i = 0; i < count; ++i) {
|
|
|
|
NSRect oldRect = [[mPendingDirtyRects objectAtIndex:i] rectValue];
|
|
|
|
NSRect newRect = NSOffsetRect(oldRect, offset.width, offset.height);
|
|
|
|
[mPendingDirtyRects replaceObjectAtIndex:i
|
|
|
|
withObject:[NSValue valueWithRect:newRect]];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
[super scrollRect:aRect by:offset];
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2006-11-09 17:00:08 +03:00
|
|
|
}
|
|
|
|
|
2002-12-13 11:43:18 +03:00
|
|
|
- (BOOL)mouseDownCanMoveWindow
|
|
|
|
{
|
2014-09-18 12:52:30 +04:00
|
|
|
// Return YES so that _regionForOpaqueDescendants gets called, where the
|
|
|
|
// actual draggable region will be assembled.
|
|
|
|
return YES;
|
2002-12-13 11:43:18 +03:00
|
|
|
}
|
2001-11-06 18:35:24 +03:00
|
|
|
|
2013-10-09 18:39:22 +04:00
|
|
|
-(void)updateGLContext
|
2010-04-28 02:29:29 +04:00
|
|
|
{
|
2010-06-18 13:22:01 +04:00
|
|
|
if (mGLContext) {
|
2013-10-09 18:39:23 +04:00
|
|
|
CGLLockContext((CGLContextObj)[mGLContext CGLContextObj]);
|
2013-10-09 18:39:22 +04:00
|
|
|
[mGLContext setView:self];
|
2010-06-18 13:22:01 +04:00
|
|
|
[mGLContext update];
|
2013-10-09 18:39:23 +04:00
|
|
|
CGLUnlockContext((CGLContextObj)[mGLContext CGLContextObj]);
|
2010-04-28 02:29:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-09 18:39:22 +04:00
|
|
|
- (void)_surfaceNeedsUpdate:(NSNotification*)notification
|
2010-04-28 02:29:29 +04:00
|
|
|
{
|
2013-10-09 18:39:22 +04:00
|
|
|
[self updateGLContext];
|
2010-04-28 02:29:29 +04:00
|
|
|
}
|
|
|
|
|
2012-09-29 15:36:09 +04:00
|
|
|
- (BOOL)wantsBestResolutionOpenGLSurface
|
|
|
|
{
|
|
|
|
return nsCocoaUtils::HiDPIEnabled() ? YES : NO;
|
|
|
|
}
|
|
|
|
|
2012-10-16 23:41:20 +04:00
|
|
|
- (void)viewDidChangeBackingProperties
|
|
|
|
{
|
|
|
|
[super viewDidChangeBackingProperties];
|
|
|
|
if (mGeckoChild) {
|
|
|
|
// actually, it could be the color space that's changed,
|
|
|
|
// but we can't tell the difference here except by retrieving
|
|
|
|
// the backing scale factor and comparing to the old value
|
|
|
|
mGeckoChild->BackingScaleFactorChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-23 18:49:17 +04:00
|
|
|
- (BOOL)isCoveringTitlebar
|
|
|
|
{
|
|
|
|
return [[self window] isKindOfClass:[BaseWindow class]] &&
|
|
|
|
[(BaseWindow*)[self window] mainChildView] == self &&
|
|
|
|
[(BaseWindow*)[self window] drawsContentsIntoWindowFrame];
|
|
|
|
}
|
|
|
|
|
2015-08-26 19:59:17 +03:00
|
|
|
- (void)viewWillStartLiveResize
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIObserverService> observerService = mozilla::services::GetObserverService();
|
|
|
|
|
|
|
|
if (!observerService) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
observerService->NotifyObservers(nullptr, "live-resize-start", nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)viewDidEndLiveResize
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIObserverService> observerService = mozilla::services::GetObserverService();
|
|
|
|
|
|
|
|
if (!observerService) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
observerService->NotifyObservers(nullptr, "live-resize-end", nullptr);
|
|
|
|
}
|
|
|
|
|
2015-02-05 01:25:18 +03:00
|
|
|
- (NSColor*)vibrancyFillColorForThemeGeometryType:(nsITheme::ThemeGeometryType)aThemeGeometryType
|
2014-10-07 18:18:01 +04:00
|
|
|
{
|
|
|
|
if (!mGeckoChild) {
|
|
|
|
return [NSColor whiteColor];
|
|
|
|
}
|
2015-02-05 01:25:18 +03:00
|
|
|
return mGeckoChild->VibrancyFillColorForThemeGeometryType(aThemeGeometryType);
|
2014-10-07 18:18:01 +04:00
|
|
|
}
|
|
|
|
|
2015-02-05 01:25:18 +03:00
|
|
|
- (NSColor*)vibrancyFontSmoothingBackgroundColorForThemeGeometryType:(nsITheme::ThemeGeometryType)aThemeGeometryType
|
2014-10-24 20:32:23 +04:00
|
|
|
{
|
|
|
|
if (!mGeckoChild) {
|
|
|
|
return [NSColor clearColor];
|
|
|
|
}
|
2015-02-05 01:25:18 +03:00
|
|
|
return mGeckoChild->VibrancyFontSmoothingBackgroundColorForThemeGeometryType(aThemeGeometryType);
|
2014-10-24 20:32:23 +04:00
|
|
|
}
|
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
- (LayoutDeviceIntRegion)nativeDirtyRegionWithBoundingRect:(NSRect)aRect
|
2013-06-20 16:59:16 +04:00
|
|
|
{
|
2015-11-19 06:10:38 +03:00
|
|
|
LayoutDeviceIntRect boundingRect = mGeckoChild->CocoaPointsToDevPixels(aRect);
|
2013-06-20 16:59:16 +04:00
|
|
|
const NSRect *rects;
|
|
|
|
NSInteger count;
|
2013-06-29 05:05:07 +04:00
|
|
|
[self getRectsBeingDrawn:&rects count:&count];
|
2013-06-20 16:59:16 +04:00
|
|
|
|
|
|
|
if (count > MAX_RECTS_IN_REGION) {
|
|
|
|
return boundingRect;
|
|
|
|
}
|
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
LayoutDeviceIntRegion region;
|
2013-06-20 16:59:16 +04:00
|
|
|
for (NSInteger i = 0; i < count; ++i) {
|
2013-06-29 05:05:07 +04:00
|
|
|
region.Or(region, mGeckoChild->CocoaPointsToDevPixels(rects[i]));
|
2013-06-20 16:59:16 +04:00
|
|
|
}
|
|
|
|
region.And(region, boundingRect);
|
|
|
|
return region;
|
|
|
|
}
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
// The display system has told us that a portion of our view is dirty. Tell
|
|
|
|
// gecko to paint it
|
|
|
|
- (void)drawRect:(NSRect)aRect
|
|
|
|
{
|
2009-10-21 11:05:39 +04:00
|
|
|
CGContextRef cgContext = (CGContextRef)[[NSGraphicsContext currentContext] graphicsPort];
|
2013-05-23 18:49:16 +04:00
|
|
|
[self drawRect:aRect inContext:cgContext];
|
2009-10-21 11:05:39 +04:00
|
|
|
|
2009-12-12 00:53:22 +03:00
|
|
|
// If we're a transparent window and our contents have changed, we need
|
2009-10-21 11:05:39 +04:00
|
|
|
// to make sure the shadow is updated to the new contents.
|
2009-12-12 00:53:22 +03:00
|
|
|
if ([[self window] isKindOfClass:[BaseWindow class]]) {
|
|
|
|
[(BaseWindow*)[self window] deferredInvalidateShadow];
|
|
|
|
}
|
2009-10-21 11:05:39 +04:00
|
|
|
}
|
2008-02-21 02:47:05 +03:00
|
|
|
|
2013-05-23 18:49:16 +04:00
|
|
|
- (void)drawRect:(NSRect)aRect inContext:(CGContextRef)aContext
|
2009-10-21 11:05:39 +04:00
|
|
|
{
|
2012-07-19 12:57:50 +04:00
|
|
|
if (!mGeckoChild || !mGeckoChild->IsVisible())
|
2002-02-17 22:09:07 +03:00
|
|
|
return;
|
2006-02-22 04:31:14 +03:00
|
|
|
|
2009-10-21 11:05:39 +04:00
|
|
|
#ifdef DEBUG_UPDATE
|
2015-11-10 08:37:32 +03:00
|
|
|
LayoutDeviceIntRect geckoBounds;
|
2006-02-22 04:31:14 +03:00
|
|
|
mGeckoChild->GetBounds(geckoBounds);
|
2006-08-31 02:06:44 +04:00
|
|
|
|
|
|
|
fprintf (stderr, "---- Update[%p][%p] [%f %f %f %f] cgc: %p\n gecko bounds: [%d %d %d %d]\n",
|
|
|
|
self, mGeckoChild,
|
2009-10-21 11:05:39 +04:00
|
|
|
aRect.origin.x, aRect.origin.y, aRect.size.width, aRect.size.height, aContext,
|
2006-08-31 02:06:44 +04:00
|
|
|
geckoBounds.x, geckoBounds.y, geckoBounds.width, geckoBounds.height);
|
2006-02-22 04:31:14 +03:00
|
|
|
|
2009-10-21 11:05:39 +04:00
|
|
|
CGAffineTransform xform = CGContextGetCTM(aContext);
|
2006-08-31 02:06:44 +04:00
|
|
|
fprintf (stderr, " xform in: [%f %f %f %f %f %f]\n", xform.a, xform.b, xform.c, xform.d, xform.tx, xform.ty);
|
|
|
|
#endif
|
2006-11-28 03:11:42 +03:00
|
|
|
|
2013-05-23 18:49:17 +04:00
|
|
|
if ([self isUsingOpenGL]) {
|
|
|
|
// For Gecko-initiated repaints in OpenGL mode, drawUsingOpenGL is
|
|
|
|
// directly called from a delayed perform callback - without going through
|
|
|
|
// drawRect.
|
|
|
|
// Paints that come through here are triggered by something that Cocoa
|
|
|
|
// controls, for example by window resizing or window focus changes.
|
|
|
|
|
|
|
|
// Since this view is usually declared as opaque, the window's pixel
|
|
|
|
// buffer may now contain garbage which we need to prevent from reaching
|
|
|
|
// the screen. The only place where garbage can show is in the window
|
2014-08-28 04:15:33 +04:00
|
|
|
// corners and the vibrant regions of the window - the rest of the window
|
|
|
|
// is covered by opaque content in our OpenGL surface.
|
|
|
|
// So we need to clear the pixel buffer contents in these areas.
|
|
|
|
mGeckoChild->ClearVibrantAreas();
|
2013-05-23 18:49:17 +04:00
|
|
|
[self clearCorners];
|
|
|
|
|
|
|
|
// Do GL composition and return.
|
|
|
|
[self drawUsingOpenGL];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-05-24 01:12:29 +04:00
|
|
|
PROFILER_LABEL("ChildView", "drawRect",
|
|
|
|
js::ProfileEntry::Category::GRAPHICS);
|
2009-07-22 04:44:55 +04:00
|
|
|
|
2012-09-29 15:36:09 +04:00
|
|
|
// The CGContext that drawRect supplies us with comes with a transform that
|
|
|
|
// scales one user space unit to one Cocoa point, which can consist of
|
|
|
|
// multiple dev pixels. But Gecko expects its supplied context to be scaled
|
|
|
|
// to device pixels, so we need to reverse the scaling.
|
2012-11-06 21:01:58 +04:00
|
|
|
double scale = mGeckoChild->BackingScaleFactor();
|
2013-05-23 18:49:17 +04:00
|
|
|
CGContextSaveGState(aContext);
|
2012-11-06 21:01:58 +04:00
|
|
|
CGContextScaleCTM(aContext, 1.0 / scale, 1.0 / scale);
|
|
|
|
|
|
|
|
NSSize viewSize = [self bounds].size;
|
|
|
|
nsIntSize backingSize(viewSize.width * scale, viewSize.height * scale);
|
|
|
|
|
2013-05-23 18:49:17 +04:00
|
|
|
CGContextSaveGState(aContext);
|
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
LayoutDeviceIntRegion region = [self nativeDirtyRegionWithBoundingRect:aRect];
|
2013-06-20 16:59:16 +04:00
|
|
|
|
2013-05-23 18:49:17 +04:00
|
|
|
// Create Cairo objects.
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<gfxQuartzSurface> targetSurface;
|
2012-11-06 21:01:58 +04:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<gfx::DrawTarget> dt =
|
2015-04-14 18:40:53 +03:00
|
|
|
gfx::Factory::CreateDrawTargetForCairoCGContext(aContext,
|
|
|
|
gfx::IntSize(backingSize.width,
|
|
|
|
backingSize.height));
|
2016-04-12 22:18:11 +03:00
|
|
|
if (!dt || !dt->IsValid()) {
|
|
|
|
// This used to be an assertion, so keep crashing in nightly+aurora
|
|
|
|
gfxDevCrash(mozilla::gfx::LogReason::InvalidContext) << "Cannot create target with CreateDrawTargetForCairoCGContext " << backingSize;
|
|
|
|
return;
|
|
|
|
}
|
2015-04-14 18:40:53 +03:00
|
|
|
dt->AddUserData(&gfxContext::sDontUseAsSourceKey, dt, nullptr);
|
2016-04-12 22:18:11 +03:00
|
|
|
RefPtr<gfxContext> targetContext = gfxContext::ForDrawTarget(dt);
|
|
|
|
MOZ_ASSERT(targetContext); // already checked the draw target above
|
2012-11-06 21:01:58 +04:00
|
|
|
|
2009-10-21 11:05:39 +04:00
|
|
|
// Set up the clip region.
|
2010-03-01 11:03:49 +03:00
|
|
|
targetContext->NewPath();
|
2016-01-19 04:20:59 +03:00
|
|
|
for (auto iter = region.RectIter(); !iter.Done(); iter.Next()) {
|
|
|
|
const LayoutDeviceIntRect& r = iter.Get();
|
|
|
|
targetContext->Rectangle(gfxRect(r.x, r.y, r.width, r.height));
|
2009-10-21 11:05:39 +04:00
|
|
|
}
|
|
|
|
targetContext->Clip();
|
|
|
|
|
2008-04-08 08:38:52 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2013-05-10 01:02:49 +04:00
|
|
|
bool painted = false;
|
2014-01-23 22:26:41 +04:00
|
|
|
if (mGeckoChild->GetLayerManager()->GetBackendType() == LayersBackend::LAYERS_BASIC) {
|
2010-07-16 01:08:04 +04:00
|
|
|
nsBaseWidget::AutoLayerManagerSetup
|
2014-01-23 22:26:41 +04:00
|
|
|
setupLayerManager(mGeckoChild, targetContext, BufferMode::BUFFER_NONE);
|
2015-12-03 08:45:41 +03:00
|
|
|
painted = mGeckoChild->PaintWindow(region);
|
2014-01-23 22:26:41 +04:00
|
|
|
} else if (mGeckoChild->GetLayerManager()->GetBackendType() == LayersBackend::LAYERS_CLIENT) {
|
2013-05-10 01:02:49 +04:00
|
|
|
// We only need this so that we actually get DidPaintWindow fired
|
2015-12-03 08:45:41 +03:00
|
|
|
painted = mGeckoChild->PaintWindow(region);
|
2010-03-01 11:03:49 +03:00
|
|
|
}
|
|
|
|
|
2013-05-23 18:49:17 +04:00
|
|
|
targetContext = nullptr;
|
|
|
|
targetSurface = nullptr;
|
|
|
|
|
|
|
|
CGContextRestoreGState(aContext);
|
|
|
|
|
|
|
|
// Undo the scale transform so that from now on the context is in
|
|
|
|
// CocoaPoints again.
|
|
|
|
CGContextRestoreGState(aContext);
|
|
|
|
|
2009-11-06 13:17:45 +03:00
|
|
|
if (!painted && [self isOpaque]) {
|
|
|
|
// Gecko refused to draw, but we've claimed to be opaque, so we have to
|
|
|
|
// draw something--fill with white.
|
|
|
|
CGContextSetRGBFillColor(aContext, 1, 1, 1, 1);
|
2012-09-29 15:36:09 +04:00
|
|
|
CGContextFillRect(aContext, NSRectToCGRect(aRect));
|
2009-11-06 13:17:45 +03:00
|
|
|
}
|
2010-01-13 19:08:06 +03:00
|
|
|
|
2013-05-23 18:49:17 +04:00
|
|
|
if ([self isCoveringTitlebar]) {
|
2013-12-17 20:11:13 +04:00
|
|
|
[self drawTitleString];
|
2013-05-23 18:49:17 +04:00
|
|
|
[self drawTitlebarHighlight];
|
|
|
|
[self maskTopCornersInContext:aContext];
|
|
|
|
}
|
2006-08-31 02:06:44 +04:00
|
|
|
|
|
|
|
#ifdef DEBUG_UPDATE
|
|
|
|
fprintf (stderr, "---- update done ----\n");
|
|
|
|
|
2007-01-31 21:43:34 +03:00
|
|
|
#if 0
|
2009-10-21 11:05:39 +04:00
|
|
|
CGContextSetRGBStrokeColor (aContext,
|
2006-08-31 02:06:44 +04:00
|
|
|
((((unsigned long)self) & 0xff)) / 255.0,
|
|
|
|
((((unsigned long)self) & 0xff00) >> 8) / 255.0,
|
|
|
|
((((unsigned long)self) & 0xff0000) >> 16) / 255.0,
|
|
|
|
0.5);
|
2012-09-29 15:36:09 +04:00
|
|
|
#endif
|
2009-10-21 11:05:39 +04:00
|
|
|
CGContextSetRGBStrokeColor(aContext, 1, 0, 0, 0.8);
|
|
|
|
CGContextSetLineWidth(aContext, 4.0);
|
2012-09-29 15:36:09 +04:00
|
|
|
CGContextStrokeRect(aContext, NSRectToCGRect(aRect));
|
2006-08-31 02:06:44 +04:00
|
|
|
#endif
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
2013-05-23 18:55:50 +04:00
|
|
|
- (BOOL)isUsingMainThreadOpenGL
|
2013-03-05 19:21:28 +04:00
|
|
|
{
|
|
|
|
if (!mGeckoChild || ![self window])
|
|
|
|
return NO;
|
|
|
|
|
2014-01-23 22:26:41 +04:00
|
|
|
return mGeckoChild->GetLayerManager(nullptr)->GetBackendType() == mozilla::layers::LayersBackend::LAYERS_OPENGL;
|
2013-03-05 19:21:28 +04:00
|
|
|
}
|
|
|
|
|
2013-05-23 18:55:50 +04:00
|
|
|
- (BOOL)isUsingOpenGL
|
|
|
|
{
|
|
|
|
if (!mGeckoChild || ![self window])
|
|
|
|
return NO;
|
|
|
|
|
2013-10-09 18:39:22 +04:00
|
|
|
return mGLContext || mUsingOMTCompositor || [self isUsingMainThreadOpenGL];
|
2013-05-23 18:55:50 +04:00
|
|
|
}
|
|
|
|
|
2013-03-05 19:21:28 +04:00
|
|
|
- (void)drawUsingOpenGL
|
|
|
|
{
|
2014-05-24 01:12:29 +04:00
|
|
|
PROFILER_LABEL("ChildView", "drawUsingOpenGL",
|
|
|
|
js::ProfileEntry::Category::GRAPHICS);
|
2013-03-05 19:21:28 +04:00
|
|
|
|
|
|
|
if (![self isUsingOpenGL] || !mGeckoChild->IsVisible())
|
|
|
|
return;
|
|
|
|
|
|
|
|
mWaitingForPaint = NO;
|
|
|
|
|
2015-11-26 07:32:47 +03:00
|
|
|
LayoutDeviceIntRect geckoBounds;
|
|
|
|
mGeckoChild->GetBounds(geckoBounds);
|
|
|
|
LayoutDeviceIntRegion region(geckoBounds);
|
2013-03-05 19:21:28 +04:00
|
|
|
|
2015-12-03 08:45:41 +03:00
|
|
|
mGeckoChild->PaintWindow(region);
|
2013-03-05 19:21:28 +04:00
|
|
|
|
|
|
|
// Force OpenGL to refresh the very first time we draw. This works around a
|
|
|
|
// Mac OS X bug that stops windows updating on OS X when we use OpenGL.
|
|
|
|
if (!mDidForceRefreshOpenGL) {
|
|
|
|
[self performSelector:@selector(forceRefreshOpenGL) withObject:nil afterDelay:0];
|
|
|
|
mDidForceRefreshOpenGL = YES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Called asynchronously after setNeedsDisplay in order to avoid entering the
|
|
|
|
// normal drawing machinery.
|
|
|
|
- (void)drawUsingOpenGLCallback
|
|
|
|
{
|
|
|
|
if (mWaitingForPaint) {
|
|
|
|
[self drawUsingOpenGL];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-27 19:49:02 +04:00
|
|
|
- (BOOL)hasRoundedBottomCorners
|
|
|
|
{
|
|
|
|
return [[self window] respondsToSelector:@selector(bottomCornerRounded)] &&
|
|
|
|
[[self window] bottomCornerRounded];
|
|
|
|
}
|
|
|
|
|
2013-05-23 18:49:17 +04:00
|
|
|
- (CGFloat)cornerRadius
|
2013-03-27 19:49:02 +04:00
|
|
|
{
|
2013-05-23 18:49:17 +04:00
|
|
|
NSView* frameView = [[[self window] contentView] superview];
|
|
|
|
if (!frameView || ![frameView respondsToSelector:@selector(roundedCornerRadius)])
|
2013-03-27 19:49:02 +04:00
|
|
|
return 4.0f;
|
2013-05-23 18:49:17 +04:00
|
|
|
return [frameView roundedCornerRadius];
|
2013-03-27 19:49:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Accelerated windows have two NSSurfaces:
|
|
|
|
// (1) The window's pixel buffer in the back and
|
|
|
|
// (2) the OpenGL view in the front.
|
2013-05-23 18:49:17 +04:00
|
|
|
// These two surfaces are composited by the window manager. Drawing into the
|
|
|
|
// CGContext which is provided by drawRect ends up in (1).
|
|
|
|
// When our window has rounded corners, the OpenGL view has transparent pixels
|
|
|
|
// in the corners. In these places the contents of the window's pixel buffer
|
|
|
|
// can show through. So we need to make sure that the pixel buffer is
|
2013-03-27 19:49:02 +04:00
|
|
|
// transparent in the corners so that no garbage reaches the screen.
|
|
|
|
// The contents of the pixel buffer in the rest of the window don't matter
|
2013-05-23 18:49:17 +04:00
|
|
|
// because they're covered by opaque pixels of the OpenGL context.
|
|
|
|
// Making the corners transparent works even though our window is
|
2013-03-27 19:49:02 +04:00
|
|
|
// declared "opaque" (in the NSWindow's isOpaque method).
|
2013-05-23 18:49:17 +04:00
|
|
|
- (void)clearCorners
|
2013-03-27 19:49:02 +04:00
|
|
|
{
|
2013-05-23 18:49:17 +04:00
|
|
|
CGFloat radius = [self cornerRadius];
|
|
|
|
CGFloat w = [self bounds].size.width, h = [self bounds].size.height;
|
2013-03-27 19:49:02 +04:00
|
|
|
[[NSColor clearColor] set];
|
2013-05-23 18:49:17 +04:00
|
|
|
|
|
|
|
if ([self isCoveringTitlebar]) {
|
|
|
|
NSRectFill(NSMakeRect(0, 0, radius, radius));
|
|
|
|
NSRectFill(NSMakeRect(w - radius, 0, radius, radius));
|
|
|
|
}
|
|
|
|
|
|
|
|
if ([self hasRoundedBottomCorners]) {
|
|
|
|
NSRectFill(NSMakeRect(0, h - radius, radius, radius));
|
|
|
|
NSRectFill(NSMakeRect(w - radius, h - radius, radius, radius));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is the analog of nsChildView::MaybeDrawRoundedCorners for CGContexts.
|
|
|
|
// We only need to mask the top corners here because Cocoa does the masking
|
|
|
|
// for the window's bottom corners automatically (starting with 10.7).
|
|
|
|
- (void)maskTopCornersInContext:(CGContextRef)aContext
|
|
|
|
{
|
|
|
|
CGFloat radius = [self cornerRadius];
|
|
|
|
int32_t devPixelCornerRadius = mGeckoChild->CocoaPointsToDevPixels(radius);
|
|
|
|
|
|
|
|
// First make sure that mTopLeftCornerMask is set up.
|
|
|
|
if (!mTopLeftCornerMask ||
|
|
|
|
int32_t(CGImageGetWidth(mTopLeftCornerMask)) != devPixelCornerRadius) {
|
|
|
|
CGImageRelease(mTopLeftCornerMask);
|
|
|
|
CGColorSpaceRef rgb = CGColorSpaceCreateDeviceRGB();
|
|
|
|
CGContextRef imgCtx = CGBitmapContextCreate(NULL,
|
|
|
|
devPixelCornerRadius,
|
|
|
|
devPixelCornerRadius,
|
|
|
|
8, devPixelCornerRadius * 4,
|
|
|
|
rgb, kCGImageAlphaPremultipliedFirst);
|
|
|
|
CGColorSpaceRelease(rgb);
|
|
|
|
DrawTopLeftCornerMask(imgCtx, devPixelCornerRadius);
|
|
|
|
mTopLeftCornerMask = CGBitmapContextCreateImage(imgCtx);
|
|
|
|
CGContextRelease(imgCtx);
|
|
|
|
}
|
|
|
|
|
|
|
|
// kCGBlendModeDestinationIn is the secret sauce which allows us to erase
|
|
|
|
// already painted pixels. It's defined as R = D * Sa: multiply all channels
|
|
|
|
// of the destination pixel with the alpha of the source pixel. In our case,
|
|
|
|
// the source is mTopLeftCornerMask.
|
|
|
|
CGContextSaveGState(aContext);
|
|
|
|
CGContextSetBlendMode(aContext, kCGBlendModeDestinationIn);
|
|
|
|
|
|
|
|
CGRect destRect = CGRectMake(0, 0, radius, radius);
|
|
|
|
|
|
|
|
// Erase the top left corner...
|
|
|
|
CGContextDrawImage(aContext, destRect, mTopLeftCornerMask);
|
|
|
|
|
|
|
|
// ... and the top right corner.
|
|
|
|
CGContextTranslateCTM(aContext, [self bounds].size.width, 0);
|
|
|
|
CGContextScaleCTM(aContext, -1, 1);
|
|
|
|
CGContextDrawImage(aContext, destRect, mTopLeftCornerMask);
|
|
|
|
|
|
|
|
CGContextRestoreGState(aContext);
|
|
|
|
}
|
|
|
|
|
2013-12-17 20:11:13 +04:00
|
|
|
- (void)drawTitleString
|
|
|
|
{
|
2013-12-17 20:19:25 +04:00
|
|
|
BaseWindow* window = (BaseWindow*)[self window];
|
|
|
|
if (![window wantsTitleDrawn]) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
NSView* frameView = [[window contentView] superview];
|
2013-12-17 20:11:13 +04:00
|
|
|
if (![frameView respondsToSelector:@selector(_drawTitleBar:)]) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
NSGraphicsContext* oldContext = [NSGraphicsContext currentContext];
|
|
|
|
CGContextRef ctx = (CGContextRef)[oldContext graphicsPort];
|
|
|
|
CGContextSaveGState(ctx);
|
|
|
|
if ([oldContext isFlipped] != [frameView isFlipped]) {
|
|
|
|
CGContextTranslateCTM(ctx, 0, [self bounds].size.height);
|
|
|
|
CGContextScaleCTM(ctx, 1, -1);
|
|
|
|
}
|
|
|
|
[NSGraphicsContext setCurrentContext:[NSGraphicsContext graphicsContextWithGraphicsPort:ctx flipped:[frameView isFlipped]]];
|
|
|
|
[frameView _drawTitleBar:[frameView bounds]];
|
|
|
|
CGContextRestoreGState(ctx);
|
|
|
|
[NSGraphicsContext setCurrentContext:oldContext];
|
|
|
|
}
|
|
|
|
|
2013-05-23 18:49:17 +04:00
|
|
|
- (void)drawTitlebarHighlight
|
|
|
|
{
|
|
|
|
DrawTitlebarHighlight([self bounds].size, [self cornerRadius],
|
|
|
|
mGeckoChild->DevPixelsToCocoaPoints(1));
|
2013-03-27 19:49:02 +04:00
|
|
|
}
|
|
|
|
|
2011-01-26 00:21:35 +03:00
|
|
|
- (void)releaseWidgets:(NSArray*)aWidgetArray
|
|
|
|
{
|
|
|
|
if (!aWidgetArray) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
NSInteger count = [aWidgetArray count];
|
|
|
|
for (NSInteger i = 0; i < count; ++i) {
|
|
|
|
NSNumber* pointer = (NSNumber*) [aWidgetArray objectAtIndex:i];
|
|
|
|
nsIWidget* widget = (nsIWidget*) [pointer unsignedIntegerValue];
|
|
|
|
NS_RELEASE(widget);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-14 02:03:46 +03:00
|
|
|
- (void)viewWillDraw
|
|
|
|
{
|
2009-12-11 22:31:42 +03:00
|
|
|
if (mGeckoChild) {
|
2011-01-26 00:21:35 +03:00
|
|
|
// The OS normally *will* draw our NSWindow, no matter what we do here.
|
|
|
|
// But Gecko can delete our parent widget(s) (along with mGeckoChild)
|
2012-08-15 22:52:42 +04:00
|
|
|
// while processing a paint request, which closes our NSWindow and
|
2011-01-26 00:21:35 +03:00
|
|
|
// makes the OS throw an NSInternalInconsistencyException assertion when
|
|
|
|
// it tries to draw it. Sometimes the OS also aborts the browser process.
|
|
|
|
// So we need to retain our parent(s) here and not release it/them until
|
|
|
|
// the next time through the main thread's run loop. When we do this we
|
|
|
|
// also need to retain and release mGeckoChild, which holds a strong
|
|
|
|
// reference to us (otherwise we might have been deleted by the time
|
|
|
|
// releaseWidgets: is called on us). See bug 550392.
|
|
|
|
nsIWidget* parent = mGeckoChild->GetParent();
|
|
|
|
if (parent) {
|
|
|
|
NSMutableArray* widgetArray = [NSMutableArray arrayWithCapacity:3];
|
|
|
|
while (parent) {
|
|
|
|
NS_ADDREF(parent);
|
|
|
|
[widgetArray addObject:[NSNumber numberWithUnsignedInteger:(NSUInteger)parent]];
|
|
|
|
parent = parent->GetParent();
|
|
|
|
}
|
|
|
|
NS_ADDREF(mGeckoChild);
|
|
|
|
[widgetArray addObject:[NSNumber numberWithUnsignedInteger:(NSUInteger)mGeckoChild]];
|
|
|
|
[self performSelector:@selector(releaseWidgets:)
|
|
|
|
withObject:widgetArray
|
|
|
|
afterDelay:0];
|
|
|
|
}
|
2012-08-15 22:52:42 +04:00
|
|
|
|
2013-06-20 16:59:16 +04:00
|
|
|
if ([self isUsingOpenGL]) {
|
2014-01-23 22:26:41 +04:00
|
|
|
if (mGeckoChild->GetLayerManager()->GetBackendType() == LayersBackend::LAYERS_CLIENT) {
|
2013-06-20 17:01:20 +04:00
|
|
|
ClientLayerManager *manager = static_cast<ClientLayerManager*>(mGeckoChild->GetLayerManager());
|
2013-11-27 19:19:34 +04:00
|
|
|
manager->AsShadowForwarder()->WindowOverlayChanged();
|
2013-06-20 17:01:20 +04:00
|
|
|
}
|
2013-06-20 16:59:16 +04:00
|
|
|
}
|
|
|
|
|
2013-02-26 01:18:48 +04:00
|
|
|
mGeckoChild->WillPaintWindow();
|
2009-12-11 22:31:42 +03:00
|
|
|
}
|
|
|
|
[super viewWillDraw];
|
2009-11-14 02:03:46 +03:00
|
|
|
}
|
|
|
|
|
2004-02-18 19:18:38 +03:00
|
|
|
#if USE_CLICK_HOLD_CONTEXTMENU
|
2004-01-15 22:01:49 +03:00
|
|
|
//
|
|
|
|
// -clickHoldCallback:
|
|
|
|
//
|
|
|
|
// called from a timer two seconds after a mouse down to see if we should display
|
|
|
|
// a context menu (click-hold). |anEvent| is the original mouseDown event. If we're
|
|
|
|
// still in that mouseDown by this time, put up the context menu, otherwise just
|
|
|
|
// fuhgeddaboutit. |anEvent| has been retained by the OS until after this callback
|
|
|
|
// fires so we're ok there.
|
|
|
|
//
|
2004-02-18 19:18:38 +03:00
|
|
|
// This code currently messes in a bunch of edge cases (bugs 234751, 232964, 232314)
|
|
|
|
// so removing it until we get it straightened out.
|
|
|
|
//
|
2004-01-15 22:01:49 +03:00
|
|
|
- (void)clickHoldCallback:(id)theEvent;
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2004-01-15 22:01:49 +03:00
|
|
|
if( theEvent == [NSApp currentEvent] ) {
|
|
|
|
// we're still in the middle of the same mousedown event here, activate
|
|
|
|
// click-hold context menu by triggering the right mouseDown action.
|
|
|
|
NSEvent* clickHoldEvent = [NSEvent mouseEventWithType:NSRightMouseDown
|
|
|
|
location:[theEvent locationInWindow]
|
2010-02-24 02:30:39 +03:00
|
|
|
modifierFlags:[theEvent modifierFlags]
|
2004-01-15 22:01:49 +03:00
|
|
|
timestamp:[theEvent timestamp]
|
|
|
|
windowNumber:[theEvent windowNumber]
|
|
|
|
context:[theEvent context]
|
|
|
|
eventNumber:[theEvent eventNumber]
|
|
|
|
clickCount:[theEvent clickCount]
|
|
|
|
pressure:[theEvent pressure]];
|
|
|
|
[self rightMouseDown:clickHoldEvent];
|
|
|
|
}
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2004-01-15 22:01:49 +03:00
|
|
|
}
|
2004-02-18 19:18:38 +03:00
|
|
|
#endif
|
2004-01-15 22:01:49 +03:00
|
|
|
|
2007-07-18 00:29:39 +04:00
|
|
|
// If we've just created a non-native context menu, we need to mark it as
|
|
|
|
// such and let the OS (and other programs) know when it opens and closes
|
|
|
|
// (this is how the OS knows to close other programs' context menus when
|
|
|
|
// ours open). We send the initial notification here, but others are sent
|
|
|
|
// in nsCocoaWindow::Show().
|
|
|
|
- (void)maybeInitContextMenuTracking
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2011-06-22 01:00:47 +04:00
|
|
|
#ifdef MOZ_USE_NATIVE_POPUP_WINDOWS
|
|
|
|
return;
|
|
|
|
#endif /* MOZ_USE_NATIVE_POPUP_WINDOWS */
|
2008-03-04 11:06:47 +03:00
|
|
|
|
2012-10-26 17:15:22 +04:00
|
|
|
nsIRollupListener* rollupListener = nsBaseWidget::GetActiveRollupListener();
|
2012-12-31 21:27:04 +04:00
|
|
|
NS_ENSURE_TRUE_VOID(rollupListener);
|
2012-10-26 17:15:22 +04:00
|
|
|
nsCOMPtr<nsIWidget> widget = rollupListener->GetRollupWidget();
|
2012-12-31 21:27:04 +04:00
|
|
|
NS_ENSURE_TRUE_VOID(widget);
|
2012-10-26 17:15:22 +04:00
|
|
|
|
|
|
|
NSWindow *popupWindow = (NSWindow*)widget->GetNativeData(NS_NATIVE_WINDOW);
|
2007-11-07 10:53:24 +03:00
|
|
|
if (!popupWindow || ![popupWindow isKindOfClass:[PopupWindow class]])
|
2007-07-18 00:29:39 +04:00
|
|
|
return;
|
2007-11-07 10:53:24 +03:00
|
|
|
|
2007-07-18 00:29:39 +04:00
|
|
|
[[NSDistributedNotificationCenter defaultCenter]
|
|
|
|
postNotificationName:@"com.apple.HIToolbox.beginMenuTrackingNotification"
|
|
|
|
object:@"org.mozilla.gecko.PopupWindow"];
|
2007-11-07 10:53:24 +03:00
|
|
|
[(PopupWindow*)popupWindow setIsContextMenu:YES];
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2007-07-18 00:29:39 +04:00
|
|
|
}
|
|
|
|
|
2009-05-15 00:13:22 +04:00
|
|
|
// Returns true if the event should no longer be processed, false otherwise.
|
|
|
|
// This does not return whether or not anything was rolled up.
|
2007-11-27 02:19:04 +03:00
|
|
|
- (BOOL)maybeRollup:(NSEvent*)theEvent
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
2009-05-15 00:13:22 +04:00
|
|
|
BOOL consumeEvent = NO;
|
|
|
|
|
2012-10-26 17:15:22 +04:00
|
|
|
nsIRollupListener* rollupListener = nsBaseWidget::GetActiveRollupListener();
|
2012-12-31 21:27:04 +04:00
|
|
|
NS_ENSURE_TRUE(rollupListener, false);
|
2012-10-26 17:15:22 +04:00
|
|
|
nsCOMPtr<nsIWidget> rollupWidget = rollupListener->GetRollupWidget();
|
|
|
|
if (rollupWidget) {
|
|
|
|
NSWindow* currentPopup = static_cast<NSWindow*>(rollupWidget->GetNativeData(NS_NATIVE_WINDOW));
|
2007-12-06 02:17:08 +03:00
|
|
|
if (!nsCocoaUtils::IsEventOverWindow(theEvent, currentPopup)) {
|
2009-05-15 00:13:22 +04:00
|
|
|
// event is not over the rollup window, default is to roll up
|
2011-09-29 10:19:26 +04:00
|
|
|
bool shouldRollup = true;
|
2009-05-15 00:13:22 +04:00
|
|
|
|
|
|
|
// check to see if scroll events should roll up the popup
|
2007-11-27 02:19:04 +03:00
|
|
|
if ([theEvent type] == NSScrollWheel) {
|
2012-10-26 17:15:22 +04:00
|
|
|
shouldRollup = rollupListener->ShouldRollupOnMouseWheelEvent();
|
2013-03-08 23:48:48 +04:00
|
|
|
// consume scroll events that aren't over the popup
|
|
|
|
// unless the popup is an arrow panel
|
|
|
|
consumeEvent = rollupListener->ShouldConsumeOnMouseWheelEvent();
|
2007-11-27 02:19:04 +03:00
|
|
|
}
|
2009-05-15 00:13:22 +04:00
|
|
|
|
2007-11-27 02:19:04 +03:00
|
|
|
// if we're dealing with menus, we probably have submenus and
|
2008-04-07 03:52:05 +04:00
|
|
|
// we don't want to rollup if the click is in a parent menu of
|
2007-11-27 02:19:04 +03:00
|
|
|
// the current submenu
|
2012-09-28 10:57:33 +04:00
|
|
|
uint32_t popupsToRollup = UINT32_MAX;
|
2016-02-02 18:36:30 +03:00
|
|
|
AutoTArray<nsIWidget*, 5> widgetChain;
|
2012-10-26 17:15:22 +04:00
|
|
|
uint32_t sameTypeCount = rollupListener->GetSubmenuWidgetChain(&widgetChain);
|
|
|
|
for (uint32_t i = 0; i < widgetChain.Length(); i++) {
|
|
|
|
nsIWidget* widget = widgetChain[i];
|
|
|
|
NSWindow* currWindow = (NSWindow*)widget->GetNativeData(NS_NATIVE_WINDOW);
|
|
|
|
if (nsCocoaUtils::IsEventOverWindow(theEvent, currWindow)) {
|
|
|
|
// don't roll up if the mouse event occurred within a menu of the
|
|
|
|
// same type. If the mouse event occurred in a menu higher than
|
|
|
|
// that, roll up, but pass the number of popups to Rollup so
|
|
|
|
// that only those of the same type close up.
|
|
|
|
if (i < sameTypeCount) {
|
|
|
|
shouldRollup = false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
popupsToRollup = sameTypeCount;
|
2008-01-17 10:06:43 +03:00
|
|
|
}
|
2012-10-26 17:15:22 +04:00
|
|
|
break;
|
2009-05-15 00:13:22 +04:00
|
|
|
}
|
|
|
|
}
|
2007-11-07 10:53:24 +03:00
|
|
|
|
2009-05-15 00:13:22 +04:00
|
|
|
if (shouldRollup) {
|
2013-11-04 20:22:24 +04:00
|
|
|
if ([theEvent type] == NSLeftMouseDown) {
|
|
|
|
NSPoint point = [NSEvent mouseLocation];
|
|
|
|
FlipCocoaScreenCoordinate(point);
|
|
|
|
nsIntPoint pos(point.x, point.y);
|
2015-01-08 04:52:20 +03:00
|
|
|
consumeEvent = (BOOL)rollupListener->Rollup(popupsToRollup, true, &pos, nullptr);
|
2013-11-04 20:22:24 +04:00
|
|
|
}
|
|
|
|
else {
|
2015-01-08 04:52:20 +03:00
|
|
|
consumeEvent = (BOOL)rollupListener->Rollup(popupsToRollup, true, nullptr, nullptr);
|
2013-11-04 20:22:24 +04:00
|
|
|
}
|
2006-04-12 19:10:00 +04:00
|
|
|
}
|
2006-04-06 23:14:02 +04:00
|
|
|
}
|
|
|
|
}
|
2007-11-27 02:19:04 +03:00
|
|
|
|
2009-05-15 00:13:22 +04:00
|
|
|
return consumeEvent;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(NO);
|
2007-11-27 02:19:04 +03:00
|
|
|
}
|
|
|
|
|
2008-10-24 00:15:20 +04:00
|
|
|
/*
|
2013-04-29 19:24:26 +04:00
|
|
|
* In OS X Mountain Lion and above, smart zoom gestures are implemented in
|
|
|
|
* smartMagnifyWithEvent. In OS X Lion, they are implemented in
|
|
|
|
* magnifyWithEvent. See inline comments for more info.
|
2008-10-24 00:15:20 +04:00
|
|
|
*
|
2013-04-29 19:24:26 +04:00
|
|
|
* The prototypes swipeWithEvent, beginGestureWithEvent, magnifyWithEvent,
|
|
|
|
* smartMagnifyWithEvent, rotateWithEvent, and endGestureWithEvent were
|
|
|
|
* obtained from the following links:
|
|
|
|
* https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ApplicationKit/Classes/NSResponder_Class/Reference/Reference.html
|
|
|
|
* https://developer.apple.com/library/mac/#releasenotes/Cocoa/AppKit.html
|
2008-10-24 00:15:20 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
- (void)swipeWithEvent:(NSEvent *)anEvent
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
|
|
|
if (!anEvent || !mGeckoChild)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
|
|
|
|
|
|
|
float deltaX = [anEvent deltaX]; // left=1.0, right=-1.0
|
|
|
|
float deltaY = [anEvent deltaY]; // up=1.0, down=-1.0
|
|
|
|
|
|
|
|
// Setup the "swipe" event.
|
2015-09-14 18:14:37 +03:00
|
|
|
WidgetSimpleGestureEvent geckoEvent(true, eSwipeGesture, mGeckoChild);
|
2009-01-03 15:40:26 +03:00
|
|
|
[self convertCocoaMouseEvent:anEvent toGeckoEvent:&geckoEvent];
|
2008-10-24 00:15:20 +04:00
|
|
|
|
|
|
|
// Record the left/right direction.
|
|
|
|
if (deltaX > 0.0)
|
|
|
|
geckoEvent.direction |= nsIDOMSimpleGestureEvent::DIRECTION_LEFT;
|
|
|
|
else if (deltaX < 0.0)
|
|
|
|
geckoEvent.direction |= nsIDOMSimpleGestureEvent::DIRECTION_RIGHT;
|
|
|
|
|
|
|
|
// Record the up/down direction.
|
|
|
|
if (deltaY > 0.0)
|
|
|
|
geckoEvent.direction |= nsIDOMSimpleGestureEvent::DIRECTION_UP;
|
|
|
|
else if (deltaY < 0.0)
|
|
|
|
geckoEvent.direction |= nsIDOMSimpleGestureEvent::DIRECTION_DOWN;
|
|
|
|
|
|
|
|
// Send the event.
|
|
|
|
mGeckoChild->DispatchWindowEvent(geckoEvent);
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)beginGestureWithEvent:(NSEvent *)anEvent
|
|
|
|
{
|
|
|
|
if (!anEvent)
|
|
|
|
return;
|
|
|
|
|
|
|
|
mGestureState = eGestureState_StartGesture;
|
|
|
|
mCumulativeMagnification = 0;
|
|
|
|
mCumulativeRotation = 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)magnifyWithEvent:(NSEvent *)anEvent
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
|
|
|
if (!anEvent || !mGeckoChild)
|
|
|
|
return;
|
|
|
|
|
2013-04-29 19:24:26 +04:00
|
|
|
/*
|
|
|
|
* In OS X 10.7.* (Lion), smart zoom events come through magnifyWithEvent,
|
|
|
|
* instead of smartMagnifyWithEvent. See bug 863841.
|
|
|
|
*/
|
|
|
|
if ([ChildView isLionSmartMagnifyEvent: anEvent]) {
|
|
|
|
[self smartMagnifyWithEvent: anEvent];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-10-24 00:15:20 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
|
|
|
|
|
|
|
float deltaZ = [anEvent deltaZ];
|
|
|
|
|
2015-08-26 15:56:59 +03:00
|
|
|
EventMessage msg;
|
2008-10-24 00:15:20 +04:00
|
|
|
switch (mGestureState) {
|
|
|
|
case eGestureState_StartGesture:
|
2015-09-14 18:14:37 +03:00
|
|
|
msg = eMagnifyGestureStart;
|
2008-10-24 00:15:20 +04:00
|
|
|
mGestureState = eGestureState_MagnifyGesture;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case eGestureState_MagnifyGesture:
|
2015-09-14 18:14:37 +03:00
|
|
|
msg = eMagnifyGestureUpdate;
|
2008-10-24 00:15:20 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case eGestureState_None:
|
|
|
|
case eGestureState_RotateGesture:
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup the event.
|
2014-02-15 05:06:06 +04:00
|
|
|
WidgetSimpleGestureEvent geckoEvent(true, msg, mGeckoChild);
|
|
|
|
geckoEvent.delta = deltaZ;
|
2009-01-03 15:40:26 +03:00
|
|
|
[self convertCocoaMouseEvent:anEvent toGeckoEvent:&geckoEvent];
|
2008-10-24 00:15:20 +04:00
|
|
|
|
|
|
|
// Send the event.
|
|
|
|
mGeckoChild->DispatchWindowEvent(geckoEvent);
|
|
|
|
|
|
|
|
// Keep track of the cumulative magnification for the final "magnify" event.
|
|
|
|
mCumulativeMagnification += deltaZ;
|
2014-04-23 03:23:18 +04:00
|
|
|
|
2008-10-24 00:15:20 +04:00
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
|
|
|
|
2013-04-29 19:24:26 +04:00
|
|
|
- (void)smartMagnifyWithEvent:(NSEvent *)anEvent
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
|
|
|
if (!anEvent || !mGeckoChild) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
|
|
|
|
|
|
|
// Setup the "double tap" event.
|
2015-09-14 18:14:36 +03:00
|
|
|
WidgetSimpleGestureEvent geckoEvent(true, eTapGesture, mGeckoChild);
|
2013-04-29 19:24:26 +04:00
|
|
|
[self convertCocoaMouseEvent:anEvent toGeckoEvent:&geckoEvent];
|
|
|
|
geckoEvent.clickCount = 1;
|
|
|
|
|
|
|
|
// Send the event.
|
|
|
|
mGeckoChild->DispatchWindowEvent(geckoEvent);
|
|
|
|
|
|
|
|
// Clear the gesture state
|
|
|
|
mGestureState = eGestureState_None;
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
|
|
|
|
2008-10-24 00:15:20 +04:00
|
|
|
- (void)rotateWithEvent:(NSEvent *)anEvent
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
|
|
|
if (!anEvent || !mGeckoChild)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
|
|
|
|
|
|
|
float rotation = [anEvent rotation];
|
|
|
|
|
2015-08-26 15:56:59 +03:00
|
|
|
EventMessage msg;
|
2008-10-24 00:15:20 +04:00
|
|
|
switch (mGestureState) {
|
|
|
|
case eGestureState_StartGesture:
|
2015-09-14 18:14:37 +03:00
|
|
|
msg = eRotateGestureStart;
|
2008-10-24 00:15:20 +04:00
|
|
|
mGestureState = eGestureState_RotateGesture;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case eGestureState_RotateGesture:
|
2015-09-14 18:14:36 +03:00
|
|
|
msg = eRotateGestureUpdate;
|
2008-10-24 00:15:20 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case eGestureState_None:
|
|
|
|
case eGestureState_MagnifyGesture:
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup the event.
|
2014-02-15 05:06:06 +04:00
|
|
|
WidgetSimpleGestureEvent geckoEvent(true, msg, mGeckoChild);
|
2009-01-03 15:40:26 +03:00
|
|
|
[self convertCocoaMouseEvent:anEvent toGeckoEvent:&geckoEvent];
|
2008-10-24 00:15:20 +04:00
|
|
|
geckoEvent.delta = -rotation;
|
|
|
|
if (rotation > 0.0) {
|
2009-04-02 23:34:31 +04:00
|
|
|
geckoEvent.direction = nsIDOMSimpleGestureEvent::ROTATION_COUNTERCLOCKWISE;
|
2008-10-24 00:15:20 +04:00
|
|
|
} else {
|
2009-04-02 23:34:31 +04:00
|
|
|
geckoEvent.direction = nsIDOMSimpleGestureEvent::ROTATION_CLOCKWISE;
|
2008-10-24 00:15:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Send the event.
|
|
|
|
mGeckoChild->DispatchWindowEvent(geckoEvent);
|
|
|
|
|
|
|
|
// Keep track of the cumulative rotation for the final "rotate" event.
|
|
|
|
mCumulativeRotation += rotation;
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)endGestureWithEvent:(NSEvent *)anEvent
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
|
|
|
if (!anEvent || !mGeckoChild) {
|
|
|
|
// Clear the gestures state if we cannot send an event.
|
|
|
|
mGestureState = eGestureState_None;
|
|
|
|
mCumulativeMagnification = 0.0;
|
|
|
|
mCumulativeRotation = 0.0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
|
|
|
|
|
|
|
switch (mGestureState) {
|
|
|
|
case eGestureState_MagnifyGesture:
|
|
|
|
{
|
|
|
|
// Setup the "magnify" event.
|
2015-09-14 18:14:37 +03:00
|
|
|
WidgetSimpleGestureEvent geckoEvent(true, eMagnifyGesture, mGeckoChild);
|
2014-02-15 05:06:06 +04:00
|
|
|
geckoEvent.delta = mCumulativeMagnification;
|
2009-01-03 15:40:26 +03:00
|
|
|
[self convertCocoaMouseEvent:anEvent toGeckoEvent:&geckoEvent];
|
2008-10-24 00:15:20 +04:00
|
|
|
|
|
|
|
// Send the event.
|
|
|
|
mGeckoChild->DispatchWindowEvent(geckoEvent);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case eGestureState_RotateGesture:
|
|
|
|
{
|
|
|
|
// Setup the "rotate" event.
|
2015-09-14 18:14:36 +03:00
|
|
|
WidgetSimpleGestureEvent geckoEvent(true, eRotateGesture, mGeckoChild);
|
2009-01-03 15:40:26 +03:00
|
|
|
[self convertCocoaMouseEvent:anEvent toGeckoEvent:&geckoEvent];
|
2008-10-24 00:15:20 +04:00
|
|
|
geckoEvent.delta = -mCumulativeRotation;
|
|
|
|
if (mCumulativeRotation > 0.0) {
|
2009-04-02 23:34:31 +04:00
|
|
|
geckoEvent.direction = nsIDOMSimpleGestureEvent::ROTATION_COUNTERCLOCKWISE;
|
2008-10-24 00:15:20 +04:00
|
|
|
} else {
|
2009-04-02 23:34:31 +04:00
|
|
|
geckoEvent.direction = nsIDOMSimpleGestureEvent::ROTATION_CLOCKWISE;
|
2008-10-24 00:15:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Send the event.
|
|
|
|
mGeckoChild->DispatchWindowEvent(geckoEvent);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case eGestureState_None:
|
|
|
|
case eGestureState_StartGesture:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear the gestures state.
|
|
|
|
mGestureState = eGestureState_None;
|
|
|
|
mCumulativeMagnification = 0.0;
|
|
|
|
mCumulativeRotation = 0.0;
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
|
|
|
|
2013-04-29 19:24:26 +04:00
|
|
|
+ (BOOL)isLionSmartMagnifyEvent:(NSEvent*)anEvent
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* On Lion, smart zoom events have type NSEventTypeGesture, subtype 0x16,
|
|
|
|
* whereas pinch zoom events have type NSEventTypeMagnify. So, use that to
|
|
|
|
* discriminate between the two. Smart zoom gestures do not call
|
|
|
|
* beginGestureWithEvent or endGestureWithEvent, so mGestureState is not
|
|
|
|
* changed. Documentation couldn't be found for the meaning of the subtype
|
|
|
|
* 0x16, but it will probably never change. See bug 863841.
|
|
|
|
*/
|
|
|
|
return nsCocoaFeatures::OnLionOrLater() &&
|
|
|
|
!nsCocoaFeatures::OnMountainLionOrLater() &&
|
|
|
|
[anEvent type] == NSEventTypeGesture &&
|
|
|
|
[anEvent subtype] == 0x16;
|
|
|
|
}
|
|
|
|
|
2015-08-27 21:20:56 +03:00
|
|
|
- (bool)shouldConsiderStartingSwipeFromEvent:(NSEvent*)anEvent
|
|
|
|
{
|
|
|
|
if (!nsCocoaFeatures::OnLionOrLater()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This method checks whether the AppleEnableSwipeNavigateWithScrolls global
|
|
|
|
// preference is set. If it isn't, fluid swipe tracking is disabled, and a
|
|
|
|
// horizontal two-finger gesture is always a scroll (even in Safari). This
|
|
|
|
// preference can't (currently) be set from the Preferences UI -- only using
|
|
|
|
// 'defaults write'.
|
|
|
|
if (![NSEvent isSwipeTrackingFromScrollEventsEnabled]) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only initiate horizontal tracking for gestures that have just begun --
|
|
|
|
// otherwise a scroll to one side of the page can have a swipe tacked on
|
|
|
|
// to it.
|
|
|
|
NSEventPhase eventPhase = nsCocoaUtils::EventPhase(anEvent);
|
|
|
|
if ([anEvent type] != NSScrollWheel ||
|
|
|
|
eventPhase != NSEventPhaseBegan ||
|
|
|
|
![anEvent hasPreciseScrollingDeltas]) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only initiate horizontal tracking for events whose horizontal element is
|
|
|
|
// at least eight times larger than its vertical element. This minimizes
|
|
|
|
// performance problems with vertical scrolls (by minimizing the possibility
|
|
|
|
// that they'll be misinterpreted as horizontal swipes), while still
|
|
|
|
// tolerating a small vertical element to a true horizontal swipe. The number
|
|
|
|
// '8' was arrived at by trial and error.
|
|
|
|
CGFloat deltaX = [anEvent scrollingDeltaX];
|
|
|
|
CGFloat deltaY = [anEvent scrollingDeltaY];
|
|
|
|
return std::abs(deltaX) > std::abs(deltaY) * 8;
|
|
|
|
}
|
|
|
|
|
2012-01-19 18:45:37 +04:00
|
|
|
- (void)setUsingOMTCompositor:(BOOL)aUseOMTC
|
|
|
|
{
|
|
|
|
mUsingOMTCompositor = aUseOMTC;
|
|
|
|
}
|
|
|
|
|
2009-12-12 00:57:40 +03:00
|
|
|
// Returning NO from this method only disallows ordering on mousedown - in order
|
|
|
|
// to prevent it for mouseup too, we need to call [NSApp preventWindowOrdering]
|
|
|
|
// when handling the mousedown event.
|
|
|
|
- (BOOL)shouldDelayWindowOrderingForEvent:(NSEvent*)aEvent
|
|
|
|
{
|
|
|
|
// Always using system-provided window ordering for normal windows.
|
|
|
|
if (![[self window] isKindOfClass:[PopupWindow class]])
|
|
|
|
return NO;
|
|
|
|
|
2010-07-16 16:48:02 +04:00
|
|
|
// Don't reorder when we don't have a parent window, like when we're a
|
|
|
|
// context menu or a tooltip.
|
|
|
|
return ![[self window] parentWindow];
|
2009-12-12 00:57:40 +03:00
|
|
|
}
|
|
|
|
|
2007-11-27 02:19:04 +03:00
|
|
|
- (void)mouseDown:(NSEvent*)theEvent
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2009-12-12 00:57:40 +03:00
|
|
|
if ([self shouldDelayWindowOrderingForEvent:theEvent]) {
|
|
|
|
[NSApp preventWindowOrdering];
|
|
|
|
}
|
|
|
|
|
2008-04-07 03:52:05 +04:00
|
|
|
// If we've already seen this event due to direct dispatch from menuForEvent:
|
|
|
|
// just bail; if not, remember it.
|
|
|
|
if (mLastMouseDownEvent == theEvent) {
|
|
|
|
[mLastMouseDownEvent release];
|
|
|
|
mLastMouseDownEvent = nil;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
[mLastMouseDownEvent release];
|
|
|
|
mLastMouseDownEvent = [theEvent retain];
|
|
|
|
}
|
|
|
|
|
2009-11-06 13:21:41 +03:00
|
|
|
[gLastDragMouseDownEvent release];
|
|
|
|
gLastDragMouseDownEvent = [theEvent retain];
|
|
|
|
|
2010-07-16 16:48:02 +04:00
|
|
|
// We need isClickThrough because at this point the window we're in might
|
|
|
|
// already have become main, so the check for isMainWindow in
|
|
|
|
// WindowAcceptsEvent isn't enough. It also has to check isClickThrough.
|
|
|
|
BOOL isClickThrough = (theEvent == mClickThroughMouseDownEvent);
|
|
|
|
[mClickThroughMouseDownEvent release];
|
|
|
|
mClickThroughMouseDownEvent = nil;
|
|
|
|
|
2008-04-08 08:38:52 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2008-01-16 02:11:55 +03:00
|
|
|
|
2009-09-23 06:31:37 +04:00
|
|
|
if ([self maybeRollup:theEvent] ||
|
2010-07-16 16:48:02 +04:00
|
|
|
!ChildViewMouseTracker::WindowAcceptsEvent([self window], theEvent, self, isClickThrough)) {
|
|
|
|
// Remember blocking because that means we want to block mouseup as well.
|
|
|
|
mBlockedLastMouseDown = YES;
|
2007-11-27 02:19:04 +03:00
|
|
|
return;
|
2010-07-16 16:48:02 +04:00
|
|
|
}
|
2007-11-27 02:19:04 +03:00
|
|
|
|
2004-02-18 19:18:38 +03:00
|
|
|
#if USE_CLICK_HOLD_CONTEXTMENU
|
2004-01-15 22:01:49 +03:00
|
|
|
// fire off timer to check for click-hold after two seconds. retains |theEvent|
|
|
|
|
[self performSelector:@selector(clickHoldCallback:) withObject:theEvent afterDelay:2.0];
|
2004-02-18 19:18:38 +03:00
|
|
|
#endif
|
2004-01-15 22:01:49 +03:00
|
|
|
|
2007-04-20 00:18:46 +04:00
|
|
|
// in order to send gecko events we'll need a gecko widget
|
|
|
|
if (!mGeckoChild)
|
|
|
|
return;
|
2016-04-27 15:14:43 +03:00
|
|
|
if (mTextInputHandler->OnHandleEvent(theEvent)) {
|
|
|
|
return;
|
|
|
|
}
|
2007-04-20 00:18:46 +04:00
|
|
|
|
2010-02-24 02:30:39 +03:00
|
|
|
NSUInteger modifierFlags = [theEvent modifierFlags];
|
2009-08-27 04:29:47 +04:00
|
|
|
|
2015-08-29 02:58:30 +03:00
|
|
|
WidgetMouseEvent geckoEvent(true, eMouseDown, mGeckoChild,
|
2013-10-02 10:38:27 +04:00
|
|
|
WidgetMouseEvent::eReal);
|
2007-06-13 00:28:26 +04:00
|
|
|
[self convertCocoaMouseEvent:theEvent toGeckoEvent:&geckoEvent];
|
2010-07-16 16:48:02 +04:00
|
|
|
|
|
|
|
NSInteger clickCount = [theEvent clickCount];
|
|
|
|
if (mBlockedLastMouseDown && clickCount > 1) {
|
|
|
|
// Don't send a double click if the first click of the double click was
|
|
|
|
// blocked.
|
|
|
|
clickCount--;
|
|
|
|
}
|
|
|
|
geckoEvent.clickCount = clickCount;
|
|
|
|
|
2009-08-27 04:29:47 +04:00
|
|
|
if (modifierFlags & NSControlKeyMask)
|
2013-10-02 10:38:27 +04:00
|
|
|
geckoEvent.button = WidgetMouseEvent::eRightButton;
|
2006-12-05 21:38:17 +03:00
|
|
|
else
|
2013-10-02 10:38:27 +04:00
|
|
|
geckoEvent.button = WidgetMouseEvent::eLeftButton;
|
2002-04-27 04:19:49 +04:00
|
|
|
|
2016-03-11 02:25:48 +03:00
|
|
|
mGeckoChild->DispatchInputEvent(&geckoEvent);
|
2010-07-16 16:48:02 +04:00
|
|
|
mBlockedLastMouseDown = NO;
|
2007-04-20 00:18:46 +04:00
|
|
|
|
2005-06-26 07:25:52 +04:00
|
|
|
// XXX maybe call markedTextSelectionChanged:client: here?
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2005-06-26 07:25:52 +04:00
|
|
|
}
|
2001-11-06 18:35:24 +03:00
|
|
|
|
|
|
|
- (void)mouseUp:(NSEvent *)theEvent
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2010-07-16 16:48:02 +04:00
|
|
|
if (!mGeckoChild || mBlockedLastMouseDown)
|
2007-06-13 00:28:26 +04:00
|
|
|
return;
|
2016-04-27 15:14:43 +03:00
|
|
|
if (mTextInputHandler->OnHandleEvent(theEvent)) {
|
|
|
|
return;
|
|
|
|
}
|
2007-06-13 00:28:26 +04:00
|
|
|
|
2010-01-22 23:57:04 +03:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
|
|
|
|
2015-08-29 02:58:30 +03:00
|
|
|
WidgetMouseEvent geckoEvent(true, eMouseUp, mGeckoChild,
|
2013-10-02 10:38:27 +04:00
|
|
|
WidgetMouseEvent::eReal);
|
2007-06-13 00:28:26 +04:00
|
|
|
[self convertCocoaMouseEvent:theEvent toGeckoEvent:&geckoEvent];
|
2010-02-24 02:30:39 +03:00
|
|
|
if ([theEvent modifierFlags] & NSControlKeyMask)
|
2013-10-02 10:38:27 +04:00
|
|
|
geckoEvent.button = WidgetMouseEvent::eRightButton;
|
2008-09-15 16:50:59 +04:00
|
|
|
else
|
2013-10-02 10:38:27 +04:00
|
|
|
geckoEvent.button = WidgetMouseEvent::eLeftButton;
|
2002-04-27 04:19:49 +04:00
|
|
|
|
2010-03-03 01:04:13 +03:00
|
|
|
// This might destroy our widget (and null out mGeckoChild).
|
2015-04-22 00:44:10 +03:00
|
|
|
bool defaultPrevented =
|
2016-03-11 02:25:48 +03:00
|
|
|
(mGeckoChild->DispatchInputEvent(&geckoEvent) == nsEventStatus_eConsumeNoDefault);
|
2013-05-21 01:38:54 +04:00
|
|
|
|
|
|
|
// Check to see if we are double-clicking in the titlebar.
|
|
|
|
CGFloat locationInTitlebar = [[self window] frame].size.height - [theEvent locationInWindow].y;
|
2016-04-18 17:09:02 +03:00
|
|
|
LayoutDeviceIntPoint pos = geckoEvent.mRefPoint;
|
2013-05-21 01:38:54 +04:00
|
|
|
if (!defaultPrevented && [theEvent clickCount] == 2 &&
|
2014-09-25 01:15:28 +04:00
|
|
|
mGeckoChild->GetDraggableRegion().Contains(pos.x, pos.y) &&
|
2013-05-21 01:38:54 +04:00
|
|
|
[[self window] isKindOfClass:[ToolbarWindow class]] &&
|
|
|
|
(locationInTitlebar < [(ToolbarWindow*)[self window] titlebarHeight] ||
|
|
|
|
locationInTitlebar < [(ToolbarWindow*)[self window] unifiedToolbarHeight])) {
|
2014-11-25 00:53:33 +03:00
|
|
|
if ([self shouldZoomOnDoubleClick]) {
|
|
|
|
[[self window] performZoom:nil];
|
|
|
|
} else if ([self shouldMinimizeOnTitlebarDoubleClick]) {
|
|
|
|
NSButton *minimizeButton = [[self window] standardWindowButton:NSWindowMiniaturizeButton];
|
|
|
|
[minimizeButton performClick:self];
|
|
|
|
}
|
2013-05-21 01:38:54 +04:00
|
|
|
}
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2005-06-26 07:25:52 +04:00
|
|
|
}
|
2001-11-06 18:35:24 +03:00
|
|
|
|
2009-09-23 06:31:37 +04:00
|
|
|
- (void)sendMouseEnterOrExitEvent:(NSEvent*)aEvent
|
|
|
|
enter:(BOOL)aEnter
|
2013-10-02 10:38:27 +04:00
|
|
|
type:(WidgetMouseEvent::exitType)aType
|
2007-04-11 00:07:49 +04:00
|
|
|
{
|
2009-09-23 06:31:37 +04:00
|
|
|
if (!mGeckoChild)
|
|
|
|
return;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
2009-09-23 06:31:37 +04:00
|
|
|
NSPoint windowEventLocation = nsCocoaUtils::EventLocationForWindow(aEvent, [self window]);
|
|
|
|
NSPoint localEventLocation = [self convertPoint:windowEventLocation fromView:nil];
|
2007-06-13 00:28:26 +04:00
|
|
|
|
2015-08-29 02:58:31 +03:00
|
|
|
EventMessage msg = aEnter ? eMouseEnterIntoWidget : eMouseExitFromWidget;
|
2013-10-02 10:38:27 +04:00
|
|
|
WidgetMouseEvent event(true, msg, mGeckoChild, WidgetMouseEvent::eReal);
|
2016-04-18 17:09:02 +03:00
|
|
|
event.mRefPoint = mGeckoChild->CocoaPointsToDevPixels(localEventLocation);
|
2007-06-13 00:28:26 +04:00
|
|
|
|
2009-09-23 06:31:37 +04:00
|
|
|
event.exit = aType;
|
2008-04-09 21:23:34 +04:00
|
|
|
|
2009-09-23 06:31:37 +04:00
|
|
|
nsEventStatus status; // ignored
|
|
|
|
mGeckoChild->DispatchEvent(&event, status);
|
|
|
|
}
|
2008-02-21 02:47:05 +03:00
|
|
|
|
2014-09-18 12:52:30 +04:00
|
|
|
- (void)updateWindowDraggableState
|
2013-02-06 01:40:34 +04:00
|
|
|
{
|
2014-09-18 12:52:30 +04:00
|
|
|
// Trigger update to the window server.
|
|
|
|
[[self window] setMovableByWindowBackground:NO];
|
|
|
|
[[self window] setMovableByWindowBackground:YES];
|
|
|
|
}
|
|
|
|
|
|
|
|
// aRect is in view coordinates relative to this NSView.
|
|
|
|
- (CGRect)convertToFlippedWindowCoordinates:(NSRect)aRect
|
|
|
|
{
|
|
|
|
// First, convert the rect to regular window coordinates...
|
|
|
|
NSRect inWindowCoords = [self convertRect:aRect toView:nil];
|
|
|
|
// ... and then flip it again because window coordinates have their origin
|
|
|
|
// in the bottom left corner, and we need it to be in the top left corner.
|
|
|
|
inWindowCoords.origin.y = [[self window] frame].size.height - NSMaxY(inWindowCoords);
|
|
|
|
return NSRectToCGRect(inWindowCoords);
|
|
|
|
}
|
|
|
|
|
|
|
|
static CGSRegionObj
|
2015-11-19 06:10:38 +03:00
|
|
|
NewCGSRegionFromRegion(const LayoutDeviceIntRegion& aRegion,
|
|
|
|
CGRect (^aRectConverter)(const LayoutDeviceIntRect&))
|
2014-09-18 12:52:30 +04:00
|
|
|
{
|
|
|
|
nsTArray<CGRect> rects;
|
2016-01-19 04:20:59 +03:00
|
|
|
for (auto iter = aRegion.RectIter(); !iter.Done(); iter.Next()) {
|
|
|
|
rects.AppendElement(aRectConverter(iter.Get()));
|
2013-02-06 01:40:34 +04:00
|
|
|
}
|
|
|
|
|
2014-09-18 12:52:30 +04:00
|
|
|
CGSRegionObj region;
|
|
|
|
CGSNewRegionWithRectList(rects.Elements(), rects.Length(), ®ion);
|
|
|
|
return region;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This function is called with forMove:YES to calculate the draggable region
|
|
|
|
// of the window which will be submitted to the window server. Window dragging
|
|
|
|
// is handled on the window server without calling back into our process, so it
|
|
|
|
// also works while our app is unresponsive.
|
|
|
|
- (CGSRegionObj)_regionForOpaqueDescendants:(NSRect)aRect forMove:(BOOL)aForMove
|
|
|
|
{
|
|
|
|
if (!aForMove || !mGeckoChild) {
|
|
|
|
return [super _regionForOpaqueDescendants:aRect forMove:aForMove];
|
2013-02-06 01:40:34 +04:00
|
|
|
}
|
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
LayoutDeviceIntRect boundingRect = mGeckoChild->CocoaPointsToDevPixels(aRect);
|
2014-09-18 12:52:30 +04:00
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
LayoutDeviceIntRegion opaqueRegion;
|
2014-09-18 12:52:30 +04:00
|
|
|
opaqueRegion.Sub(boundingRect, mGeckoChild->GetDraggableRegion());
|
2013-02-06 01:40:34 +04:00
|
|
|
|
2015-11-19 06:10:38 +03:00
|
|
|
return NewCGSRegionFromRegion(opaqueRegion, ^(const LayoutDeviceIntRect& r) {
|
2014-09-18 12:52:30 +04:00
|
|
|
return [self convertToFlippedWindowCoordinates:mGeckoChild->DevPixelsToCocoaPoints(r)];
|
|
|
|
});
|
2013-02-06 01:40:34 +04:00
|
|
|
}
|
|
|
|
|
2014-09-22 21:45:48 +04:00
|
|
|
// Starting with 10.10, in addition to the traditional
|
|
|
|
// -[NSView _regionForOpaqueDescendants:forMove:] method, there's a new form with
|
|
|
|
// an additional forUnderTitlebar argument, which is sometimes called instead of
|
|
|
|
// the old form. We need to override the new variant as well.
|
|
|
|
- (CGSRegionObj)_regionForOpaqueDescendants:(NSRect)aRect
|
|
|
|
forMove:(BOOL)aForMove
|
|
|
|
forUnderTitlebar:(BOOL)aForUnderTitlebar
|
|
|
|
{
|
|
|
|
if (!aForMove || !mGeckoChild) {
|
|
|
|
return [super _regionForOpaqueDescendants:aRect
|
|
|
|
forMove:aForMove
|
|
|
|
forUnderTitlebar:aForUnderTitlebar];
|
|
|
|
}
|
|
|
|
|
|
|
|
return [self _regionForOpaqueDescendants:aRect forMove:aForMove];
|
|
|
|
}
|
|
|
|
|
2009-09-23 06:31:37 +04:00
|
|
|
- (void)handleMouseMoved:(NSEvent*)theEvent
|
2001-11-06 18:35:24 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2007-06-16 02:34:48 +04:00
|
|
|
if (!mGeckoChild)
|
|
|
|
return;
|
2016-04-27 15:14:43 +03:00
|
|
|
if (mTextInputHandler->OnHandleEvent(theEvent)) {
|
|
|
|
return;
|
|
|
|
}
|
2007-06-16 02:34:48 +04:00
|
|
|
|
2015-08-29 02:58:29 +03:00
|
|
|
WidgetMouseEvent geckoEvent(true, eMouseMove, mGeckoChild,
|
2013-10-02 10:38:27 +04:00
|
|
|
WidgetMouseEvent::eReal);
|
2007-06-13 00:28:26 +04:00
|
|
|
[self convertCocoaMouseEvent:theEvent toGeckoEvent:&geckoEvent];
|
2001-11-06 18:35:24 +03:00
|
|
|
|
2016-03-11 02:25:48 +03:00
|
|
|
mGeckoChild->DispatchInputEvent(&geckoEvent);
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)mouseDragged:(NSEvent*)theEvent
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2007-06-16 02:34:48 +04:00
|
|
|
if (!mGeckoChild)
|
|
|
|
return;
|
2016-04-27 15:14:43 +03:00
|
|
|
if (mTextInputHandler->OnHandleEvent(theEvent)) {
|
|
|
|
return;
|
|
|
|
}
|
2007-06-16 02:34:48 +04:00
|
|
|
|
2007-09-24 04:01:04 +04:00
|
|
|
gLastDragView = self;
|
2006-10-26 02:45:22 +04:00
|
|
|
|
2015-08-29 02:58:29 +03:00
|
|
|
WidgetMouseEvent geckoEvent(true, eMouseMove, mGeckoChild,
|
2013-10-02 10:38:27 +04:00
|
|
|
WidgetMouseEvent::eReal);
|
2007-06-13 00:28:26 +04:00
|
|
|
[self convertCocoaMouseEvent:theEvent toGeckoEvent:&geckoEvent];
|
2002-12-13 11:43:18 +03:00
|
|
|
|
2015-04-22 00:44:10 +03:00
|
|
|
mGeckoChild->DispatchInputEvent(&geckoEvent);
|
2008-01-16 02:11:55 +03:00
|
|
|
|
|
|
|
// Note, sending the above event might have destroyed our widget since we didn't retain.
|
|
|
|
// Fine so long as we don't access any local variables from here on.
|
2007-09-24 04:01:04 +04:00
|
|
|
gLastDragView = nil;
|
2009-11-06 13:21:41 +03:00
|
|
|
|
2005-06-26 07:25:52 +04:00
|
|
|
// XXX maybe call markedTextSelectionChanged:client: here?
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
2002-12-13 11:43:18 +03:00
|
|
|
- (void)rightMouseDown:(NSEvent *)theEvent
|
2007-11-07 10:53:24 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2008-04-08 08:38:52 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2008-01-16 02:11:21 +03:00
|
|
|
|
2008-01-16 02:11:55 +03:00
|
|
|
[self maybeRollup:theEvent];
|
2007-06-16 02:34:48 +04:00
|
|
|
if (!mGeckoChild)
|
|
|
|
return;
|
2016-04-27 15:14:43 +03:00
|
|
|
if (mTextInputHandler->OnHandleEvent(theEvent)) {
|
|
|
|
return;
|
|
|
|
}
|
2007-11-27 02:19:04 +03:00
|
|
|
|
2006-06-13 01:05:36 +04:00
|
|
|
// The right mouse went down, fire off a right mouse down event to gecko
|
2015-08-29 02:58:30 +03:00
|
|
|
WidgetMouseEvent geckoEvent(true, eMouseDown, mGeckoChild,
|
2013-10-02 10:38:27 +04:00
|
|
|
WidgetMouseEvent::eReal);
|
2007-06-13 00:28:26 +04:00
|
|
|
[self convertCocoaMouseEvent:theEvent toGeckoEvent:&geckoEvent];
|
2013-10-02 10:38:27 +04:00
|
|
|
geckoEvent.button = WidgetMouseEvent::eRightButton;
|
2007-06-13 00:28:26 +04:00
|
|
|
geckoEvent.clickCount = [theEvent clickCount];
|
2002-12-13 11:43:18 +03:00
|
|
|
|
2016-03-11 02:25:48 +03:00
|
|
|
mGeckoChild->DispatchInputEvent(&geckoEvent);
|
2008-01-16 02:11:55 +03:00
|
|
|
if (!mGeckoChild)
|
|
|
|
return;
|
|
|
|
|
2011-06-02 05:18:27 +04:00
|
|
|
// Let the superclass do the context menu stuff.
|
|
|
|
[super rightMouseDown:theEvent];
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2002-12-13 11:43:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)rightMouseUp:(NSEvent *)theEvent
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2007-06-16 02:34:48 +04:00
|
|
|
if (!mGeckoChild)
|
|
|
|
return;
|
2016-04-27 15:14:43 +03:00
|
|
|
if (mTextInputHandler->OnHandleEvent(theEvent)) {
|
|
|
|
return;
|
|
|
|
}
|
2008-01-16 02:11:55 +03:00
|
|
|
|
2015-08-29 02:58:30 +03:00
|
|
|
WidgetMouseEvent geckoEvent(true, eMouseUp, mGeckoChild,
|
2013-10-02 10:38:27 +04:00
|
|
|
WidgetMouseEvent::eReal);
|
2007-06-13 00:28:26 +04:00
|
|
|
[self convertCocoaMouseEvent:theEvent toGeckoEvent:&geckoEvent];
|
2013-10-02 10:38:27 +04:00
|
|
|
geckoEvent.button = WidgetMouseEvent::eRightButton;
|
2007-06-13 00:28:26 +04:00
|
|
|
geckoEvent.clickCount = [theEvent clickCount];
|
2002-12-13 11:43:18 +03:00
|
|
|
|
2008-04-08 08:38:52 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2016-03-11 02:25:48 +03:00
|
|
|
mGeckoChild->DispatchInputEvent(&geckoEvent);
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2001-11-06 18:35:24 +03:00
|
|
|
}
|
|
|
|
|
2007-07-18 00:29:39 +04:00
|
|
|
- (void)rightMouseDragged:(NSEvent*)theEvent
|
|
|
|
{
|
|
|
|
if (!mGeckoChild)
|
|
|
|
return;
|
2016-04-27 15:14:43 +03:00
|
|
|
if (mTextInputHandler->OnHandleEvent(theEvent)) {
|
|
|
|
return;
|
|
|
|
}
|
2007-07-18 00:29:39 +04:00
|
|
|
|
2015-08-29 02:58:29 +03:00
|
|
|
WidgetMouseEvent geckoEvent(true, eMouseMove, mGeckoChild,
|
2013-10-02 10:38:27 +04:00
|
|
|
WidgetMouseEvent::eReal);
|
2007-07-18 00:29:39 +04:00
|
|
|
[self convertCocoaMouseEvent:theEvent toGeckoEvent:&geckoEvent];
|
2013-10-02 10:38:27 +04:00
|
|
|
geckoEvent.button = WidgetMouseEvent::eRightButton;
|
2007-07-18 00:29:39 +04:00
|
|
|
|
|
|
|
// send event into Gecko by going directly to the
|
|
|
|
// the widget.
|
2015-04-22 00:44:10 +03:00
|
|
|
mGeckoChild->DispatchInputEvent(&geckoEvent);
|
2007-07-18 00:29:39 +04:00
|
|
|
}
|
|
|
|
|
2002-03-10 02:09:34 +03:00
|
|
|
- (void)otherMouseDown:(NSEvent *)theEvent
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2008-04-08 08:38:52 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2008-01-16 02:11:55 +03:00
|
|
|
|
2009-09-23 06:31:37 +04:00
|
|
|
if ([self maybeRollup:theEvent] ||
|
2010-07-16 16:48:02 +04:00
|
|
|
!ChildViewMouseTracker::WindowAcceptsEvent([self window], theEvent, self))
|
2007-11-27 02:19:04 +03:00
|
|
|
return;
|
2007-07-18 00:29:39 +04:00
|
|
|
|
2007-06-16 02:34:48 +04:00
|
|
|
if (!mGeckoChild)
|
|
|
|
return;
|
2016-04-27 15:14:43 +03:00
|
|
|
if (mTextInputHandler->OnHandleEvent(theEvent)) {
|
|
|
|
return;
|
|
|
|
}
|
2007-06-16 02:34:48 +04:00
|
|
|
|
2015-08-29 02:58:30 +03:00
|
|
|
WidgetMouseEvent geckoEvent(true, eMouseDown, mGeckoChild,
|
2013-10-02 10:38:27 +04:00
|
|
|
WidgetMouseEvent::eReal);
|
2007-06-13 00:28:26 +04:00
|
|
|
[self convertCocoaMouseEvent:theEvent toGeckoEvent:&geckoEvent];
|
2013-10-02 10:38:27 +04:00
|
|
|
geckoEvent.button = WidgetMouseEvent::eMiddleButton;
|
2007-06-13 00:28:26 +04:00
|
|
|
geckoEvent.clickCount = [theEvent clickCount];
|
|
|
|
|
2015-04-22 00:44:10 +03:00
|
|
|
mGeckoChild->DispatchInputEvent(&geckoEvent);
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2006-12-20 05:13:57 +03:00
|
|
|
}
|
2002-03-10 02:09:34 +03:00
|
|
|
|
|
|
|
- (void)otherMouseUp:(NSEvent *)theEvent
|
|
|
|
{
|
2007-06-16 02:34:48 +04:00
|
|
|
if (!mGeckoChild)
|
|
|
|
return;
|
2016-04-27 15:14:43 +03:00
|
|
|
if (mTextInputHandler->OnHandleEvent(theEvent)) {
|
|
|
|
return;
|
|
|
|
}
|
2007-06-16 02:34:48 +04:00
|
|
|
|
2015-08-29 02:58:30 +03:00
|
|
|
WidgetMouseEvent geckoEvent(true, eMouseUp, mGeckoChild,
|
2013-10-02 10:38:27 +04:00
|
|
|
WidgetMouseEvent::eReal);
|
2007-06-13 00:28:26 +04:00
|
|
|
[self convertCocoaMouseEvent:theEvent toGeckoEvent:&geckoEvent];
|
2013-10-02 10:38:27 +04:00
|
|
|
geckoEvent.button = WidgetMouseEvent::eMiddleButton;
|
2006-11-17 00:35:39 +03:00
|
|
|
|
2013-09-18 03:36:03 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2015-04-22 00:44:10 +03:00
|
|
|
mGeckoChild->DispatchInputEvent(&geckoEvent);
|
2006-12-20 05:13:57 +03:00
|
|
|
}
|
|
|
|
|
2007-07-18 00:29:39 +04:00
|
|
|
- (void)otherMouseDragged:(NSEvent*)theEvent
|
|
|
|
{
|
|
|
|
if (!mGeckoChild)
|
|
|
|
return;
|
2016-04-27 15:14:43 +03:00
|
|
|
if (mTextInputHandler->OnHandleEvent(theEvent)) {
|
|
|
|
return;
|
|
|
|
}
|
2007-07-18 00:29:39 +04:00
|
|
|
|
2015-08-29 02:58:29 +03:00
|
|
|
WidgetMouseEvent geckoEvent(true, eMouseMove, mGeckoChild,
|
2013-10-02 10:38:27 +04:00
|
|
|
WidgetMouseEvent::eReal);
|
2007-07-18 00:29:39 +04:00
|
|
|
[self convertCocoaMouseEvent:theEvent toGeckoEvent:&geckoEvent];
|
2013-10-02 10:38:27 +04:00
|
|
|
geckoEvent.button = WidgetMouseEvent::eMiddleButton;
|
2007-07-18 00:29:39 +04:00
|
|
|
|
|
|
|
// send event into Gecko by going directly to the
|
|
|
|
// the widget.
|
2015-04-22 00:44:10 +03:00
|
|
|
mGeckoChild->DispatchInputEvent(&geckoEvent);
|
2007-07-18 00:29:39 +04:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
static int32_t RoundUp(double aDouble)
|
2012-08-12 05:42:37 +04:00
|
|
|
{
|
2012-08-22 19:56:38 +04:00
|
|
|
return aDouble < 0 ? static_cast<int32_t>(floor(aDouble)) :
|
|
|
|
static_cast<int32_t>(ceil(aDouble));
|
2012-08-12 05:42:37 +04:00
|
|
|
}
|
|
|
|
|
2015-08-26 15:56:59 +03:00
|
|
|
- (void)sendWheelStartOrStop:(EventMessage)msg forEvent:(NSEvent *)theEvent
|
2013-08-17 01:17:40 +04:00
|
|
|
{
|
|
|
|
WidgetWheelEvent wheelEvent(true, msg, mGeckoChild);
|
|
|
|
[self convertCocoaMouseWheelEvent:theEvent toGeckoEvent:&wheelEvent];
|
2015-09-10 19:59:55 +03:00
|
|
|
mExpectingWheelStop = (msg == eWheelOperationStart);
|
2016-03-11 02:25:48 +03:00
|
|
|
mGeckoChild->DispatchInputEvent(wheelEvent.AsInputEvent());
|
2013-08-17 01:17:40 +04:00
|
|
|
}
|
|
|
|
|
2015-08-26 15:56:59 +03:00
|
|
|
- (void)sendWheelCondition:(BOOL)condition
|
|
|
|
first:(EventMessage)first
|
|
|
|
second:(EventMessage)second
|
|
|
|
forEvent:(NSEvent *)theEvent
|
2013-08-17 01:17:40 +04:00
|
|
|
{
|
|
|
|
if (mExpectingWheelStop == condition) {
|
|
|
|
[self sendWheelStartOrStop:first forEvent:theEvent];
|
|
|
|
}
|
|
|
|
[self sendWheelStartOrStop:second forEvent:theEvent];
|
|
|
|
}
|
|
|
|
|
2015-08-24 02:50:29 +03:00
|
|
|
static PanGestureInput::PanGestureType
|
|
|
|
PanGestureTypeForEvent(NSEvent* aEvent)
|
|
|
|
{
|
|
|
|
switch (nsCocoaUtils::EventPhase(aEvent)) {
|
|
|
|
case NSEventPhaseMayBegin:
|
|
|
|
return PanGestureInput::PANGESTURE_MAYSTART;
|
|
|
|
case NSEventPhaseCancelled:
|
|
|
|
return PanGestureInput::PANGESTURE_CANCELLED;
|
|
|
|
case NSEventPhaseBegan:
|
|
|
|
return PanGestureInput::PANGESTURE_START;
|
|
|
|
case NSEventPhaseChanged:
|
|
|
|
return PanGestureInput::PANGESTURE_PAN;
|
|
|
|
case NSEventPhaseEnded:
|
|
|
|
return PanGestureInput::PANGESTURE_END;
|
|
|
|
case NSEventPhaseNone:
|
|
|
|
switch (nsCocoaUtils::EventMomentumPhase(aEvent)) {
|
|
|
|
case NSEventPhaseBegan:
|
|
|
|
return PanGestureInput::PANGESTURE_MOMENTUMSTART;
|
|
|
|
case NSEventPhaseChanged:
|
|
|
|
return PanGestureInput::PANGESTURE_MOMENTUMPAN;
|
|
|
|
case NSEventPhaseEnded:
|
|
|
|
return PanGestureInput::PANGESTURE_MOMENTUMEND;
|
|
|
|
default:
|
|
|
|
NS_ERROR("unexpected event phase");
|
|
|
|
return PanGestureInput::PANGESTURE_PAN;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
NS_ERROR("unexpected event phase");
|
|
|
|
return PanGestureInput::PANGESTURE_PAN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-12 05:42:37 +04:00
|
|
|
- (void)scrollWheel:(NSEvent*)theEvent
|
2002-02-17 22:09:07 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2015-03-29 07:58:52 +03:00
|
|
|
if (gfxPrefs::AsyncPanZoomSeparateEventThread() && [self apzctm]) {
|
|
|
|
// Disable main-thread scrolling completely when using APZ with the
|
|
|
|
// separate event thread. This is bug 1013412.
|
2014-06-07 02:49:59 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-08-12 05:42:37 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
|
|
|
|
|
|
|
ChildViewMouseTracker::MouseScrolled(theEvent);
|
|
|
|
|
|
|
|
if ([self maybeRollup:theEvent]) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mGeckoChild) {
|
2007-06-16 02:34:48 +04:00
|
|
|
return;
|
2012-08-12 05:42:37 +04:00
|
|
|
}
|
2007-06-16 02:34:48 +04:00
|
|
|
|
2014-06-07 02:49:59 +04:00
|
|
|
NSEventPhase phase = nsCocoaUtils::EventPhase(theEvent);
|
2015-09-10 19:59:55 +03:00
|
|
|
// Fire eWheelOperationStart/End events when 2 fingers touch/release the
|
2015-09-10 19:59:55 +03:00
|
|
|
// touchpad.
|
2014-06-07 02:49:59 +04:00
|
|
|
if (phase & NSEventPhaseMayBegin) {
|
2015-09-10 19:59:55 +03:00
|
|
|
[self sendWheelCondition:YES
|
2015-09-10 19:59:55 +03:00
|
|
|
first:eWheelOperationEnd
|
2015-09-10 19:59:55 +03:00
|
|
|
second:eWheelOperationStart
|
|
|
|
forEvent:theEvent];
|
2015-08-24 02:50:29 +03:00
|
|
|
} else if (phase & (NSEventPhaseEnded | NSEventPhaseCancelled)) {
|
2015-09-10 19:59:55 +03:00
|
|
|
[self sendWheelCondition:NO
|
|
|
|
first:eWheelOperationStart
|
2015-09-10 19:59:55 +03:00
|
|
|
second:eWheelOperationEnd
|
2015-09-10 19:59:55 +03:00
|
|
|
forEvent:theEvent];
|
2012-08-12 05:42:37 +04:00
|
|
|
}
|
|
|
|
|
2015-08-24 02:50:29 +03:00
|
|
|
NSPoint locationInWindow = nsCocoaUtils::EventLocationForWindow(theEvent, [self window]);
|
2013-08-17 01:17:40 +04:00
|
|
|
|
2015-11-19 09:34:20 +03:00
|
|
|
ScreenPoint position = ViewAs<ScreenPixel>(
|
|
|
|
[self convertWindowCoordinates:locationInWindow],
|
|
|
|
PixelCastJustification::LayoutDeviceIsScreenForUntransformedEvent);
|
2012-08-12 05:42:37 +04:00
|
|
|
|
2015-08-24 02:50:29 +03:00
|
|
|
bool usePreciseDeltas = nsCocoaUtils::HasPreciseScrollingDeltas(theEvent) &&
|
|
|
|
Preferences::GetBool("mousewheel.enable_pixel_scrolling", true);
|
|
|
|
bool hasPhaseInformation = nsCocoaUtils::EventHasPhaseInformation(theEvent);
|
|
|
|
|
|
|
|
int32_t lineOrPageDeltaX = RoundUp(-[theEvent deltaX]);
|
|
|
|
int32_t lineOrPageDeltaY = RoundUp(-[theEvent deltaY]);
|
|
|
|
|
|
|
|
Modifiers modifiers = nsCocoaUtils::ModifiersForEvent(theEvent);
|
|
|
|
|
|
|
|
NSTimeInterval beforeNow = [[NSProcessInfo processInfo] systemUptime] - [theEvent timestamp];
|
|
|
|
PRIntervalTime eventIntervalTime = PR_IntervalNow() - PR_MillisecondsToInterval(beforeNow * 1000);
|
|
|
|
TimeStamp eventTimeStamp = TimeStamp::Now() - TimeDuration::FromSeconds(beforeNow);
|
|
|
|
|
|
|
|
ScreenPoint preciseDelta;
|
|
|
|
if (usePreciseDeltas) {
|
2014-06-07 02:49:59 +04:00
|
|
|
CGFloat pixelDeltaX = 0, pixelDeltaY = 0;
|
|
|
|
nsCocoaUtils::GetScrollingDeltas(theEvent, &pixelDeltaX, &pixelDeltaY);
|
2015-08-24 02:50:29 +03:00
|
|
|
double scale = mGeckoChild->BackingScaleFactor();
|
|
|
|
preciseDelta = ScreenPoint(-pixelDeltaX * scale, -pixelDeltaY * scale);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (usePreciseDeltas && hasPhaseInformation) {
|
|
|
|
PanGestureInput panEvent(PanGestureTypeForEvent(theEvent),
|
|
|
|
eventIntervalTime, eventTimeStamp,
|
|
|
|
position, preciseDelta, modifiers);
|
|
|
|
panEvent.mLineOrPageDeltaX = lineOrPageDeltaX;
|
|
|
|
panEvent.mLineOrPageDeltaY = lineOrPageDeltaY;
|
2015-08-27 21:20:56 +03:00
|
|
|
|
2016-03-28 21:56:28 +03:00
|
|
|
if (panEvent.mType == PanGestureInput::PANGESTURE_END) {
|
|
|
|
// Check if there's a momentum start event in the event queue, so that we
|
|
|
|
// can annotate this event.
|
|
|
|
NSEvent* nextWheelEvent =
|
|
|
|
[NSApp nextEventMatchingMask:NSScrollWheelMask
|
|
|
|
untilDate:[NSDate distantPast]
|
|
|
|
inMode:NSDefaultRunLoopMode
|
|
|
|
dequeue:NO];
|
|
|
|
if (nextWheelEvent &&
|
|
|
|
PanGestureTypeForEvent(nextWheelEvent) == PanGestureInput::PANGESTURE_MOMENTUMSTART) {
|
|
|
|
panEvent.mFollowedByMomentum = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-27 21:20:56 +03:00
|
|
|
bool canTriggerSwipe = [self shouldConsiderStartingSwipeFromEvent:theEvent];
|
2015-08-28 23:50:00 +03:00
|
|
|
panEvent.mRequiresContentResponseIfCannotScrollHorizontallyInStartDirection = canTriggerSwipe;
|
2015-08-29 00:30:16 +03:00
|
|
|
mGeckoChild->DispatchAPZWheelInputEvent(panEvent, canTriggerSwipe);
|
2015-08-24 02:50:29 +03:00
|
|
|
} else if (usePreciseDeltas) {
|
|
|
|
// This is on 10.6 or old touchpads that don't have any phase information.
|
|
|
|
ScrollWheelInput wheelEvent(eventIntervalTime, eventTimeStamp, modifiers,
|
|
|
|
ScrollWheelInput::SCROLLMODE_INSTANT,
|
|
|
|
ScrollWheelInput::SCROLLDELTA_PIXEL,
|
|
|
|
position,
|
|
|
|
preciseDelta.x,
|
2016-01-27 09:09:13 +03:00
|
|
|
preciseDelta.y,
|
|
|
|
false);
|
2015-08-24 02:50:29 +03:00
|
|
|
wheelEvent.mLineOrPageDeltaX = lineOrPageDeltaX;
|
|
|
|
wheelEvent.mLineOrPageDeltaY = lineOrPageDeltaY;
|
|
|
|
wheelEvent.mIsMomentum = nsCocoaUtils::IsMomentumScrollEvent(theEvent);
|
2015-08-29 00:30:16 +03:00
|
|
|
mGeckoChild->DispatchAPZWheelInputEvent(wheelEvent, false);
|
2008-09-17 15:27:19 +04:00
|
|
|
} else {
|
2015-08-24 02:50:29 +03:00
|
|
|
ScrollWheelInput::ScrollMode scrollMode = ScrollWheelInput::SCROLLMODE_INSTANT;
|
|
|
|
if (gfxPrefs::SmoothScrollEnabled() && gfxPrefs::WheelSmoothScrollEnabled()) {
|
|
|
|
scrollMode = ScrollWheelInput::SCROLLMODE_SMOOTH;
|
|
|
|
}
|
|
|
|
ScrollWheelInput wheelEvent(eventIntervalTime, eventTimeStamp, modifiers,
|
|
|
|
scrollMode,
|
|
|
|
ScrollWheelInput::SCROLLDELTA_LINE,
|
|
|
|
position,
|
|
|
|
lineOrPageDeltaX,
|
2016-01-27 09:09:13 +03:00
|
|
|
lineOrPageDeltaY,
|
|
|
|
false);
|
2015-08-24 02:50:29 +03:00
|
|
|
wheelEvent.mLineOrPageDeltaX = lineOrPageDeltaX;
|
|
|
|
wheelEvent.mLineOrPageDeltaY = lineOrPageDeltaY;
|
2015-08-29 00:30:16 +03:00
|
|
|
mGeckoChild->DispatchAPZWheelInputEvent(wheelEvent, false);
|
2012-08-12 05:42:37 +04:00
|
|
|
}
|
2005-07-25 19:56:25 +04:00
|
|
|
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2002-02-17 22:09:07 +03:00
|
|
|
}
|
2001-11-06 18:35:24 +03:00
|
|
|
|
2014-06-04 16:44:27 +04:00
|
|
|
- (void)handleAsyncScrollEvent:(CGEventRef)cgEvent ofType:(CGEventType)type
|
|
|
|
{
|
2014-06-07 02:49:59 +04:00
|
|
|
APZCTreeManager* apzctm = [self apzctm];
|
|
|
|
if (!apzctm) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
CGPoint loc = CGEventGetLocation(cgEvent);
|
|
|
|
loc.y = nsCocoaUtils::FlippedScreenY(loc.y);
|
|
|
|
NSPoint locationInWindow = [[self window] convertScreenToBase:NSPointFromCGPoint(loc)];
|
2015-11-19 09:34:20 +03:00
|
|
|
ScreenIntPoint location = ViewAs<ScreenPixel>(
|
|
|
|
[self convertWindowCoordinates:locationInWindow],
|
|
|
|
PixelCastJustification::LayoutDeviceIsScreenForUntransformedEvent);
|
2014-06-07 02:49:59 +04:00
|
|
|
|
|
|
|
static NSTimeInterval sStartTime = [NSDate timeIntervalSinceReferenceDate];
|
|
|
|
static TimeStamp sStartTimeStamp = TimeStamp::Now();
|
|
|
|
|
|
|
|
if (type == kCGEventScrollWheel) {
|
|
|
|
NSEvent* event = [NSEvent eventWithCGEvent:cgEvent];
|
|
|
|
NSEventPhase phase = nsCocoaUtils::EventPhase(event);
|
|
|
|
NSEventPhase momentumPhase = nsCocoaUtils::EventMomentumPhase(event);
|
|
|
|
CGFloat pixelDeltaX = 0, pixelDeltaY = 0;
|
|
|
|
nsCocoaUtils::GetScrollingDeltas(event, &pixelDeltaX, &pixelDeltaY);
|
|
|
|
uint32_t eventTime = ([event timestamp] - sStartTime) * 1000;
|
|
|
|
TimeStamp eventTimeStamp = sStartTimeStamp +
|
|
|
|
TimeDuration::FromSeconds([event timestamp] - sStartTime);
|
|
|
|
NSPoint locationInWindowMoved = NSMakePoint(
|
|
|
|
locationInWindow.x + pixelDeltaX,
|
|
|
|
locationInWindow.y - pixelDeltaY);
|
2015-11-19 09:34:20 +03:00
|
|
|
ScreenIntPoint locationMoved = ViewAs<ScreenPixel>(
|
|
|
|
[self convertWindowCoordinates:locationInWindowMoved],
|
|
|
|
PixelCastJustification::LayoutDeviceIsScreenForUntransformedEvent);
|
2014-06-07 02:49:59 +04:00
|
|
|
ScreenPoint delta = ScreenPoint(locationMoved - location);
|
|
|
|
ScrollableLayerGuid guid;
|
|
|
|
|
|
|
|
// MayBegin and Cancelled are dispatched when the fingers start or stop
|
|
|
|
// touching the touchpad before any scrolling has occurred. These events
|
|
|
|
// can be used to control scrollbar visibility or interrupt scroll
|
|
|
|
// animations. They are only dispatched on 10.8 or later, and only by
|
|
|
|
// relatively modern devices.
|
|
|
|
if (phase == NSEventPhaseMayBegin) {
|
2014-07-08 22:55:52 +04:00
|
|
|
PanGestureInput panInput(PanGestureInput::PANGESTURE_MAYSTART, eventTime,
|
|
|
|
eventTimeStamp, location, ScreenPoint(0, 0), 0);
|
2014-10-24 21:29:30 +04:00
|
|
|
apzctm->ReceiveInputEvent(panInput, &guid, nullptr);
|
2014-06-07 02:49:59 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (phase == NSEventPhaseCancelled) {
|
2014-07-08 22:55:52 +04:00
|
|
|
PanGestureInput panInput(PanGestureInput::PANGESTURE_CANCELLED, eventTime,
|
|
|
|
eventTimeStamp, location, ScreenPoint(0, 0), 0);
|
2014-10-24 21:29:30 +04:00
|
|
|
apzctm->ReceiveInputEvent(panInput, &guid, nullptr);
|
2014-06-07 02:49:59 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Legacy scroll events are dispatched by devices that do not have a
|
|
|
|
// concept of a scroll gesture, for example by USB mice with
|
|
|
|
// traditional mouse wheels.
|
|
|
|
// For these kinds of scrolls, we want to surround every single scroll
|
|
|
|
// event with a PANGESTURE_START and a PANGESTURE_END event. The APZC
|
|
|
|
// needs to know that the real scroll gesture can end abruptly after any
|
|
|
|
// one of these events.
|
|
|
|
bool isLegacyScroll = (phase == NSEventPhaseNone &&
|
|
|
|
momentumPhase == NSEventPhaseNone && delta != ScreenPoint(0, 0));
|
|
|
|
|
|
|
|
if (phase == NSEventPhaseBegan || isLegacyScroll) {
|
2014-07-08 22:55:52 +04:00
|
|
|
PanGestureInput panInput(PanGestureInput::PANGESTURE_START, eventTime,
|
|
|
|
eventTimeStamp, location, ScreenPoint(0, 0), 0);
|
2014-10-24 21:29:30 +04:00
|
|
|
apzctm->ReceiveInputEvent(panInput, &guid, nullptr);
|
2014-06-07 02:49:59 +04:00
|
|
|
}
|
|
|
|
if (momentumPhase == NSEventPhaseNone && delta != ScreenPoint(0, 0)) {
|
2014-07-08 22:55:52 +04:00
|
|
|
PanGestureInput panInput(PanGestureInput::PANGESTURE_PAN, eventTime,
|
|
|
|
eventTimeStamp, location, delta, 0);
|
2014-10-24 21:29:30 +04:00
|
|
|
apzctm->ReceiveInputEvent(panInput, &guid, nullptr);
|
2014-06-07 02:49:59 +04:00
|
|
|
}
|
|
|
|
if (phase == NSEventPhaseEnded || isLegacyScroll) {
|
2014-07-08 22:55:52 +04:00
|
|
|
PanGestureInput panInput(PanGestureInput::PANGESTURE_END, eventTime,
|
|
|
|
eventTimeStamp, location, ScreenPoint(0, 0), 0);
|
2014-10-24 21:29:30 +04:00
|
|
|
apzctm->ReceiveInputEvent(panInput, &guid, nullptr);
|
2014-06-07 02:49:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Any device that can dispatch momentum events supports all three momentum phases.
|
|
|
|
if (momentumPhase == NSEventPhaseBegan) {
|
2014-07-08 22:55:52 +04:00
|
|
|
PanGestureInput panInput(PanGestureInput::PANGESTURE_MOMENTUMSTART, eventTime,
|
|
|
|
eventTimeStamp, location, ScreenPoint(0, 0), 0);
|
2014-10-24 21:29:30 +04:00
|
|
|
apzctm->ReceiveInputEvent(panInput, &guid, nullptr);
|
2014-06-07 02:49:59 +04:00
|
|
|
}
|
|
|
|
if (momentumPhase == NSEventPhaseChanged && delta != ScreenPoint(0, 0)) {
|
2014-07-08 22:55:52 +04:00
|
|
|
PanGestureInput panInput(PanGestureInput::PANGESTURE_MOMENTUMPAN, eventTime,
|
|
|
|
eventTimeStamp, location, delta, 0);
|
2014-10-24 21:29:30 +04:00
|
|
|
apzctm->ReceiveInputEvent(panInput, &guid, nullptr);
|
2014-06-07 02:49:59 +04:00
|
|
|
}
|
|
|
|
if (momentumPhase == NSEventPhaseEnded) {
|
2014-07-08 22:55:52 +04:00
|
|
|
PanGestureInput panInput(PanGestureInput::PANGESTURE_MOMENTUMEND, eventTime,
|
|
|
|
eventTimeStamp, location, ScreenPoint(0, 0), 0);
|
2014-10-24 21:29:30 +04:00
|
|
|
apzctm->ReceiveInputEvent(panInput, &guid, nullptr);
|
2014-06-07 02:49:59 +04:00
|
|
|
}
|
|
|
|
}
|
2014-06-04 16:44:27 +04:00
|
|
|
}
|
|
|
|
|
2005-06-16 16:49:43 +04:00
|
|
|
-(NSMenu*)menuForEvent:(NSEvent*)theEvent
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NIL;
|
|
|
|
|
2014-12-11 17:44:07 +03:00
|
|
|
if (!mGeckoChild)
|
2005-07-25 19:56:25 +04:00
|
|
|
return nil;
|
2007-08-21 05:02:09 +04:00
|
|
|
|
2008-04-08 08:38:52 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2008-01-16 02:11:55 +03:00
|
|
|
|
2007-11-27 02:19:04 +03:00
|
|
|
[self maybeRollup:theEvent];
|
2008-01-16 02:11:55 +03:00
|
|
|
if (!mGeckoChild)
|
|
|
|
return nil;
|
2007-11-27 02:19:04 +03:00
|
|
|
|
2008-04-07 03:52:05 +04:00
|
|
|
// Cocoa doesn't always dispatch a mouseDown: for a control-click event,
|
|
|
|
// depends on what we return from menuForEvent:. Gecko always expects one
|
|
|
|
// and expects the mouse down event before the context menu event, so
|
|
|
|
// get that event sent first if this is a left mouse click.
|
|
|
|
if ([theEvent type] == NSLeftMouseDown) {
|
|
|
|
[self mouseDown:theEvent];
|
|
|
|
if (!mGeckoChild)
|
|
|
|
return nil;
|
|
|
|
}
|
2008-01-17 07:59:43 +03:00
|
|
|
|
2015-08-31 18:20:06 +03:00
|
|
|
WidgetMouseEvent geckoEvent(true, eContextMenu, mGeckoChild,
|
2013-10-02 10:38:27 +04:00
|
|
|
WidgetMouseEvent::eReal);
|
2008-01-17 07:59:43 +03:00
|
|
|
[self convertCocoaMouseEvent:theEvent toGeckoEvent:&geckoEvent];
|
2013-10-02 10:38:27 +04:00
|
|
|
geckoEvent.button = WidgetMouseEvent::eRightButton;
|
2015-04-22 00:44:10 +03:00
|
|
|
mGeckoChild->DispatchInputEvent(&geckoEvent);
|
2008-01-17 07:59:43 +03:00
|
|
|
if (!mGeckoChild)
|
|
|
|
return nil;
|
|
|
|
|
2008-03-04 11:06:47 +03:00
|
|
|
[self maybeInitContextMenuTracking];
|
2008-02-28 18:58:33 +03:00
|
|
|
|
2005-06-16 16:49:43 +04:00
|
|
|
// Go up our view chain to fetch the correct menu to return.
|
2006-07-31 02:55:37 +04:00
|
|
|
return [self contextMenu];
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NIL;
|
2005-06-16 16:49:43 +04:00
|
|
|
}
|
|
|
|
|
2006-07-31 02:55:37 +04:00
|
|
|
- (NSMenu*)contextMenu
|
2005-06-16 16:49:43 +04:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NIL;
|
|
|
|
|
2005-09-30 04:59:29 +04:00
|
|
|
NSView* superView = [self superview];
|
2006-07-31 02:55:37 +04:00
|
|
|
if ([superView respondsToSelector:@selector(contextMenu)])
|
|
|
|
return [(NSView<mozView>*)superView contextMenu];
|
2005-09-30 04:59:29 +04:00
|
|
|
|
|
|
|
return nil;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NIL;
|
2005-06-16 16:49:43 +04:00
|
|
|
}
|
|
|
|
|
2013-08-17 01:17:40 +04:00
|
|
|
- (void) convertCocoaMouseWheelEvent:(NSEvent*)aMouseEvent
|
|
|
|
toGeckoEvent:(WidgetWheelEvent*)outWheelEvent
|
|
|
|
{
|
|
|
|
[self convertCocoaMouseEvent:aMouseEvent toGeckoEvent:outWheelEvent];
|
2014-06-07 02:49:59 +04:00
|
|
|
|
|
|
|
bool usePreciseDeltas = nsCocoaUtils::HasPreciseScrollingDeltas(aMouseEvent) &&
|
|
|
|
Preferences::GetBool("mousewheel.enable_pixel_scrolling", true);
|
|
|
|
|
2016-03-31 12:35:24 +03:00
|
|
|
outWheelEvent->mDeltaMode =
|
|
|
|
usePreciseDeltas ? nsIDOMWheelEvent::DOM_DELTA_PIXEL
|
|
|
|
: nsIDOMWheelEvent::DOM_DELTA_LINE;
|
2016-03-31 17:45:55 +03:00
|
|
|
outWheelEvent->mIsMomentum = nsCocoaUtils::IsMomentumScrollEvent(aMouseEvent);
|
2013-08-17 01:17:40 +04:00
|
|
|
}
|
|
|
|
|
2013-10-01 11:23:02 +04:00
|
|
|
- (void) convertCocoaMouseEvent:(NSEvent*)aMouseEvent
|
|
|
|
toGeckoEvent:(WidgetInputEvent*)outGeckoEvent
|
2007-06-13 00:28:26 +04:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2010-07-16 16:48:02 +04:00
|
|
|
NS_ASSERTION(outGeckoEvent, "convertCocoaMouseEvent:toGeckoEvent: requires non-null aoutGeckoEvent");
|
|
|
|
if (!outGeckoEvent)
|
2007-06-13 00:28:26 +04:00
|
|
|
return;
|
|
|
|
|
2012-04-25 07:00:02 +04:00
|
|
|
nsCocoaUtils::InitInputEvent(*outGeckoEvent, aMouseEvent);
|
2007-06-13 00:28:26 +04:00
|
|
|
|
|
|
|
// convert point to view coordinate system
|
2009-09-16 01:56:44 +04:00
|
|
|
NSPoint locationInWindow = nsCocoaUtils::EventLocationForWindow(aMouseEvent, [self window]);
|
2012-09-29 15:36:09 +04:00
|
|
|
|
2016-04-18 17:09:02 +03:00
|
|
|
outGeckoEvent->mRefPoint = [self convertWindowCoordinates:locationInWindow];
|
2008-02-21 02:47:05 +03:00
|
|
|
|
2013-10-18 10:10:26 +04:00
|
|
|
WidgetMouseEventBase* mouseEvent = outGeckoEvent->AsMouseEventBase();
|
2012-04-25 07:00:01 +04:00
|
|
|
mouseEvent->buttons = 0;
|
2012-11-09 14:22:36 +04:00
|
|
|
NSUInteger mouseButtons = [NSEvent pressedMouseButtons];
|
2012-04-25 07:00:01 +04:00
|
|
|
|
|
|
|
if (mouseButtons & 0x01) {
|
2013-10-02 10:38:27 +04:00
|
|
|
mouseEvent->buttons |= WidgetMouseEvent::eLeftButtonFlag;
|
2012-04-25 07:00:01 +04:00
|
|
|
}
|
|
|
|
if (mouseButtons & 0x02) {
|
2013-10-02 10:38:27 +04:00
|
|
|
mouseEvent->buttons |= WidgetMouseEvent::eRightButtonFlag;
|
2012-04-25 07:00:01 +04:00
|
|
|
}
|
|
|
|
if (mouseButtons & 0x04) {
|
2013-10-02 10:38:27 +04:00
|
|
|
mouseEvent->buttons |= WidgetMouseEvent::eMiddleButtonFlag;
|
2012-04-25 07:00:01 +04:00
|
|
|
}
|
|
|
|
if (mouseButtons & 0x08) {
|
2013-10-02 10:38:27 +04:00
|
|
|
mouseEvent->buttons |= WidgetMouseEvent::e4thButtonFlag;
|
2012-04-25 07:00:01 +04:00
|
|
|
}
|
|
|
|
if (mouseButtons & 0x10) {
|
2013-10-02 10:38:27 +04:00
|
|
|
mouseEvent->buttons |= WidgetMouseEvent::e5thButtonFlag;
|
2012-04-25 07:00:01 +04:00
|
|
|
}
|
|
|
|
|
2013-06-07 16:40:28 +04:00
|
|
|
switch ([aMouseEvent type]) {
|
|
|
|
case NSLeftMouseDown:
|
|
|
|
case NSLeftMouseUp:
|
|
|
|
case NSLeftMouseDragged:
|
|
|
|
case NSRightMouseDown:
|
|
|
|
case NSRightMouseUp:
|
|
|
|
case NSRightMouseDragged:
|
|
|
|
case NSOtherMouseDown:
|
|
|
|
case NSOtherMouseUp:
|
|
|
|
case NSOtherMouseDragged:
|
|
|
|
if ([aMouseEvent subtype] == NSTabletPointEventSubtype) {
|
|
|
|
mouseEvent->pressure = [aMouseEvent pressure];
|
2014-10-30 07:29:28 +03:00
|
|
|
MOZ_ASSERT(mouseEvent->pressure >= 0.0 && mouseEvent->pressure <= 1.0);
|
2013-06-07 16:40:28 +04:00
|
|
|
}
|
|
|
|
break;
|
2014-10-30 07:29:28 +03:00
|
|
|
|
|
|
|
default:
|
|
|
|
// Don't check other NSEvents for pressure.
|
|
|
|
break;
|
2013-06-07 16:40:28 +04:00
|
|
|
}
|
|
|
|
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2007-06-13 00:28:26 +04:00
|
|
|
}
|
|
|
|
|
2015-07-09 18:11:22 +03:00
|
|
|
- (BOOL)shouldZoomOnDoubleClick
|
|
|
|
{
|
|
|
|
if ([NSWindow respondsToSelector:@selector(_shouldZoomOnDoubleClick)]) {
|
|
|
|
return [NSWindow _shouldZoomOnDoubleClick];
|
|
|
|
}
|
|
|
|
return nsCocoaFeatures::OnYosemiteOrLater();
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)shouldMinimizeOnTitlebarDoubleClick
|
|
|
|
{
|
|
|
|
NSString *MDAppleMiniaturizeOnDoubleClickKey =
|
|
|
|
@"AppleMiniaturizeOnDoubleClick";
|
|
|
|
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
|
|
|
|
bool shouldMinimize = [[userDefaults
|
|
|
|
objectForKey:MDAppleMiniaturizeOnDoubleClickKey] boolValue];
|
|
|
|
|
|
|
|
return shouldMinimize;
|
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark -
|
|
|
|
// NSTextInputClient implementation
|
2002-06-12 02:13:03 +04:00
|
|
|
|
2015-07-09 18:11:22 +03:00
|
|
|
- (NSRange)markedRange
|
2002-12-13 11:43:18 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
2011-05-08 14:19:23 +04:00
|
|
|
NS_ENSURE_TRUE(mTextInputHandler, NSMakeRange(NSNotFound, 0));
|
|
|
|
return mTextInputHandler->MarkedRange();
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(NSMakeRange(0, 0));
|
2002-12-13 11:43:18 +03:00
|
|
|
}
|
|
|
|
|
2015-07-09 18:11:22 +03:00
|
|
|
- (NSRange)selectedRange
|
2002-12-13 11:43:18 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
2011-05-08 14:19:23 +04:00
|
|
|
NS_ENSURE_TRUE(mTextInputHandler, NSMakeRange(NSNotFound, 0));
|
|
|
|
return mTextInputHandler->SelectedRange();
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(NSMakeRange(0, 0));
|
2002-12-13 11:43:18 +03:00
|
|
|
}
|
|
|
|
|
2015-02-10 18:28:05 +03:00
|
|
|
- (BOOL)drawsVerticallyForCharacterAtIndex:(NSUInteger)charIndex
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(mTextInputHandler, NO);
|
|
|
|
if (charIndex == NSNotFound) {
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
return mTextInputHandler->DrawsVerticallyForCharacterAtIndex(charIndex);
|
|
|
|
}
|
|
|
|
|
2009-09-01 05:00:13 +04:00
|
|
|
- (NSUInteger)characterIndexForPoint:(NSPoint)thePoint
|
2002-12-13 11:43:18 +03:00
|
|
|
{
|
2011-05-08 14:19:23 +04:00
|
|
|
NS_ENSURE_TRUE(mTextInputHandler, 0);
|
|
|
|
return mTextInputHandler->CharacterIndexForPoint(thePoint);
|
2002-12-13 11:43:18 +03:00
|
|
|
}
|
|
|
|
|
2015-07-09 18:11:22 +03:00
|
|
|
- (NSArray*)validAttributesForMarkedText
|
2002-12-13 11:43:18 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NIL;
|
|
|
|
|
2011-05-08 14:19:23 +04:00
|
|
|
NS_ENSURE_TRUE(mTextInputHandler, [NSArray array]);
|
|
|
|
return mTextInputHandler->GetValidAttributesForMarkedText();
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NIL;
|
2002-12-13 11:43:18 +03:00
|
|
|
}
|
|
|
|
|
2013-07-11 11:46:35 +04:00
|
|
|
- (void)insertText:(id)aString replacementRange:(NSRange)replacementRange
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
|
|
|
NS_ENSURE_TRUE_VOID(mGeckoChild);
|
|
|
|
|
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
|
|
|
|
|
|
|
NSAttributedString* attrStr;
|
|
|
|
if ([aString isKindOfClass:[NSAttributedString class]]) {
|
|
|
|
attrStr = static_cast<NSAttributedString*>(aString);
|
|
|
|
} else {
|
|
|
|
attrStr = [[[NSAttributedString alloc] initWithString:aString] autorelease];
|
|
|
|
}
|
|
|
|
|
|
|
|
mTextInputHandler->InsertText(attrStr, &replacementRange);
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
|
|
|
|
2015-07-09 18:11:22 +03:00
|
|
|
- (void)doCommandBySelector:(SEL)aSelector
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
|
|
|
if (!mGeckoChild || !mTextInputHandler) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* sel = reinterpret_cast<const char*>(aSelector);
|
|
|
|
if (!mTextInputHandler->DoCommandBySelector(sel)) {
|
|
|
|
[super doCommandBySelector:aSelector];
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)unmarkText
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE_VOID(mTextInputHandler);
|
|
|
|
mTextInputHandler->CommitIMEComposition();
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL) hasMarkedText
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(mTextInputHandler, NO);
|
|
|
|
return mTextInputHandler->HasMarkedText();
|
|
|
|
}
|
|
|
|
|
2013-07-11 11:46:36 +04:00
|
|
|
- (void)setMarkedText:(id)aString selectedRange:(NSRange)selectedRange
|
|
|
|
replacementRange:(NSRange)replacementRange
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
|
|
|
NS_ENSURE_TRUE_VOID(mTextInputHandler);
|
|
|
|
|
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
|
|
|
|
|
|
|
NSAttributedString* attrStr;
|
|
|
|
if ([aString isKindOfClass:[NSAttributedString class]]) {
|
|
|
|
attrStr = static_cast<NSAttributedString*>(aString);
|
|
|
|
} else {
|
|
|
|
attrStr = [[[NSAttributedString alloc] initWithString:aString] autorelease];
|
|
|
|
}
|
|
|
|
|
|
|
|
mTextInputHandler->SetMarkedText(attrStr, selectedRange, &replacementRange);
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
|
|
|
|
2013-07-11 11:46:35 +04:00
|
|
|
- (NSAttributedString*)attributedSubstringForProposedRange:(NSRange)aRange
|
|
|
|
actualRange:(NSRangePointer)actualRange
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(mTextInputHandler, nil);
|
|
|
|
return mTextInputHandler->GetAttributedSubstringFromRange(aRange,
|
|
|
|
actualRange);
|
|
|
|
}
|
|
|
|
|
2013-07-11 11:46:35 +04:00
|
|
|
- (NSRect)firstRectForCharacterRange:(NSRange)aRange
|
|
|
|
actualRange:(NSRangePointer)actualRange
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(mTextInputHandler, NSMakeRect(0.0, 0.0, 0.0, 0.0));
|
|
|
|
return mTextInputHandler->FirstRectForCharacterRange(aRange, actualRange);
|
|
|
|
}
|
|
|
|
|
2013-07-11 11:46:35 +04:00
|
|
|
- (NSInteger)windowLevel
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
|
|
|
NS_ENSURE_TRUE(mTextInputHandler, [[self window] level]);
|
|
|
|
return mTextInputHandler->GetWindowLevel();
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(NSNormalWindowLevel);
|
|
|
|
}
|
|
|
|
|
2006-12-20 05:13:57 +03:00
|
|
|
#pragma mark -
|
|
|
|
|
2010-08-17 07:26:17 +04:00
|
|
|
// This is a private API that Cocoa uses.
|
|
|
|
// Cocoa will call this after the menu system returns "NO" for "performKeyEquivalent:".
|
|
|
|
// We want all they key events we can get so just return YES. In particular, this fixes
|
|
|
|
// ctrl-tab - we don't get a "keyDown:" call for that without this.
|
|
|
|
- (BOOL)_wantsKeyDownForEvent:(NSEvent*)event
|
|
|
|
{
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2015-02-20 19:37:02 +03:00
|
|
|
- (NSEvent*)lastKeyDownEvent
|
|
|
|
{
|
|
|
|
return mLastKeyDownEvent;
|
|
|
|
}
|
|
|
|
|
2008-02-29 08:47:41 +03:00
|
|
|
- (void)keyDown:(NSEvent*)theEvent
|
|
|
|
{
|
2008-06-30 20:30:22 +04:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2015-02-20 19:37:02 +03:00
|
|
|
[mLastKeyDownEvent release];
|
|
|
|
mLastKeyDownEvent = [theEvent retain];
|
|
|
|
|
2014-09-15 23:48:42 +04:00
|
|
|
// Weird things can happen on keyboard input if the key window isn't in the
|
|
|
|
// current space. For example see bug 1056251. To get around this, always
|
|
|
|
// make sure that, if our window is key, it's also made frontmost. Doing
|
|
|
|
// this automatically switches to whatever space our window is in. Safari
|
|
|
|
// does something similar. Our window should normally always be key --
|
|
|
|
// otherwise why is the OS sending us a key down event? But it's just
|
|
|
|
// possible we're in Gecko's hidden window, so we check first.
|
|
|
|
NSWindow *viewWindow = [self window];
|
|
|
|
if (viewWindow && [viewWindow isKeyWindow]) {
|
|
|
|
[viewWindow orderWindow:NSWindowAbove relativeTo:0];
|
|
|
|
}
|
|
|
|
|
2013-05-24 20:27:52 +04:00
|
|
|
#if !defined(RELEASE_BUILD) || defined(DEBUG)
|
2015-07-30 00:31:14 +03:00
|
|
|
if (!Preferences::GetBool("intl.allow-insecure-text-input", false) &&
|
|
|
|
mGeckoChild && mTextInputHandler && mTextInputHandler->IsFocused()) {
|
2013-07-20 01:21:25 +04:00
|
|
|
#ifdef MOZ_CRASHREPORTER
|
|
|
|
NSWindow* window = [self window];
|
2015-03-06 01:25:32 +03:00
|
|
|
NSString* info = [NSString stringWithFormat:@"\nview [%@], window [%@], window is key %i, is fullscreen %i, app is active %i",
|
|
|
|
self, window, [window isKeyWindow], ([window styleMask] & (1 << 14)) != 0,
|
2013-08-02 05:35:34 +04:00
|
|
|
[NSApp isActive]];
|
2013-07-20 01:21:25 +04:00
|
|
|
nsAutoCString additionalInfo([info UTF8String]);
|
|
|
|
#endif
|
2014-12-11 17:44:07 +03:00
|
|
|
if (mGeckoChild->GetInputContext().IsPasswordEditor() &&
|
2013-07-17 06:08:44 +04:00
|
|
|
!TextInputHandler::IsSecureEventInputEnabled()) {
|
2013-07-20 01:21:25 +04:00
|
|
|
#define CRASH_MESSAGE "A password editor has focus, but not in secure input mode"
|
|
|
|
#ifdef MOZ_CRASHREPORTER
|
|
|
|
CrashReporter::AppendAppNotesToCrashReport(NS_LITERAL_CSTRING("\nBug 893973: ") +
|
|
|
|
NS_LITERAL_CSTRING(CRASH_MESSAGE));
|
|
|
|
CrashReporter::AppendAppNotesToCrashReport(additionalInfo);
|
|
|
|
#endif
|
|
|
|
MOZ_CRASH(CRASH_MESSAGE);
|
|
|
|
#undef CRASH_MESSAGE
|
2013-07-17 06:08:44 +04:00
|
|
|
} else if (!mGeckoChild->GetInputContext().IsPasswordEditor() &&
|
|
|
|
TextInputHandler::IsSecureEventInputEnabled()) {
|
2013-07-20 01:21:25 +04:00
|
|
|
#define CRASH_MESSAGE "A non-password editor has focus, but in secure input mode"
|
|
|
|
#ifdef MOZ_CRASHREPORTER
|
|
|
|
CrashReporter::AppendAppNotesToCrashReport(NS_LITERAL_CSTRING("\nBug 893973: ") +
|
|
|
|
NS_LITERAL_CSTRING(CRASH_MESSAGE));
|
|
|
|
CrashReporter::AppendAppNotesToCrashReport(additionalInfo);
|
|
|
|
#endif
|
|
|
|
MOZ_CRASH(CRASH_MESSAGE);
|
|
|
|
#undef CRASH_MESSAGE
|
2013-07-17 06:08:44 +04:00
|
|
|
}
|
2013-05-24 20:27:52 +04:00
|
|
|
}
|
|
|
|
#endif // #if !defined(RELEASE_BUILD) || defined(DEBUG)
|
|
|
|
|
2011-07-21 04:33:16 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2011-09-29 10:19:26 +04:00
|
|
|
bool handled = false;
|
2011-07-21 04:33:16 +04:00
|
|
|
if (mGeckoChild && mTextInputHandler) {
|
|
|
|
handled = mTextInputHandler->HandleKeyDownEvent(theEvent);
|
|
|
|
}
|
|
|
|
|
2010-08-17 07:26:17 +04:00
|
|
|
// We always allow keyboard events to propagate to keyDown: but if they are not
|
|
|
|
// handled we give special Application menu items a chance to act.
|
|
|
|
if (!handled && sApplicationMenu) {
|
|
|
|
[sApplicationMenu performKeyEquivalent:theEvent];
|
|
|
|
}
|
2008-06-30 20:30:22 +04:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2008-02-29 08:47:41 +03:00
|
|
|
}
|
|
|
|
|
2005-05-27 07:49:14 +04:00
|
|
|
- (void)keyUp:(NSEvent*)theEvent
|
2002-02-22 11:44:16 +03:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2011-07-21 04:33:16 +04:00
|
|
|
NS_ENSURE_TRUE(mGeckoChild, );
|
2011-01-21 04:08:11 +03:00
|
|
|
|
2008-04-08 08:38:52 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2008-01-16 02:11:55 +03:00
|
|
|
|
2011-07-21 04:33:16 +04:00
|
|
|
mTextInputHandler->HandleKeyUpEvent(theEvent);
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2002-02-22 11:44:16 +03:00
|
|
|
}
|
2001-11-15 01:29:25 +03:00
|
|
|
|
2015-11-07 12:19:49 +03:00
|
|
|
- (void)insertNewline:(id)sender
|
|
|
|
{
|
2015-11-10 05:59:18 +03:00
|
|
|
if (mTextInputHandler) {
|
|
|
|
NSAttributedString *attrStr = [[NSAttributedString alloc] initWithString:@"\n"];
|
|
|
|
mTextInputHandler->InsertText(attrStr);
|
|
|
|
[attrStr release];
|
|
|
|
}
|
2015-11-07 12:19:49 +03:00
|
|
|
}
|
|
|
|
|
2003-03-13 23:37:32 +03:00
|
|
|
- (void)flagsChanged:(NSEvent*)theEvent
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2011-07-21 04:33:16 +04:00
|
|
|
NS_ENSURE_TRUE(mGeckoChild, );
|
2007-06-16 02:34:48 +04:00
|
|
|
|
2008-04-08 08:38:52 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2011-07-21 04:33:16 +04:00
|
|
|
mTextInputHandler->HandleFlagsChanged(theEvent);
|
2007-03-12 19:04:40 +03:00
|
|
|
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2003-03-13 23:37:32 +03:00
|
|
|
}
|
|
|
|
|
2008-10-13 22:07:27 +04:00
|
|
|
- (BOOL) isFirstResponder
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
|
|
|
NSResponder* resp = [[self window] firstResponder];
|
|
|
|
return (resp == (NSResponder*)self);
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(NO);
|
|
|
|
}
|
|
|
|
|
2010-03-08 15:35:25 +03:00
|
|
|
- (BOOL)isDragInProgress
|
|
|
|
{
|
|
|
|
if (!mDragService)
|
|
|
|
return NO;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDragSession> dragSession;
|
|
|
|
mDragService->GetCurrentSession(getter_AddRefs(dragSession));
|
2012-07-30 18:20:58 +04:00
|
|
|
return dragSession != nullptr;
|
2010-03-08 15:35:25 +03:00
|
|
|
}
|
|
|
|
|
2010-07-16 16:48:02 +04:00
|
|
|
- (BOOL)inactiveWindowAcceptsMouseEvent:(NSEvent*)aEvent
|
|
|
|
{
|
2010-08-09 20:12:50 +04:00
|
|
|
// If we're being destroyed assume the default -- return YES.
|
|
|
|
if (!mGeckoChild)
|
|
|
|
return YES;
|
|
|
|
|
2015-08-29 02:58:32 +03:00
|
|
|
WidgetMouseEvent geckoEvent(true, eMouseActivate, mGeckoChild,
|
2013-10-02 10:38:27 +04:00
|
|
|
WidgetMouseEvent::eReal);
|
2010-07-16 16:48:02 +04:00
|
|
|
[self convertCocoaMouseEvent:aEvent toGeckoEvent:&geckoEvent];
|
2015-04-22 00:44:10 +03:00
|
|
|
return (mGeckoChild->DispatchInputEvent(&geckoEvent) != nsEventStatus_eConsumeNoDefault);
|
2010-07-16 16:48:02 +04:00
|
|
|
}
|
|
|
|
|
2010-04-26 00:58:03 +04:00
|
|
|
// We must always call through to our superclass, even when mGeckoChild is
|
|
|
|
// nil -- otherwise the keyboard focus can end up in the wrong NSView.
|
|
|
|
- (BOOL)becomeFirstResponder
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
|
|
|
return [super becomeFirstResponder];
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(YES);
|
|
|
|
}
|
|
|
|
|
2005-06-26 07:25:52 +04:00
|
|
|
- (void)viewsWindowDidBecomeKey
|
2005-09-30 04:59:29 +04:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2005-09-30 04:59:29 +04:00
|
|
|
if (!mGeckoChild)
|
2007-06-16 02:34:48 +04:00
|
|
|
return;
|
|
|
|
|
2008-04-08 08:38:52 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2008-01-16 02:11:55 +03:00
|
|
|
|
2005-10-12 21:38:29 +04:00
|
|
|
// check to see if the window implements the mozWindow protocol. This
|
|
|
|
// allows embedders to avoid re-entrant calls to -makeKeyAndOrderFront,
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 22:00:39 +04:00
|
|
|
// which can happen because these activate calls propagate out
|
2005-10-12 21:38:29 +04:00
|
|
|
// to the embedder via nsIEmbeddingSiteWindow::SetFocus().
|
|
|
|
BOOL isMozWindow = [[self window] respondsToSelector:@selector(setSuppressMakeKeyFront:)];
|
|
|
|
if (isMozWindow)
|
|
|
|
[[self window] setSuppressMakeKeyFront:YES];
|
|
|
|
|
2012-08-15 22:52:42 +04:00
|
|
|
nsIWidgetListener* listener = mGeckoChild->GetWidgetListener();
|
|
|
|
if (listener)
|
|
|
|
listener->WindowActivated();
|
2005-10-12 21:38:29 +04:00
|
|
|
|
|
|
|
if (isMozWindow)
|
|
|
|
[[self window] setSuppressMakeKeyFront:NO];
|
2008-02-21 02:47:05 +03:00
|
|
|
|
2015-09-01 21:56:23 +03:00
|
|
|
if (mGeckoChild->GetInputContext().IsPasswordEditor()) {
|
|
|
|
TextInputHandler::EnableSecureEventInput();
|
|
|
|
} else {
|
|
|
|
TextInputHandler::EnsureSecureEventInputDisabled();
|
|
|
|
}
|
|
|
|
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2005-06-26 07:25:52 +04:00
|
|
|
}
|
|
|
|
|
2005-10-12 21:38:29 +04:00
|
|
|
- (void)viewsWindowDidResignKey
|
2005-06-26 07:25:52 +04:00
|
|
|
{
|
2005-09-30 04:59:29 +04:00
|
|
|
if (!mGeckoChild)
|
2007-06-16 02:34:48 +04:00
|
|
|
return;
|
|
|
|
|
2008-04-08 08:38:52 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2008-01-16 02:11:55 +03:00
|
|
|
|
2012-08-15 22:52:42 +04:00
|
|
|
nsIWidgetListener* listener = mGeckoChild->GetWidgetListener();
|
|
|
|
if (listener)
|
|
|
|
listener->WindowDeactivated();
|
2015-03-19 05:08:22 +03:00
|
|
|
|
|
|
|
TextInputHandler::EnsureSecureEventInputDisabled();
|
2005-09-30 04:59:29 +04:00
|
|
|
}
|
2005-06-26 07:25:52 +04:00
|
|
|
|
2007-06-22 03:58:16 +04:00
|
|
|
// If the call to removeFromSuperview isn't delayed from nsChildView::
|
|
|
|
// TearDownView(), the NSView hierarchy might get changed during calls to
|
|
|
|
// [ChildView drawRect:], which leads to "beyond bounds" exceptions in
|
|
|
|
// NSCFArray. For more info see bmo bug 373122. Apple's docs claim that
|
2007-05-30 22:25:44 +04:00
|
|
|
// removeFromSuperviewWithoutNeedingDisplay "can be safely invoked during
|
|
|
|
// display" (whatever "display" means). But it's _not_ true that it can be
|
2007-06-22 03:58:16 +04:00
|
|
|
// safely invoked during calls to [NSView drawRect:]. We use
|
|
|
|
// removeFromSuperview here because there's no longer any danger of being
|
|
|
|
// "invoked during display", and because doing do clears up bmo bug 384343.
|
2007-05-30 22:25:44 +04:00
|
|
|
- (void)delayedTearDown
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2007-06-22 03:58:16 +04:00
|
|
|
[self removeFromSuperview];
|
2007-05-30 22:25:44 +04:00
|
|
|
[self release];
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2007-05-30 22:25:44 +04:00
|
|
|
}
|
|
|
|
|
2006-10-26 02:45:22 +04:00
|
|
|
#pragma mark -
|
|
|
|
|
2006-12-20 05:13:57 +03:00
|
|
|
// drag'n'drop stuff
|
2006-10-26 02:45:22 +04:00
|
|
|
#define kDragServiceContractID "@mozilla.org/widget/dragservice;1"
|
|
|
|
|
2015-06-05 15:33:29 +03:00
|
|
|
- (NSDragOperation)dragOperationFromDragAction:(int32_t)aDragAction
|
2010-03-08 15:35:25 +03:00
|
|
|
{
|
2015-06-05 15:33:29 +03:00
|
|
|
if (nsIDragService::DRAGDROP_ACTION_LINK & aDragAction)
|
2010-03-08 15:35:25 +03:00
|
|
|
return NSDragOperationLink;
|
2015-06-05 15:33:29 +03:00
|
|
|
if (nsIDragService::DRAGDROP_ACTION_COPY & aDragAction)
|
2010-03-08 15:35:25 +03:00
|
|
|
return NSDragOperationCopy;
|
2015-06-05 15:33:29 +03:00
|
|
|
if (nsIDragService::DRAGDROP_ACTION_MOVE & aDragAction)
|
2010-03-08 15:35:25 +03:00
|
|
|
return NSDragOperationGeneric;
|
|
|
|
return NSDragOperationNone;
|
|
|
|
}
|
|
|
|
|
2015-11-19 09:34:20 +03:00
|
|
|
- (LayoutDeviceIntPoint)convertWindowCoordinates:(NSPoint)aPoint
|
2014-06-04 16:44:28 +04:00
|
|
|
{
|
|
|
|
if (!mGeckoChild) {
|
2015-11-19 09:34:20 +03:00
|
|
|
return LayoutDeviceIntPoint(0, 0);
|
2014-06-04 16:44:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NSPoint localPoint = [self convertPoint:aPoint fromView:nil];
|
|
|
|
return mGeckoChild->CocoaPointsToDevPixels(localPoint);
|
|
|
|
}
|
|
|
|
|
2014-06-04 16:44:27 +04:00
|
|
|
- (APZCTreeManager*)apzctm
|
|
|
|
{
|
|
|
|
return mGeckoChild ? mGeckoChild->APZCTM() : nullptr;
|
|
|
|
}
|
|
|
|
|
2006-10-26 02:45:22 +04:00
|
|
|
// This is a utility function used by NSView drag event methods
|
|
|
|
// to send events. It contains all of the logic needed for Gecko
|
2010-03-08 15:35:25 +03:00
|
|
|
// dragging to work. Returns the appropriate cocoa drag operation code.
|
2015-08-26 15:56:59 +03:00
|
|
|
- (NSDragOperation)doDragAction:(EventMessage)aMessage sender:(id)aSender
|
2006-10-26 02:45:22 +04:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
2007-06-30 07:19:41 +04:00
|
|
|
if (!mGeckoChild)
|
2010-03-08 15:35:25 +03:00
|
|
|
return NSDragOperationNone;
|
2006-10-26 02:45:22 +04:00
|
|
|
|
2015-06-04 01:25:57 +03:00
|
|
|
MOZ_LOG(sCocoaLog, LogLevel::Info, ("ChildView doDragAction: entered\n"));
|
2007-07-17 06:24:05 +04:00
|
|
|
|
2007-06-30 07:19:41 +04:00
|
|
|
if (!mDragService) {
|
|
|
|
CallGetService(kDragServiceContractID, &mDragService);
|
|
|
|
NS_ASSERTION(mDragService, "Couldn't get a drag service - big problem!");
|
|
|
|
if (!mDragService)
|
2010-03-08 15:35:25 +03:00
|
|
|
return NSDragOperationNone;
|
2007-06-30 07:19:41 +04:00
|
|
|
}
|
|
|
|
|
2015-09-02 09:08:02 +03:00
|
|
|
if (aMessage == eDragEnter) {
|
2006-10-26 02:45:22 +04:00
|
|
|
mDragService->StartDragSession();
|
2015-09-02 09:08:02 +03:00
|
|
|
}
|
2006-10-26 02:45:22 +04:00
|
|
|
|
|
|
|
nsCOMPtr<nsIDragSession> dragSession;
|
|
|
|
mDragService->GetCurrentSession(getter_AddRefs(dragSession));
|
|
|
|
if (dragSession) {
|
2015-09-02 09:08:02 +03:00
|
|
|
if (aMessage == eDragOver) {
|
2007-04-12 08:37:39 +04:00
|
|
|
// fire the drag event at the source. Just ignore whether it was
|
|
|
|
// cancelled or not as there isn't actually a means to stop the drag
|
2015-09-02 09:08:02 +03:00
|
|
|
mDragService->FireDragEventAtSource(eDrag);
|
2011-10-01 04:20:33 +04:00
|
|
|
dragSession->SetCanDrop(false);
|
2015-09-02 09:08:01 +03:00
|
|
|
} else if (aMessage == eDrop) {
|
2008-07-21 17:26:34 +04:00
|
|
|
// We make the assumption that the dragOver handlers have correctly set
|
2006-10-26 02:45:22 +04:00
|
|
|
// the |canDrop| property of the Drag Session.
|
2011-09-29 10:19:26 +04:00
|
|
|
bool canDrop = false;
|
2008-08-27 16:07:27 +04:00
|
|
|
if (!NS_SUCCEEDED(dragSession->GetCanDrop(&canDrop)) || !canDrop) {
|
2015-09-02 09:08:02 +03:00
|
|
|
[self doDragAction:eDragExit sender:aSender];
|
2010-02-01 18:11:08 +03:00
|
|
|
|
2008-08-27 16:07:27 +04:00
|
|
|
nsCOMPtr<nsIDOMNode> sourceNode;
|
|
|
|
dragSession->GetSourceNode(getter_AddRefs(sourceNode));
|
|
|
|
if (!sourceNode) {
|
2011-10-01 04:20:33 +04:00
|
|
|
mDragService->EndDragSession(false);
|
2008-08-27 16:07:27 +04:00
|
|
|
}
|
2010-03-08 15:35:25 +03:00
|
|
|
return NSDragOperationNone;
|
2008-08-27 16:07:27 +04:00
|
|
|
}
|
2006-10-26 02:45:22 +04:00
|
|
|
}
|
2014-04-23 03:23:18 +04:00
|
|
|
|
2010-02-24 02:30:39 +03:00
|
|
|
unsigned int modifierFlags = [[NSApp currentEvent] modifierFlags];
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t action = nsIDragService::DRAGDROP_ACTION_MOVE;
|
2006-10-26 02:45:22 +04:00
|
|
|
// force copy = option, alias = cmd-option, default is move
|
|
|
|
if (modifierFlags & NSAlternateKeyMask) {
|
|
|
|
if (modifierFlags & NSCommandKeyMask)
|
|
|
|
action = nsIDragService::DRAGDROP_ACTION_LINK;
|
|
|
|
else
|
|
|
|
action = nsIDragService::DRAGDROP_ACTION_COPY;
|
|
|
|
}
|
|
|
|
dragSession->SetDragAction(action);
|
|
|
|
}
|
|
|
|
|
2007-10-09 22:46:30 +04:00
|
|
|
// set up gecko event
|
2013-10-01 11:23:02 +04:00
|
|
|
WidgetDragEvent geckoEvent(true, aMessage, mGeckoChild);
|
2012-04-25 07:00:02 +04:00
|
|
|
nsCocoaUtils::InitInputEvent(geckoEvent, [NSApp currentEvent]);
|
2006-10-26 02:45:22 +04:00
|
|
|
|
2007-10-09 22:46:30 +04:00
|
|
|
// Use our own coordinates in the gecko event.
|
|
|
|
// Convert event from gecko global coords to gecko view coords.
|
2012-09-29 15:36:09 +04:00
|
|
|
NSPoint draggingLoc = [aSender draggingLocation];
|
|
|
|
|
2016-04-18 17:09:02 +03:00
|
|
|
geckoEvent.mRefPoint = [self convertWindowCoordinates:draggingLoc];
|
2007-10-09 22:46:30 +04:00
|
|
|
|
2008-04-08 08:38:52 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2015-04-22 00:44:10 +03:00
|
|
|
mGeckoChild->DispatchInputEvent(&geckoEvent);
|
2008-01-16 02:11:55 +03:00
|
|
|
if (!mGeckoChild)
|
2010-03-08 15:35:25 +03:00
|
|
|
return NSDragOperationNone;
|
|
|
|
|
|
|
|
if (dragSession) {
|
|
|
|
switch (aMessage) {
|
2015-09-02 09:08:02 +03:00
|
|
|
case eDragEnter:
|
2015-09-02 09:08:02 +03:00
|
|
|
case eDragOver: {
|
2015-06-05 15:33:29 +03:00
|
|
|
uint32_t dragAction;
|
|
|
|
dragSession->GetDragAction(&dragAction);
|
|
|
|
|
|
|
|
// If TakeChildProcessDragAction returns something other than
|
|
|
|
// DRAGDROP_ACTION_UNINITIALIZED, it means that the last event was sent
|
|
|
|
// to the child process and this event is also being sent to the child
|
|
|
|
// process. In this case, use the last event's action instead.
|
|
|
|
nsDragService* dragService = static_cast<nsDragService *>(mDragService);
|
|
|
|
int32_t childDragAction = dragService->TakeChildProcessDragAction();
|
|
|
|
if (childDragAction != nsIDragService::DRAGDROP_ACTION_UNINITIALIZED) {
|
|
|
|
dragAction = childDragAction;
|
|
|
|
}
|
|
|
|
|
|
|
|
return [self dragOperationFromDragAction:dragAction];
|
|
|
|
}
|
2015-09-02 09:08:02 +03:00
|
|
|
case eDragExit:
|
2015-09-02 09:08:01 +03:00
|
|
|
case eDrop: {
|
2010-03-08 15:35:25 +03:00
|
|
|
nsCOMPtr<nsIDOMNode> sourceNode;
|
|
|
|
dragSession->GetSourceNode(getter_AddRefs(sourceNode));
|
|
|
|
if (!sourceNode) {
|
|
|
|
// We're leaving a window while doing a drag that was
|
|
|
|
// initiated in a different app. End the drag session,
|
|
|
|
// since we're done with it for now (until the user
|
|
|
|
// drags back into mozilla).
|
2011-10-01 04:20:33 +04:00
|
|
|
mDragService->EndDragSession(false);
|
2010-03-08 15:35:25 +03:00
|
|
|
}
|
|
|
|
}
|
2015-08-26 15:56:59 +03:00
|
|
|
default:
|
|
|
|
break;
|
2006-10-26 02:45:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-08 15:35:25 +03:00
|
|
|
return NSDragOperationGeneric;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
2010-03-08 15:35:25 +03:00
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(NSDragOperationNone);
|
2006-10-26 02:45:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
- (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
2015-06-04 01:25:57 +03:00
|
|
|
MOZ_LOG(sCocoaLog, LogLevel::Info, ("ChildView draggingEntered: entered\n"));
|
2014-04-23 03:23:18 +04:00
|
|
|
|
2006-10-26 02:45:22 +04:00
|
|
|
// there should never be a globalDragPboard when "draggingEntered:" is
|
|
|
|
// called, but just in case we'll take care of it here.
|
|
|
|
[globalDragPboard release];
|
|
|
|
|
|
|
|
// Set the global drag pasteboard that will be used for this drag session.
|
|
|
|
// This will be set back to nil when the drag session ends (mouse exits
|
|
|
|
// the view or a drop happens within the view).
|
2015-08-15 00:33:59 +03:00
|
|
|
globalDragPboard = [[sender draggingPasteboard] retain];
|
2006-10-26 02:45:22 +04:00
|
|
|
|
2015-09-02 09:08:02 +03:00
|
|
|
return [self doDragAction:eDragEnter sender:sender];
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(NSDragOperationNone);
|
2006-10-26 02:45:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
- (NSDragOperation)draggingUpdated:(id <NSDraggingInfo>)sender
|
|
|
|
{
|
2015-06-04 01:25:57 +03:00
|
|
|
MOZ_LOG(sCocoaLog, LogLevel::Info, ("ChildView draggingUpdated: entered\n"));
|
2007-07-17 06:24:05 +04:00
|
|
|
|
2015-09-02 09:08:02 +03:00
|
|
|
return [self doDragAction:eDragOver sender:sender];
|
2006-10-26 02:45:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)draggingExited:(id <NSDraggingInfo>)sender
|
|
|
|
{
|
2015-06-04 01:25:57 +03:00
|
|
|
MOZ_LOG(sCocoaLog, LogLevel::Info, ("ChildView draggingExited: entered\n"));
|
2007-07-17 06:24:05 +04:00
|
|
|
|
2008-04-08 08:38:52 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2015-09-02 09:08:02 +03:00
|
|
|
[self doDragAction:eDragExit sender:sender];
|
2007-10-10 16:19:47 +04:00
|
|
|
NS_IF_RELEASE(mDragService);
|
2006-10-26 02:45:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)performDragOperation:(id <NSDraggingInfo>)sender
|
|
|
|
{
|
2008-04-08 08:38:52 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2015-09-02 09:08:01 +03:00
|
|
|
BOOL handled = [self doDragAction:eDrop sender:sender] != NSDragOperationNone;
|
2007-10-10 16:19:47 +04:00
|
|
|
NS_IF_RELEASE(mDragService);
|
|
|
|
return handled;
|
2007-06-30 07:19:41 +04:00
|
|
|
}
|
|
|
|
|
2011-04-26 05:37:20 +04:00
|
|
|
// NSDraggingSource
|
|
|
|
- (void)draggedImage:(NSImage *)anImage movedTo:(NSPoint)aPoint
|
|
|
|
{
|
|
|
|
// Get the drag service if it isn't already cached. The drag service
|
|
|
|
// isn't cached when dragging over a different application.
|
|
|
|
nsCOMPtr<nsIDragService> dragService = mDragService;
|
|
|
|
if (!dragService) {
|
|
|
|
dragService = do_GetService(kDragServiceContractID);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dragService) {
|
|
|
|
NSPoint pnt = [NSEvent mouseLocation];
|
|
|
|
FlipCocoaScreenCoordinate(pnt);
|
2015-09-24 16:09:54 +03:00
|
|
|
|
2015-11-19 09:34:20 +03:00
|
|
|
LayoutDeviceIntPoint devPoint = mGeckoChild->CocoaPointsToDevPixels(pnt);
|
2015-09-24 16:09:54 +03:00
|
|
|
dragService->DragMoved(devPoint.x, devPoint.y);
|
2011-04-26 05:37:20 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-30 07:19:41 +04:00
|
|
|
// NSDraggingSource
|
|
|
|
- (void)draggedImage:(NSImage *)anImage endedAt:(NSPoint)aPoint operation:(NSDragOperation)operation
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
gDraggedTransferables = nullptr;
|
2007-07-18 03:02:40 +04:00
|
|
|
|
2009-02-17 18:51:12 +03:00
|
|
|
NSEvent *currentEvent = [NSApp currentEvent];
|
|
|
|
gUserCancelledDrag = ([currentEvent type] == NSKeyDown &&
|
2012-07-04 09:59:50 +04:00
|
|
|
[currentEvent keyCode] == kVK_Escape);
|
2009-02-17 18:51:12 +03:00
|
|
|
|
2007-06-30 07:19:41 +04:00
|
|
|
if (!mDragService) {
|
|
|
|
CallGetService(kDragServiceContractID, &mDragService);
|
|
|
|
NS_ASSERTION(mDragService, "Couldn't get a drag service - big problem!");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mDragService) {
|
2009-04-13 17:00:29 +04:00
|
|
|
// set the dragend point from the current mouse location
|
|
|
|
nsDragService* dragService = static_cast<nsDragService *>(mDragService);
|
|
|
|
NSPoint pnt = [NSEvent mouseLocation];
|
|
|
|
FlipCocoaScreenCoordinate(pnt);
|
2009-04-16 19:58:23 +04:00
|
|
|
dragService->SetDragEndPoint(nsIntPoint(NSToIntRound(pnt.x), NSToIntRound(pnt.y)));
|
2009-04-13 17:00:29 +04:00
|
|
|
|
2014-04-23 03:23:18 +04:00
|
|
|
// XXX: dropEffect should be updated per |operation|.
|
2009-05-27 03:23:15 +04:00
|
|
|
// As things stand though, |operation| isn't well handled within "our"
|
|
|
|
// events, that is, when the drop happens within the window: it is set
|
|
|
|
// either to NSDragOperationGeneric or to NSDragOperationNone.
|
|
|
|
// For that reason, it's not yet possible to override dropEffect per the
|
2014-04-23 03:23:18 +04:00
|
|
|
// given OS value, and it's also unclear what's the correct dropEffect
|
2009-05-27 03:23:15 +04:00
|
|
|
// value for NSDragOperationGeneric that is passed by other applications.
|
|
|
|
// All that said, NSDragOperationNone is still reliable.
|
|
|
|
if (operation == NSDragOperationNone) {
|
|
|
|
nsCOMPtr<nsIDOMDataTransfer> dataTransfer;
|
|
|
|
dragService->GetDataTransfer(getter_AddRefs(dataTransfer));
|
2012-02-07 22:02:32 +04:00
|
|
|
if (dataTransfer)
|
|
|
|
dataTransfer->SetDropEffectInt(nsIDragService::DRAGDROP_ACTION_NONE);
|
2009-05-27 03:23:15 +04:00
|
|
|
}
|
|
|
|
|
2011-10-01 04:20:33 +04:00
|
|
|
mDragService->EndDragSession(true);
|
2007-06-30 07:19:41 +04:00
|
|
|
NS_RELEASE(mDragService);
|
|
|
|
}
|
2006-10-26 02:45:22 +04:00
|
|
|
|
|
|
|
[globalDragPboard release];
|
|
|
|
globalDragPboard = nil;
|
2009-11-06 13:21:41 +03:00
|
|
|
[gLastDragMouseDownEvent release];
|
|
|
|
gLastDragMouseDownEvent = nil;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2007-06-30 07:19:41 +04:00
|
|
|
}
|
2006-10-26 02:45:22 +04:00
|
|
|
|
2007-06-30 07:19:41 +04:00
|
|
|
// NSDraggingSource
|
|
|
|
// this is just implemented so we comply with the NSDraggingSource informal protocol
|
2009-09-01 05:00:13 +04:00
|
|
|
- (NSDragOperation)draggingSourceOperationMaskForLocal:(BOOL)isLocal
|
2007-06-30 07:19:41 +04:00
|
|
|
{
|
|
|
|
return UINT_MAX;
|
2006-10-26 02:45:22 +04:00
|
|
|
}
|
|
|
|
|
2007-07-17 06:24:05 +04:00
|
|
|
// This method is a callback typically invoked in response to a drag ending on the desktop
|
|
|
|
// or a Findow folder window; the argument passed is a path to the drop location, to be used
|
|
|
|
// in constructing a complete pathname for the file(s) we want to create as a result of
|
|
|
|
// the drag.
|
2009-09-01 05:00:13 +04:00
|
|
|
- (NSArray *)namesOfPromisedFilesDroppedAtDestination:(NSURL*)dropDestination
|
2007-07-17 06:24:05 +04:00
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NIL;
|
|
|
|
|
2007-07-17 06:24:05 +04:00
|
|
|
nsresult rv;
|
|
|
|
|
2015-06-04 01:25:57 +03:00
|
|
|
MOZ_LOG(sCocoaLog, LogLevel::Info, ("ChildView namesOfPromisedFilesDroppedAtDestination: entering callback for promised files\n"));
|
2007-07-17 06:24:05 +04:00
|
|
|
|
2012-06-06 06:08:30 +04:00
|
|
|
nsCOMPtr<nsIFile> targFile;
|
2011-10-01 04:20:33 +04:00
|
|
|
NS_NewLocalFile(EmptyString(), true, getter_AddRefs(targFile));
|
2007-07-17 06:24:05 +04:00
|
|
|
nsCOMPtr<nsILocalFileMac> macLocalFile = do_QueryInterface(targFile);
|
|
|
|
if (!macLocalFile) {
|
|
|
|
NS_ERROR("No Mac local file");
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!NS_SUCCEEDED(macLocalFile->InitWithCFURL((CFURLRef)dropDestination))) {
|
|
|
|
NS_ERROR("failed InitWithCFURL");
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
2007-07-18 03:02:40 +04:00
|
|
|
if (!gDraggedTransferables)
|
|
|
|
return nil;
|
2007-07-17 06:24:05 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t transferableCount;
|
2007-07-18 03:02:40 +04:00
|
|
|
rv = gDraggedTransferables->Count(&transferableCount);
|
2007-07-17 06:24:05 +04:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return nil;
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
for (uint32_t i = 0; i < transferableCount; i++) {
|
2007-07-17 06:24:05 +04:00
|
|
|
nsCOMPtr<nsISupports> genericItem;
|
2007-07-18 03:02:40 +04:00
|
|
|
gDraggedTransferables->GetElementAt(i, getter_AddRefs(genericItem));
|
2007-07-17 06:24:05 +04:00
|
|
|
nsCOMPtr<nsITransferable> item(do_QueryInterface(genericItem));
|
|
|
|
if (!item) {
|
|
|
|
NS_ERROR("no transferable");
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
2012-06-06 06:08:30 +04:00
|
|
|
item->SetTransferData(kFilePromiseDirectoryMime, macLocalFile, sizeof(nsIFile*));
|
2014-04-23 03:23:18 +04:00
|
|
|
|
2007-07-17 06:24:05 +04:00
|
|
|
// now request the kFilePromiseMime data, which will invoke the data provider
|
|
|
|
// If successful, the returned data is a reference to the resulting file.
|
|
|
|
nsCOMPtr<nsISupports> fileDataPrimitive;
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t dataSize = 0;
|
2007-07-17 06:24:05 +04:00
|
|
|
item->GetTransferData(kFilePromiseMime, getter_AddRefs(fileDataPrimitive), &dataSize);
|
|
|
|
}
|
2014-04-23 03:23:18 +04:00
|
|
|
|
2007-07-17 06:24:05 +04:00
|
|
|
NSPasteboard* generalPboard = [NSPasteboard pasteboardWithName:NSDragPboard];
|
|
|
|
NSData* data = [generalPboard dataForType:@"application/x-moz-file-promise-dest-filename"];
|
|
|
|
NSString* name = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
|
|
|
|
NSArray* rslt = [NSArray arrayWithObject:name];
|
|
|
|
|
|
|
|
[name release];
|
|
|
|
|
|
|
|
return rslt;
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NIL;
|
2007-07-17 06:24:05 +04:00
|
|
|
}
|
2006-10-26 02:45:22 +04:00
|
|
|
|
2008-12-15 23:56:29 +03:00
|
|
|
#pragma mark -
|
|
|
|
|
|
|
|
// Support for the "Services" menu. We currently only support sending strings
|
2009-03-18 05:04:01 +03:00
|
|
|
// and HTML to system services.
|
2008-12-15 23:56:29 +03:00
|
|
|
|
|
|
|
- (id)validRequestorForSendType:(NSString *)sendType
|
|
|
|
returnType:(NSString *)returnType
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NIL;
|
|
|
|
|
|
|
|
// sendType contains the type of data that the service would like this
|
|
|
|
// application to send to it. sendType is nil if the service is not
|
|
|
|
// requesting any data.
|
|
|
|
//
|
|
|
|
// returnType contains the type of data the the service would like to
|
|
|
|
// return to this application (e.g., to overwrite the selection).
|
|
|
|
// returnType is nil if the service will not return any data.
|
|
|
|
//
|
|
|
|
// The following condition thus triggers when the service expects a string
|
2010-01-11 04:45:45 +03:00
|
|
|
// or HTML from us or no data at all AND when the service will either not
|
|
|
|
// send back any data to us or will send a string or HTML back to us.
|
|
|
|
|
|
|
|
#define IsSupportedType(typeStr) ([typeStr isEqual:NSStringPboardType] || [typeStr isEqual:NSHTMLPboardType])
|
|
|
|
|
|
|
|
id result = nil;
|
2008-12-15 23:56:29 +03:00
|
|
|
|
2010-01-11 04:45:45 +03:00
|
|
|
if ((!sendType || IsSupportedType(sendType)) &&
|
|
|
|
(!returnType || IsSupportedType(returnType))) {
|
2008-12-15 23:56:29 +03:00
|
|
|
if (mGeckoChild) {
|
2010-01-11 04:45:45 +03:00
|
|
|
// Assume that this object will be able to handle this request.
|
|
|
|
result = self;
|
2009-03-18 05:04:01 +03:00
|
|
|
|
2010-01-11 04:45:45 +03:00
|
|
|
// Keep the ChildView alive during this operation.
|
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2014-04-23 03:23:18 +04:00
|
|
|
|
2010-01-11 04:45:45 +03:00
|
|
|
// Determine if there is a selection (if sending to the service).
|
|
|
|
if (sendType) {
|
2015-09-10 04:40:06 +03:00
|
|
|
WidgetQueryContentEvent event(true, eQueryContentState, mGeckoChild);
|
2010-03-11 00:24:40 +03:00
|
|
|
// This might destroy our widget (and null out mGeckoChild).
|
2010-01-11 04:45:45 +03:00
|
|
|
mGeckoChild->DispatchWindowEvent(event);
|
2010-03-11 00:24:40 +03:00
|
|
|
if (!mGeckoChild || !event.mSucceeded || !event.mReply.mHasSelection)
|
2010-01-11 04:45:45 +03:00
|
|
|
result = nil;
|
|
|
|
}
|
2009-12-31 01:29:26 +03:00
|
|
|
|
2010-01-11 04:45:45 +03:00
|
|
|
// Determine if we can paste (if receiving data from the service).
|
2010-03-11 00:24:40 +03:00
|
|
|
if (mGeckoChild && returnType) {
|
2013-09-27 10:20:54 +04:00
|
|
|
WidgetContentCommandEvent command(true,
|
2015-09-10 19:59:52 +03:00
|
|
|
eContentCommandPasteTransferable,
|
2013-09-27 10:20:54 +04:00
|
|
|
mGeckoChild, true);
|
2010-03-11 00:24:40 +03:00
|
|
|
// This might possibly destroy our widget (and null out mGeckoChild).
|
2010-01-11 04:45:45 +03:00
|
|
|
mGeckoChild->DispatchWindowEvent(command);
|
2010-03-11 00:24:40 +03:00
|
|
|
if (!mGeckoChild || !command.mSucceeded || !command.mIsEnabled)
|
2010-01-11 04:45:45 +03:00
|
|
|
result = nil;
|
|
|
|
}
|
2009-03-18 05:04:01 +03:00
|
|
|
}
|
2008-12-15 23:56:29 +03:00
|
|
|
}
|
|
|
|
|
2010-01-11 04:45:45 +03:00
|
|
|
#undef IsSupportedType
|
|
|
|
|
|
|
|
// Give the superclass a chance if this object will not handle this request.
|
|
|
|
if (!result)
|
|
|
|
result = [super validRequestorForSendType:sendType returnType:returnType];
|
|
|
|
|
|
|
|
return result;
|
2008-12-15 23:56:29 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)writeSelectionToPasteboard:(NSPasteboard *)pboard
|
|
|
|
types:(NSArray *)types
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2009-03-18 05:04:01 +03:00
|
|
|
|
|
|
|
// Make sure that the service will accept strings or HTML.
|
|
|
|
if ([types containsObject:NSStringPboardType] == NO &&
|
|
|
|
[types containsObject:NSHTMLPboardType] == NO)
|
2008-12-15 23:56:29 +03:00
|
|
|
return NO;
|
|
|
|
|
2009-03-18 05:04:01 +03:00
|
|
|
// Bail out if there is no Gecko object.
|
2008-12-15 23:56:29 +03:00
|
|
|
if (!mGeckoChild)
|
|
|
|
return NO;
|
2009-03-18 05:04:01 +03:00
|
|
|
|
|
|
|
// Obtain the current selection.
|
2015-09-10 04:40:05 +03:00
|
|
|
WidgetQueryContentEvent event(true, eQuerySelectionAsTransferable,
|
2013-10-01 11:23:00 +04:00
|
|
|
mGeckoChild);
|
2009-03-18 05:04:01 +03:00
|
|
|
mGeckoChild->DispatchWindowEvent(event);
|
|
|
|
if (!event.mSucceeded || !event.mReply.mTransferable)
|
|
|
|
return NO;
|
|
|
|
|
|
|
|
// Transform the transferable to an NSDictionary.
|
|
|
|
NSDictionary* pasteboardOutputDict = nsClipboard::PasteboardDictFromTransferable(event.mReply.mTransferable);
|
|
|
|
if (!pasteboardOutputDict)
|
2008-12-15 23:56:29 +03:00
|
|
|
return NO;
|
|
|
|
|
2009-03-18 05:04:01 +03:00
|
|
|
// Declare the pasteboard types.
|
|
|
|
unsigned int typeCount = [pasteboardOutputDict count];
|
2015-09-12 06:32:37 +03:00
|
|
|
NSMutableArray* declaredTypes = [NSMutableArray arrayWithCapacity:typeCount];
|
|
|
|
[declaredTypes addObjectsFromArray:[pasteboardOutputDict allKeys]];
|
|
|
|
[pboard declareTypes:declaredTypes owner:nil];
|
2009-03-18 05:04:01 +03:00
|
|
|
|
|
|
|
// Write the data to the pasteboard.
|
|
|
|
for (unsigned int i = 0; i < typeCount; i++) {
|
2015-09-12 06:32:37 +03:00
|
|
|
NSString* currentKey = [declaredTypes objectAtIndex:i];
|
2009-03-18 05:04:01 +03:00
|
|
|
id currentValue = [pasteboardOutputDict valueForKey:currentKey];
|
|
|
|
|
|
|
|
if (currentKey == NSStringPboardType ||
|
|
|
|
currentKey == kCorePboardType_url ||
|
|
|
|
currentKey == kCorePboardType_urld ||
|
|
|
|
currentKey == kCorePboardType_urln) {
|
|
|
|
[pboard setString:currentValue forType:currentKey];
|
|
|
|
} else if (currentKey == NSHTMLPboardType) {
|
|
|
|
[pboard setString:(nsClipboard::WrapHtmlForSystemPasteboard(currentValue)) forType:currentKey];
|
|
|
|
} else if (currentKey == NSTIFFPboardType) {
|
|
|
|
[pboard setData:currentValue forType:currentKey];
|
|
|
|
} else if (currentKey == NSFilesPromisePboardType) {
|
2014-04-23 03:23:18 +04:00
|
|
|
[pboard setPropertyList:currentValue forType:currentKey];
|
2009-03-18 05:04:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return YES;
|
2008-12-15 23:56:29 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(NO);
|
|
|
|
}
|
|
|
|
|
2010-01-11 04:45:45 +03:00
|
|
|
// Called if the service wants us to replace the current selection.
|
2008-12-15 23:56:29 +03:00
|
|
|
- (BOOL)readSelectionFromPasteboard:(NSPasteboard *)pboard
|
|
|
|
{
|
2010-01-11 04:45:45 +03:00
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsITransferable> trans = do_CreateInstance("@mozilla.org/widget/transferable;1", &rv);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return NO;
|
2012-07-30 18:20:58 +04:00
|
|
|
trans->Init(nullptr);
|
2010-01-11 04:45:45 +03:00
|
|
|
|
|
|
|
trans->AddDataFlavor(kUnicodeMime);
|
|
|
|
trans->AddDataFlavor(kHTMLMime);
|
|
|
|
|
|
|
|
rv = nsClipboard::TransferableFromPasteboard(trans, pboard);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return NO;
|
|
|
|
|
2011-10-01 04:20:33 +04:00
|
|
|
NS_ENSURE_TRUE(mGeckoChild, false);
|
2010-01-11 04:45:45 +03:00
|
|
|
|
2013-09-27 10:20:54 +04:00
|
|
|
WidgetContentCommandEvent command(true,
|
2015-09-10 19:59:52 +03:00
|
|
|
eContentCommandPasteTransferable,
|
2013-09-27 10:20:54 +04:00
|
|
|
mGeckoChild);
|
2010-01-11 04:45:45 +03:00
|
|
|
command.mTransferable = trans;
|
|
|
|
mGeckoChild->DispatchWindowEvent(command);
|
2014-04-23 03:23:18 +04:00
|
|
|
|
2010-01-11 04:45:45 +03:00
|
|
|
return command.mSucceeded && command.mIsEnabled;
|
2008-12-15 23:56:29 +03:00
|
|
|
}
|
|
|
|
|
2006-10-26 02:45:22 +04:00
|
|
|
#pragma mark -
|
|
|
|
|
2006-09-11 19:47:35 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
|
|
|
|
/* Every ChildView has a corresponding mozDocAccessible object that is doing all
|
|
|
|
the heavy lifting. The topmost ChildView corresponds to a mozRootAccessible
|
|
|
|
object.
|
|
|
|
|
|
|
|
All ChildView needs to do is to route all accessibility calls (from the NSAccessibility APIs)
|
|
|
|
down to its object, pretending that they are the same.
|
|
|
|
*/
|
|
|
|
- (id<mozAccessible>)accessible
|
|
|
|
{
|
2007-06-16 02:34:48 +04:00
|
|
|
if (!mGeckoChild)
|
|
|
|
return nil;
|
|
|
|
|
2006-09-14 13:29:28 +04:00
|
|
|
id<mozAccessible> nativeAccessible = nil;
|
2008-01-16 02:11:55 +03:00
|
|
|
|
2008-04-08 08:38:52 +04:00
|
|
|
nsAutoRetainCocoaObject kungFuDeathGrip(self);
|
2008-01-16 02:11:55 +03:00
|
|
|
nsCOMPtr<nsIWidget> kungFuDeathGrip2(mGeckoChild);
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<a11y::Accessible> accessible = mGeckoChild->GetDocumentAccessible();
|
2012-08-20 18:27:01 +04:00
|
|
|
if (!accessible)
|
2008-01-16 02:11:55 +03:00
|
|
|
return nil;
|
|
|
|
|
2012-08-20 18:27:01 +04:00
|
|
|
accessible->GetNativeInterface((void**)&nativeAccessible);
|
2006-09-11 19:47:35 +04:00
|
|
|
|
2006-09-13 20:07:14 +04:00
|
|
|
#ifdef DEBUG_hakan
|
2006-11-15 14:08:14 +03:00
|
|
|
NSAssert(![nativeAccessible isExpired], @"native acc is expired!!!");
|
2006-09-11 19:47:35 +04:00
|
|
|
#endif
|
2012-08-20 18:27:01 +04:00
|
|
|
|
2006-09-11 19:47:35 +04:00
|
|
|
return nativeAccessible;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Implementation of formal mozAccessible formal protocol (enabling mozViews
|
|
|
|
to talk to mozAccessible objects in the accessibility module). */
|
|
|
|
|
2006-11-15 14:08:14 +03:00
|
|
|
- (BOOL)hasRepresentedView
|
|
|
|
{
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id)representedView
|
|
|
|
{
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2006-09-19 12:44:03 +04:00
|
|
|
- (BOOL)isRoot
|
2006-09-11 19:47:35 +04:00
|
|
|
{
|
2006-09-19 12:44:03 +04:00
|
|
|
return [[self accessible] isRoot];
|
2006-09-11 19:47:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
- (void)printHierarchy
|
|
|
|
{
|
|
|
|
[[self accessible] printHierarchy];
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#pragma mark -
|
|
|
|
|
|
|
|
// general
|
|
|
|
|
|
|
|
- (BOOL)accessibilityIsIgnored
|
|
|
|
{
|
2012-08-20 18:27:01 +04:00
|
|
|
if (!mozilla::a11y::ShouldA11yBeEnabled())
|
|
|
|
return [super accessibilityIsIgnored];
|
|
|
|
|
2006-09-11 19:47:35 +04:00
|
|
|
return [[self accessible] accessibilityIsIgnored];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id)accessibilityHitTest:(NSPoint)point
|
|
|
|
{
|
2012-08-20 18:27:01 +04:00
|
|
|
if (!mozilla::a11y::ShouldA11yBeEnabled())
|
|
|
|
return [super accessibilityHitTest:point];
|
|
|
|
|
2006-09-11 19:47:35 +04:00
|
|
|
return [[self accessible] accessibilityHitTest:point];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id)accessibilityFocusedUIElement
|
|
|
|
{
|
2012-08-20 18:27:01 +04:00
|
|
|
if (!mozilla::a11y::ShouldA11yBeEnabled())
|
|
|
|
return [super accessibilityFocusedUIElement];
|
|
|
|
|
2006-09-11 19:47:35 +04:00
|
|
|
return [[self accessible] accessibilityFocusedUIElement];
|
|
|
|
}
|
|
|
|
|
|
|
|
// actions
|
|
|
|
|
|
|
|
- (NSArray*)accessibilityActionNames
|
|
|
|
{
|
2012-08-20 18:27:01 +04:00
|
|
|
if (!mozilla::a11y::ShouldA11yBeEnabled())
|
|
|
|
return [super accessibilityActionNames];
|
|
|
|
|
2006-09-11 19:47:35 +04:00
|
|
|
return [[self accessible] accessibilityActionNames];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSString*)accessibilityActionDescription:(NSString*)action
|
|
|
|
{
|
2012-08-20 18:27:01 +04:00
|
|
|
if (!mozilla::a11y::ShouldA11yBeEnabled())
|
|
|
|
return [super accessibilityActionDescription:action];
|
|
|
|
|
2006-09-11 19:47:35 +04:00
|
|
|
return [[self accessible] accessibilityActionDescription:action];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)accessibilityPerformAction:(NSString*)action
|
|
|
|
{
|
2012-08-20 18:27:01 +04:00
|
|
|
if (!mozilla::a11y::ShouldA11yBeEnabled())
|
|
|
|
return [super accessibilityPerformAction:action];
|
|
|
|
|
2006-09-11 19:47:35 +04:00
|
|
|
return [[self accessible] accessibilityPerformAction:action];
|
|
|
|
}
|
|
|
|
|
|
|
|
// attributes
|
|
|
|
|
|
|
|
- (NSArray*)accessibilityAttributeNames
|
|
|
|
{
|
2012-08-20 18:27:01 +04:00
|
|
|
if (!mozilla::a11y::ShouldA11yBeEnabled())
|
|
|
|
return [super accessibilityAttributeNames];
|
|
|
|
|
2006-09-11 19:47:35 +04:00
|
|
|
return [[self accessible] accessibilityAttributeNames];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)accessibilityIsAttributeSettable:(NSString*)attribute
|
|
|
|
{
|
2012-08-20 18:27:01 +04:00
|
|
|
if (!mozilla::a11y::ShouldA11yBeEnabled())
|
|
|
|
return [super accessibilityIsAttributeSettable:attribute];
|
|
|
|
|
2006-09-11 19:47:35 +04:00
|
|
|
return [[self accessible] accessibilityIsAttributeSettable:attribute];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id)accessibilityAttributeValue:(NSString*)attribute
|
|
|
|
{
|
2008-02-21 02:47:05 +03:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NIL;
|
|
|
|
|
2012-08-20 18:27:01 +04:00
|
|
|
if (!mozilla::a11y::ShouldA11yBeEnabled())
|
|
|
|
return [super accessibilityAttributeValue:attribute];
|
|
|
|
|
2006-09-14 13:29:28 +04:00
|
|
|
id<mozAccessible> accessible = [self accessible];
|
2012-08-20 18:27:01 +04:00
|
|
|
|
2006-09-11 19:47:35 +04:00
|
|
|
// if we're the root (topmost) accessible, we need to return our native AXParent as we
|
|
|
|
// traverse outside to the hierarchy of whoever embeds us. thus, fall back on NSView's
|
|
|
|
// default implementation for this attribute.
|
2006-09-19 12:44:03 +04:00
|
|
|
if ([attribute isEqualToString:NSAccessibilityParentAttribute] && [accessible isRoot]) {
|
2006-09-11 19:47:35 +04:00
|
|
|
id parentAccessible = [super accessibilityAttributeValue:attribute];
|
|
|
|
return parentAccessible;
|
|
|
|
}
|
|
|
|
|
|
|
|
return [accessible accessibilityAttributeValue:attribute];
|
2008-02-21 02:47:05 +03:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NIL;
|
2006-09-11 19:47:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ACCESSIBILITY */
|
|
|
|
|
2001-11-06 18:35:24 +03:00
|
|
|
@end
|
2007-04-15 17:43:55 +04:00
|
|
|
|
2009-09-23 06:31:37 +04:00
|
|
|
#pragma mark -
|
|
|
|
|
|
|
|
void
|
|
|
|
ChildViewMouseTracker::OnDestroyView(ChildView* aView)
|
|
|
|
{
|
2011-08-08 18:43:13 +04:00
|
|
|
if (sLastMouseEventView == aView) {
|
2009-09-23 06:31:37 +04:00
|
|
|
sLastMouseEventView = nil;
|
2011-08-13 18:25:39 +04:00
|
|
|
[sLastMouseMoveEvent release];
|
|
|
|
sLastMouseMoveEvent = nil;
|
2011-08-08 18:43:13 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChildViewMouseTracker::OnDestroyWindow(NSWindow* aWindow)
|
|
|
|
{
|
|
|
|
if (sWindowUnderMouse == aWindow) {
|
|
|
|
sWindowUnderMouse = nil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChildViewMouseTracker::MouseEnteredWindow(NSEvent* aEvent)
|
|
|
|
{
|
|
|
|
sWindowUnderMouse = [aEvent window];
|
|
|
|
ReEvaluateMouseEnterState(aEvent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChildViewMouseTracker::MouseExitedWindow(NSEvent* aEvent)
|
|
|
|
{
|
|
|
|
if (sWindowUnderMouse == [aEvent window]) {
|
|
|
|
sWindowUnderMouse = nil;
|
|
|
|
ReEvaluateMouseEnterState(aEvent);
|
|
|
|
}
|
2009-09-23 06:31:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-09-18 03:36:03 +04:00
|
|
|
ChildViewMouseTracker::ReEvaluateMouseEnterState(NSEvent* aEvent, ChildView* aOldView)
|
2009-09-23 06:31:37 +04:00
|
|
|
{
|
2013-09-18 03:36:03 +04:00
|
|
|
ChildView* oldView = aOldView ? aOldView : sLastMouseEventView;
|
2009-12-12 00:56:59 +03:00
|
|
|
sLastMouseEventView = ViewForEvent(aEvent);
|
|
|
|
if (sLastMouseEventView != oldView) {
|
2009-09-23 06:31:37 +04:00
|
|
|
// Send enter and / or exit events.
|
2013-10-02 10:38:27 +04:00
|
|
|
WidgetMouseEvent::exitType type =
|
|
|
|
[sLastMouseEventView window] == [oldView window] ?
|
|
|
|
WidgetMouseEvent::eChild : WidgetMouseEvent::eTopLevel;
|
2009-10-21 11:02:13 +04:00
|
|
|
[oldView sendMouseEnterOrExitEvent:aEvent enter:NO type:type];
|
2009-09-23 06:31:37 +04:00
|
|
|
// After the cursor exits the window set it to a visible regular arrow cursor.
|
2013-10-02 10:38:27 +04:00
|
|
|
if (type == WidgetMouseEvent::eTopLevel) {
|
2009-09-23 06:31:37 +04:00
|
|
|
[[nsCursorManager sharedInstance] setCursor:eCursor_standard];
|
|
|
|
}
|
2009-12-12 00:56:59 +03:00
|
|
|
[sLastMouseEventView sendMouseEnterOrExitEvent:aEvent enter:YES type:type];
|
2009-09-23 06:31:37 +04:00
|
|
|
}
|
2009-12-12 00:56:59 +03:00
|
|
|
}
|
|
|
|
|
2011-08-13 18:25:39 +04:00
|
|
|
void
|
|
|
|
ChildViewMouseTracker::ResendLastMouseMoveEvent()
|
|
|
|
{
|
|
|
|
if (sLastMouseMoveEvent) {
|
|
|
|
MouseMoved(sLastMouseMoveEvent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-12 00:56:59 +03:00
|
|
|
void
|
|
|
|
ChildViewMouseTracker::MouseMoved(NSEvent* aEvent)
|
|
|
|
{
|
2011-08-08 18:43:13 +04:00
|
|
|
MouseEnteredWindow(aEvent);
|
2009-12-12 00:56:59 +03:00
|
|
|
[sLastMouseEventView handleMouseMoved:aEvent];
|
2011-08-13 18:25:39 +04:00
|
|
|
if (sLastMouseMoveEvent != aEvent) {
|
|
|
|
[sLastMouseMoveEvent release];
|
|
|
|
sLastMouseMoveEvent = [aEvent retain];
|
|
|
|
}
|
2009-09-23 06:31:37 +04:00
|
|
|
}
|
|
|
|
|
2011-08-18 02:30:52 +04:00
|
|
|
void
|
|
|
|
ChildViewMouseTracker::MouseScrolled(NSEvent* aEvent)
|
|
|
|
{
|
|
|
|
if (!nsCocoaUtils::IsMomentumScrollEvent(aEvent)) {
|
|
|
|
// Store the position so we can pin future momentum scroll events.
|
|
|
|
sLastScrollEventScreenLocation = nsCocoaUtils::ScreenLocationForEvent(aEvent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-23 06:31:37 +04:00
|
|
|
ChildView*
|
|
|
|
ChildViewMouseTracker::ViewForEvent(NSEvent* aEvent)
|
|
|
|
{
|
2011-08-08 18:43:13 +04:00
|
|
|
NSWindow* window = sWindowUnderMouse;
|
2010-07-16 16:48:02 +04:00
|
|
|
if (!window)
|
2009-09-23 06:31:37 +04:00
|
|
|
return nil;
|
|
|
|
|
|
|
|
NSPoint windowEventLocation = nsCocoaUtils::EventLocationForWindow(aEvent, window);
|
|
|
|
NSView* view = [[[window contentView] superview] hitTest:windowEventLocation];
|
2013-02-06 01:40:34 +04:00
|
|
|
|
2010-07-16 16:48:02 +04:00
|
|
|
if (![view isKindOfClass:[ChildView class]])
|
|
|
|
return nil;
|
|
|
|
|
|
|
|
ChildView* childView = (ChildView*)view;
|
2010-08-09 20:12:50 +04:00
|
|
|
// If childView is being destroyed return nil.
|
|
|
|
if (![childView widget])
|
|
|
|
return nil;
|
2010-07-16 16:48:02 +04:00
|
|
|
return WindowAcceptsEvent(window, aEvent, childView) ? childView : nil;
|
2009-09-23 06:31:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL
|
2010-07-16 16:48:02 +04:00
|
|
|
ChildViewMouseTracker::WindowAcceptsEvent(NSWindow* aWindow, NSEvent* aEvent,
|
|
|
|
ChildView* aView, BOOL aIsClickThrough)
|
2009-09-23 06:31:37 +04:00
|
|
|
{
|
|
|
|
// Right mouse down events may get through to all windows, even to a top level
|
|
|
|
// window with an open sheet.
|
2010-05-14 14:21:25 +04:00
|
|
|
if (!aWindow || [aEvent type] == NSRightMouseDown)
|
2009-09-23 06:31:37 +04:00
|
|
|
return YES;
|
|
|
|
|
|
|
|
id delegate = [aWindow delegate];
|
|
|
|
if (!delegate || ![delegate isKindOfClass:[WindowDelegate class]])
|
|
|
|
return YES;
|
|
|
|
|
|
|
|
nsIWidget *windowWidget = [(WindowDelegate *)delegate geckoWidget];
|
|
|
|
if (!windowWidget)
|
|
|
|
return YES;
|
|
|
|
|
2010-05-14 14:21:25 +04:00
|
|
|
NSWindow* topLevelWindow = nil;
|
|
|
|
|
2014-03-19 20:48:08 +04:00
|
|
|
switch (windowWidget->WindowType()) {
|
2009-09-23 06:31:37 +04:00
|
|
|
case eWindowType_popup:
|
|
|
|
// If this is a context menu, it won't have a parent. So we'll always
|
|
|
|
// accept mouse move events on context menus even when none of our windows
|
|
|
|
// is active, which is the right thing to do.
|
|
|
|
// For panels, the parent window is the XUL window that owns the panel.
|
2010-07-16 16:48:02 +04:00
|
|
|
return WindowAcceptsEvent([aWindow parentWindow], aEvent, aView, aIsClickThrough);
|
2009-09-23 06:31:37 +04:00
|
|
|
|
|
|
|
case eWindowType_toplevel:
|
|
|
|
case eWindowType_dialog:
|
2010-05-14 14:21:25 +04:00
|
|
|
if ([aWindow attachedSheet])
|
|
|
|
return NO;
|
2009-09-23 06:31:37 +04:00
|
|
|
|
2010-05-14 14:21:25 +04:00
|
|
|
topLevelWindow = aWindow;
|
|
|
|
break;
|
2009-09-23 06:31:37 +04:00
|
|
|
case eWindowType_sheet: {
|
|
|
|
nsIWidget* parentWidget = windowWidget->GetSheetWindowParent();
|
|
|
|
if (!parentWidget)
|
|
|
|
return YES;
|
|
|
|
|
2010-05-14 14:21:25 +04:00
|
|
|
topLevelWindow = (NSWindow*)parentWidget->GetNativeData(NS_NATIVE_WINDOW);
|
|
|
|
break;
|
2009-09-23 06:31:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
return YES;
|
|
|
|
}
|
2010-05-14 14:21:25 +04:00
|
|
|
|
|
|
|
if (!topLevelWindow ||
|
2010-07-16 16:48:02 +04:00
|
|
|
([topLevelWindow isMainWindow] && !aIsClickThrough) ||
|
2010-05-14 14:21:25 +04:00
|
|
|
[aEvent type] == NSOtherMouseDown ||
|
|
|
|
(([aEvent modifierFlags] & NSCommandKeyMask) != 0 &&
|
|
|
|
[aEvent type] != NSMouseMoved))
|
|
|
|
return YES;
|
|
|
|
|
|
|
|
// If we're here then we're dealing with a left click or mouse move on an
|
2010-07-16 16:48:02 +04:00
|
|
|
// inactive window or something similar. Ask Gecko what to do.
|
|
|
|
return [aView inactiveWindowAcceptsMouseEvent:aEvent];
|
2009-09-23 06:31:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark -
|
|
|
|
|
2014-06-04 16:44:27 +04:00
|
|
|
@interface EventThreadRunner(Private)
|
|
|
|
- (void)runEventThread;
|
|
|
|
- (void)shutdownAndReleaseCalledOnEventThread;
|
|
|
|
- (void)shutdownAndReleaseCalledOnAnyThread;
|
|
|
|
- (void)handleEvent:(CGEventRef)cgEvent type:(CGEventType)type;
|
|
|
|
@end
|
|
|
|
|
|
|
|
static EventThreadRunner* sEventThreadRunner = nil;
|
|
|
|
|
|
|
|
@implementation EventThreadRunner
|
|
|
|
|
|
|
|
+ (void)start
|
|
|
|
{
|
|
|
|
sEventThreadRunner = [[EventThreadRunner alloc] init];
|
|
|
|
}
|
|
|
|
|
|
|
|
+ (void)stop
|
|
|
|
{
|
|
|
|
if (sEventThreadRunner) {
|
|
|
|
[sEventThreadRunner shutdownAndReleaseCalledOnAnyThread];
|
|
|
|
sEventThreadRunner = nil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id)init
|
|
|
|
{
|
|
|
|
if ((self = [super init])) {
|
|
|
|
mThread = nil;
|
|
|
|
[NSThread detachNewThreadSelector:@selector(runEventThread)
|
|
|
|
toTarget:self
|
|
|
|
withObject:nil];
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CGEventRef
|
|
|
|
HandleEvent(CGEventTapProxy aProxy, CGEventType aType,
|
|
|
|
CGEventRef aEvent, void* aClosure)
|
|
|
|
{
|
|
|
|
[(EventThreadRunner*)aClosure handleEvent:aEvent type:aType];
|
|
|
|
return aEvent;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)runEventThread
|
|
|
|
{
|
|
|
|
char aLocal;
|
|
|
|
profiler_register_thread("APZC Event Thread", &aLocal);
|
|
|
|
PR_SetCurrentThreadName("APZC Event Thread");
|
|
|
|
|
|
|
|
mThread = [NSThread currentThread];
|
|
|
|
ProcessSerialNumber currentProcess;
|
|
|
|
GetCurrentProcess(¤tProcess);
|
|
|
|
CFMachPortRef eventPort =
|
|
|
|
CGEventTapCreateForPSN(¤tProcess,
|
|
|
|
kCGHeadInsertEventTap,
|
|
|
|
kCGEventTapOptionListenOnly,
|
2014-06-07 02:50:00 +04:00
|
|
|
CGEventMaskBit(kCGEventScrollWheel),
|
2014-06-04 16:44:27 +04:00
|
|
|
HandleEvent,
|
|
|
|
self);
|
|
|
|
CFRunLoopSourceRef eventPortSource =
|
|
|
|
CFMachPortCreateRunLoopSource(kCFAllocatorSystemDefault, eventPort, 0);
|
|
|
|
CFRunLoopAddSource(CFRunLoopGetCurrent(), eventPortSource, kCFRunLoopCommonModes);
|
|
|
|
CFRunLoopRun();
|
|
|
|
CFRunLoopRemoveSource(CFRunLoopGetCurrent(), eventPortSource, kCFRunLoopCommonModes);
|
|
|
|
CFRelease(eventPortSource);
|
|
|
|
CFRelease(eventPort);
|
|
|
|
[self release];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)shutdownAndReleaseCalledOnEventThread
|
|
|
|
{
|
|
|
|
CFRunLoopStop(CFRunLoopGetCurrent());
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)shutdownAndReleaseCalledOnAnyThread
|
|
|
|
{
|
|
|
|
[self performSelector:@selector(shutdownAndReleaseCalledOnEventThread) onThread:mThread withObject:nil waitUntilDone:NO];
|
|
|
|
}
|
|
|
|
|
2015-09-10 01:07:29 +03:00
|
|
|
static const CGEventField kCGWindowNumberField = (const CGEventField) 51;
|
2014-06-04 16:44:27 +04:00
|
|
|
|
|
|
|
// Called on scroll thread
|
|
|
|
- (void)handleEvent:(CGEventRef)cgEvent type:(CGEventType)type
|
|
|
|
{
|
|
|
|
if (type != kCGEventScrollWheel) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int windowNumber = CGEventGetIntegerValueField(cgEvent, kCGWindowNumberField);
|
|
|
|
NSWindow* window = [NSApp windowWithWindowNumber:windowNumber];
|
|
|
|
if (!window || ![window isKindOfClass:[BaseWindow class]]) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ChildView* childView = [(BaseWindow*)window mainChildView];
|
|
|
|
[childView handleAsyncScrollEvent:cgEvent ofType:type];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2009-02-06 20:36:04 +03:00
|
|
|
@interface NSView (MethodSwizzling)
|
|
|
|
- (BOOL)nsChildView_NSView_mouseDownCanMoveWindow;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation NSView (MethodSwizzling)
|
|
|
|
|
|
|
|
// All top-level browser windows belong to the ToolbarWindow class and have
|
|
|
|
// NSTexturedBackgroundWindowMask turned on in their "style" (see particularly
|
|
|
|
// [ToolbarWindow initWithContentRect:...] in nsCocoaWindow.mm). This style
|
|
|
|
// normally means the window "may be moved by clicking and dragging anywhere
|
|
|
|
// in the window background", but we've suppressed this by giving the
|
|
|
|
// ChildView class a mouseDownCanMoveWindow method that always returns NO.
|
|
|
|
// Normally a ToolbarWindow's contentView (not a ChildView) returns YES when
|
|
|
|
// NSTexturedBackgroundWindowMask is turned on. But normally this makes no
|
|
|
|
// difference. However, under some (probably very unusual) circumstances
|
|
|
|
// (and only on Leopard) it *does* make a difference -- for example it
|
|
|
|
// triggers bmo bugs 431902 and 476393. So here we make sure that a
|
|
|
|
// ToolbarWindow's contentView always returns NO from the
|
|
|
|
// mouseDownCanMoveWindow method.
|
|
|
|
- (BOOL)nsChildView_NSView_mouseDownCanMoveWindow
|
|
|
|
{
|
|
|
|
NSWindow *ourWindow = [self window];
|
|
|
|
NSView *contentView = [ourWindow contentView];
|
|
|
|
if ([ourWindow isKindOfClass:[ToolbarWindow class]] && (self == contentView))
|
2013-02-06 01:40:34 +04:00
|
|
|
return [ourWindow isMovableByWindowBackground];
|
2009-02-06 20:36:04 +03:00
|
|
|
return [self nsChildView_NSView_mouseDownCanMoveWindow];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
2011-08-19 00:39:54 +04:00
|
|
|
|
|
|
|
#ifdef __LP64__
|
|
|
|
// When using blocks, at least on OS X 10.7, the OS sometimes calls
|
|
|
|
// +[NSEvent removeMonitor:] more than once on a single event monitor, which
|
|
|
|
// causes crashes. See bug 678607. We hook these methods to work around
|
|
|
|
// the problem.
|
|
|
|
@interface NSEvent (MethodSwizzling)
|
|
|
|
+ (id)nsChildView_NSEvent_addLocalMonitorForEventsMatchingMask:(unsigned long long)mask handler:(id)block;
|
|
|
|
+ (void)nsChildView_NSEvent_removeMonitor:(id)eventMonitor;
|
|
|
|
@end
|
|
|
|
|
|
|
|
// This is a local copy of the AppKit frameworks sEventObservers hashtable.
|
|
|
|
// It only stores "local monitors". We use it to ensure that +[NSEvent
|
|
|
|
// removeMonitor:] is never called more than once on the same local monitor.
|
|
|
|
static NSHashTable *sLocalEventObservers = nil;
|
|
|
|
|
|
|
|
@implementation NSEvent (MethodSwizzling)
|
|
|
|
|
|
|
|
+ (id)nsChildView_NSEvent_addLocalMonitorForEventsMatchingMask:(unsigned long long)mask handler:(id)block
|
|
|
|
{
|
|
|
|
if (!sLocalEventObservers) {
|
|
|
|
sLocalEventObservers = [[NSHashTable hashTableWithOptions:
|
|
|
|
NSHashTableStrongMemory | NSHashTableObjectPointerPersonality] retain];
|
|
|
|
}
|
|
|
|
id retval =
|
|
|
|
[self nsChildView_NSEvent_addLocalMonitorForEventsMatchingMask:mask handler:block];
|
|
|
|
if (sLocalEventObservers && retval && ![sLocalEventObservers containsObject:retval]) {
|
|
|
|
[sLocalEventObservers addObject:retval];
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ (void)nsChildView_NSEvent_removeMonitor:(id)eventMonitor
|
|
|
|
{
|
|
|
|
if (sLocalEventObservers && [eventMonitor isKindOfClass: ::NSClassFromString(@"_NSLocalEventObserver")]) {
|
|
|
|
if (![sLocalEventObservers containsObject:eventMonitor]) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
[sLocalEventObservers removeObject:eventMonitor];
|
|
|
|
}
|
|
|
|
[self nsChildView_NSEvent_removeMonitor:eventMonitor];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
#endif // #ifdef __LP64__
|