2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1998-09-23 19:19:23 +00:00
|
|
|
#ifndef nsBaseWidget_h__
|
|
|
|
#define nsBaseWidget_h__
|
|
|
|
|
2013-09-25 11:21:18 +00:00
|
|
|
#include "mozilla/EventForwards.h"
|
2012-07-24 19:01:09 +00:00
|
|
|
#include "mozilla/WidgetUtils.h"
|
1998-11-24 14:57:09 +00:00
|
|
|
#include "nsRect.h"
|
1998-09-23 19:19:23 +00:00
|
|
|
#include "nsIWidget.h"
|
2010-08-20 19:29:02 +00:00
|
|
|
#include "nsWidgetsCID.h"
|
2012-06-06 02:08:30 +00:00
|
|
|
#include "nsIFile.h"
|
1998-09-23 19:19:23 +00:00
|
|
|
#include "nsString.h"
|
1999-05-26 21:12:54 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2009-07-22 00:44:55 +00:00
|
|
|
#include "nsAutoPtr.h"
|
2012-06-23 01:13:56 +00:00
|
|
|
#include "nsIRollupListener.h"
|
2013-06-17 02:50:32 +00:00
|
|
|
#include "nsIObserver.h"
|
2013-09-24 10:04:14 +00:00
|
|
|
#include "nsIWidgetListener.h"
|
|
|
|
#include "nsPIDOMWindow.h"
|
2015-02-18 06:27:53 +00:00
|
|
|
#include "nsWeakReference.h"
|
2013-01-15 12:22:03 +00:00
|
|
|
#include <algorithm>
|
2007-12-03 16:33:42 +00:00
|
|
|
class nsIContent;
|
|
|
|
class nsAutoRollup;
|
2010-03-01 08:03:49 +00:00
|
|
|
class gfxContext;
|
2007-12-03 16:33:42 +00:00
|
|
|
|
2012-11-18 02:01:44 +00:00
|
|
|
namespace mozilla {
|
2012-08-15 18:52:37 +00:00
|
|
|
#ifdef ACCESSIBILITY
|
2012-11-18 02:01:44 +00:00
|
|
|
namespace a11y {
|
2012-08-15 18:52:37 +00:00
|
|
|
class Accessible;
|
2012-11-18 02:01:44 +00:00
|
|
|
}
|
2012-08-15 18:52:37 +00:00
|
|
|
#endif
|
|
|
|
|
2012-01-19 14:45:37 +00:00
|
|
|
namespace layers {
|
2012-07-31 00:42:26 +00:00
|
|
|
class BasicLayerManager;
|
2012-01-19 14:45:37 +00:00
|
|
|
class CompositorChild;
|
|
|
|
class CompositorParent;
|
2014-12-15 09:47:15 +00:00
|
|
|
class APZCTreeManager;
|
|
|
|
class GeckoContentController;
|
2015-02-07 00:45:23 +00:00
|
|
|
class APZEventState;
|
2014-12-18 23:25:03 +00:00
|
|
|
struct ScrollableLayerGuid;
|
2015-02-06 23:11:30 +00:00
|
|
|
struct SetTargetAPZCCallback;
|
2015-03-19 10:33:33 +00:00
|
|
|
struct SetAllowedTouchBehaviorCallback;
|
2012-01-19 14:45:37 +00:00
|
|
|
}
|
2014-12-18 16:30:05 +00:00
|
|
|
|
2014-12-19 20:52:42 +00:00
|
|
|
class CompositorVsyncDispatcher;
|
2012-01-19 14:45:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace base {
|
|
|
|
class Thread;
|
|
|
|
}
|
|
|
|
|
2013-12-14 20:40:56 +00:00
|
|
|
// Windows specific constant indicating the maximum number of touch points the
|
|
|
|
// inject api will allow. This also sets the maximum numerical value for touch
|
|
|
|
// ids we can use when injecting touch points on Windows.
|
|
|
|
#define TOUCH_INJECT_MAX_POINTS 256
|
|
|
|
|
2013-06-17 02:50:32 +00:00
|
|
|
class nsBaseWidget;
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class WidgetShutdownObserver final : public nsIObserver
|
2013-06-17 02:50:32 +00:00
|
|
|
{
|
2014-06-24 16:36:44 +00:00
|
|
|
~WidgetShutdownObserver() {}
|
|
|
|
|
2013-06-17 02:50:32 +00:00
|
|
|
public:
|
2014-09-01 03:33:13 +00:00
|
|
|
explicit WidgetShutdownObserver(nsBaseWidget* aWidget)
|
2013-06-17 02:50:32 +00:00
|
|
|
: mWidget(aWidget)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
|
|
|
nsBaseWidget *mWidget;
|
|
|
|
};
|
|
|
|
|
1998-09-23 19:19:23 +00:00
|
|
|
/**
|
|
|
|
* Common widget implementation used as base class for native
|
|
|
|
* or crossplatform implementations of Widgets.
|
|
|
|
* All cross-platform behavior that all widgets need to implement
|
|
|
|
* should be placed in this class.
|
|
|
|
* (Note: widget implementations are not required to use this
|
|
|
|
* class, but it gives them a head start.)
|
|
|
|
*/
|
|
|
|
|
2015-02-18 06:27:53 +00:00
|
|
|
class nsBaseWidget : public nsIWidget, public nsSupportsWeakReference
|
1998-09-23 19:19:23 +00:00
|
|
|
{
|
2007-12-03 16:33:42 +00:00
|
|
|
friend class nsAutoRollup;
|
1998-09-23 19:19:23 +00:00
|
|
|
|
2010-07-15 21:08:04 +00:00
|
|
|
protected:
|
2012-07-24 19:01:09 +00:00
|
|
|
typedef base::Thread Thread;
|
2010-07-15 21:08:04 +00:00
|
|
|
typedef mozilla::layers::BasicLayerManager BasicLayerManager;
|
2012-07-31 00:42:26 +00:00
|
|
|
typedef mozilla::layers::BufferMode BufferMode;
|
2012-01-19 14:45:37 +00:00
|
|
|
typedef mozilla::layers::CompositorChild CompositorChild;
|
|
|
|
typedef mozilla::layers::CompositorParent CompositorParent;
|
2014-12-15 09:47:15 +00:00
|
|
|
typedef mozilla::layers::APZCTreeManager APZCTreeManager;
|
|
|
|
typedef mozilla::layers::GeckoContentController GeckoContentController;
|
2014-12-18 23:25:03 +00:00
|
|
|
typedef mozilla::layers::ScrollableLayerGuid ScrollableLayerGuid;
|
2015-02-07 00:45:23 +00:00
|
|
|
typedef mozilla::layers::APZEventState APZEventState;
|
2015-02-06 23:11:30 +00:00
|
|
|
typedef mozilla::layers::SetTargetAPZCCallback SetTargetAPZCCallback;
|
2015-03-19 10:33:33 +00:00
|
|
|
typedef mozilla::layers::SetAllowedTouchBehaviorCallback SetAllowedTouchBehaviorCallback;
|
2012-07-24 19:01:09 +00:00
|
|
|
typedef mozilla::ScreenRotation ScreenRotation;
|
2010-07-15 21:08:04 +00:00
|
|
|
|
2014-06-24 16:36:44 +00:00
|
|
|
virtual ~nsBaseWidget();
|
|
|
|
|
1998-09-23 19:19:23 +00:00
|
|
|
public:
|
1999-09-28 01:31:41 +00:00
|
|
|
nsBaseWidget();
|
2012-07-31 00:42:26 +00:00
|
|
|
|
1999-09-28 01:31:41 +00:00
|
|
|
NS_DECL_ISUPPORTS
|
2012-07-31 00:42:26 +00:00
|
|
|
|
1999-09-28 01:31:41 +00:00
|
|
|
// nsIWidget interface
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD CaptureMouse(bool aCapture) override;
|
|
|
|
virtual nsIWidgetListener* GetWidgetListener() override;
|
|
|
|
virtual void SetWidgetListener(nsIWidgetListener* alistener) override;
|
|
|
|
NS_IMETHOD Destroy() override;
|
|
|
|
NS_IMETHOD SetParent(nsIWidget* aNewParent) override;
|
|
|
|
virtual nsIWidget* GetParent(void) override;
|
|
|
|
virtual nsIWidget* GetTopLevelWidget() override;
|
|
|
|
virtual nsIWidget* GetSheetWindowParent(void) override;
|
|
|
|
virtual float GetDPI() override;
|
|
|
|
virtual void AddChild(nsIWidget* aChild) override;
|
|
|
|
virtual void RemoveChild(nsIWidget* aChild) override;
|
|
|
|
|
|
|
|
void SetZIndex(int32_t aZIndex) override;
|
2003-10-07 01:19:51 +00:00
|
|
|
NS_IMETHOD PlaceBehind(nsTopLevelWidgetZPlacement aPlacement,
|
2015-03-21 16:28:04 +00:00
|
|
|
nsIWidget *aWidget, bool aActivate) override;
|
1999-09-28 01:31:41 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD SetSizeMode(int32_t aMode) override;
|
|
|
|
virtual int32_t SizeMode() override
|
2013-04-26 06:49:47 +00:00
|
|
|
{
|
|
|
|
return mSizeMode;
|
|
|
|
}
|
2000-03-09 01:55:48 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsCursor GetCursor() override;
|
|
|
|
NS_IMETHOD SetCursor(nsCursor aCursor) override;
|
2005-07-01 04:29:42 +00:00
|
|
|
NS_IMETHOD SetCursor(imgIContainer* aCursor,
|
2015-03-21 16:28:04 +00:00
|
|
|
uint32_t aHotspotX, uint32_t aHotspotY) override;
|
|
|
|
virtual void ClearCachedCursor() override { mUpdateCursor = true; }
|
|
|
|
virtual void SetTransparencyMode(nsTransparencyMode aMode) override;
|
|
|
|
virtual nsTransparencyMode GetTransparencyMode() override;
|
|
|
|
virtual void GetWindowClipRegion(nsTArray<nsIntRect>* aRects) override;
|
|
|
|
NS_IMETHOD SetWindowShadowStyle(int32_t aStyle) override;
|
|
|
|
virtual void SetShowsToolbarButton(bool aShow) override {}
|
|
|
|
virtual void SetShowsFullScreenButton(bool aShow) override {}
|
|
|
|
virtual void SetWindowAnimationType(WindowAnimationType aType) override {}
|
|
|
|
NS_IMETHOD HideWindowChrome(bool aShouldHide) override;
|
|
|
|
NS_IMETHOD MakeFullScreen(bool aFullScreen, nsIScreen* aScreen = nullptr) override;
|
2013-04-24 18:42:40 +00:00
|
|
|
virtual LayerManager* GetLayerManager(PLayerTransactionChild* aShadowManager = nullptr,
|
2014-01-23 18:26:41 +00:00
|
|
|
LayersBackend aBackendHint = mozilla::layers::LayersBackend::LAYERS_NONE,
|
2011-08-09 19:38:26 +00:00
|
|
|
LayerManagerPersistence aPersistence = LAYER_MANAGER_CURRENT,
|
2015-03-21 16:28:04 +00:00
|
|
|
bool* aAllowRetaining = nullptr) override;
|
2011-03-25 15:03:35 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
CompositorVsyncDispatcher* GetCompositorVsyncDispatcher() override;
|
2015-01-02 06:25:48 +00:00
|
|
|
void CreateCompositorVsyncDispatcher();
|
2013-04-17 21:39:13 +00:00
|
|
|
virtual CompositorParent* NewCompositorParent(int aSurfaceWidth, int aSurfaceHeight);
|
2012-01-19 14:45:37 +00:00
|
|
|
virtual void CreateCompositor();
|
2013-03-20 22:45:07 +00:00
|
|
|
virtual void CreateCompositor(int aWidth, int aHeight);
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual void PrepareWindowEffects() override {}
|
|
|
|
virtual void CleanupWindowEffects() override {}
|
|
|
|
virtual bool PreRender(LayerManagerComposite* aManager) override { return true; }
|
|
|
|
virtual void PostRender(LayerManagerComposite* aManager) override {}
|
|
|
|
virtual void DrawWindowUnderlay(LayerManagerComposite* aManager, nsIntRect aRect) override {}
|
|
|
|
virtual void DrawWindowOverlay(LayerManagerComposite* aManager, nsIntRect aRect) override {}
|
|
|
|
virtual mozilla::TemporaryRef<mozilla::gfx::DrawTarget> StartRemoteDrawing() override;
|
|
|
|
virtual void EndRemoteDrawing() override { };
|
|
|
|
virtual void CleanupRemoteDrawing() override { };
|
|
|
|
virtual void UpdateThemeGeometries(const nsTArray<ThemeGeometry>& aThemeGeometries) override {}
|
|
|
|
NS_IMETHOD SetModal(bool aModal) override;
|
|
|
|
virtual uint32_t GetMaxTouchPoints() const override;
|
|
|
|
NS_IMETHOD SetWindowClass(const nsAString& xulWinType) override;
|
|
|
|
virtual nsresult SetWindowClipRegion(const nsTArray<nsIntRect>& aRects, bool aIntersectWithExisting) override;
|
2013-04-15 12:17:22 +00:00
|
|
|
// Return whether this widget interprets parameters to Move and Resize APIs
|
|
|
|
// as "global display pixels" rather than "device pixels", and therefore
|
|
|
|
// applies its GetDefaultScale() value to them before using them as mBounds
|
|
|
|
// etc (which are always stored in device pixels).
|
|
|
|
// Note that APIs that -get- the widget's position/size/bounds, rather than
|
|
|
|
// -setting- them (i.e. moving or resizing the widget) will always return
|
|
|
|
// values in the widget's device pixels.
|
|
|
|
bool BoundsUseDisplayPixels() const {
|
|
|
|
return mWindowType <= eWindowType_popup;
|
|
|
|
}
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD MoveClient(double aX, double aY) override;
|
|
|
|
NS_IMETHOD ResizeClient(double aWidth, double aHeight, bool aRepaint) override;
|
|
|
|
NS_IMETHOD ResizeClient(double aX, double aY, double aWidth, double aHeight, bool aRepaint) override;
|
|
|
|
NS_IMETHOD GetBounds(nsIntRect &aRect) override;
|
|
|
|
NS_IMETHOD GetClientBounds(nsIntRect &aRect) override;
|
|
|
|
NS_IMETHOD GetScreenBounds(nsIntRect &aRect) override;
|
|
|
|
NS_IMETHOD GetRestoredBounds(nsIntRect &aRect) override;
|
|
|
|
NS_IMETHOD GetNonClientMargins(nsIntMargin &margins) override;
|
|
|
|
NS_IMETHOD SetNonClientMargins(nsIntMargin &margins) override;
|
|
|
|
virtual nsIntPoint GetClientOffset() override;
|
|
|
|
NS_IMETHOD EnableDragDrop(bool aEnable) override;
|
|
|
|
NS_IMETHOD GetAttention(int32_t aCycleCount) override;
|
|
|
|
virtual bool HasPendingInputEvent() override;
|
|
|
|
NS_IMETHOD SetIcon(const nsAString &anIconSpec) override;
|
|
|
|
NS_IMETHOD SetWindowTitlebarColor(nscolor aColor, bool aActive) override;
|
|
|
|
virtual void SetDrawsInTitlebar(bool aState) override {}
|
|
|
|
virtual bool ShowsResizeIndicator(nsIntRect* aResizerRect) override;
|
|
|
|
virtual void FreeNativeData(void * data, uint32_t aDataType) override {}
|
2013-10-02 03:46:03 +00:00
|
|
|
NS_IMETHOD BeginResizeDrag(mozilla::WidgetGUIEvent* aEvent,
|
|
|
|
int32_t aHorizontal,
|
2015-03-21 16:28:04 +00:00
|
|
|
int32_t aVertical) override;
|
|
|
|
NS_IMETHOD BeginMoveDrag(mozilla::WidgetMouseEvent* aEvent) override;
|
|
|
|
virtual nsresult ActivateNativeMenuItemAt(const nsAString& indexString) override { return NS_ERROR_NOT_IMPLEMENTED; }
|
|
|
|
virtual nsresult ForceUpdateNativeMenuAt(const nsAString& indexString) override { return NS_ERROR_NOT_IMPLEMENTED; }
|
|
|
|
NS_IMETHOD NotifyIME(const IMENotification& aIMENotification) override final;
|
2015-02-20 16:37:02 +00:00
|
|
|
NS_IMETHOD StartPluginIME(const mozilla::WidgetKeyboardEvent& aKeyboardEvent,
|
|
|
|
int32_t aPanelX, int32_t aPanelY,
|
2015-03-21 16:28:04 +00:00
|
|
|
nsString& aCommitted) override
|
2015-02-20 16:37:02 +00:00
|
|
|
{ return NS_ERROR_NOT_IMPLEMENTED; }
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD SetPluginFocused(bool& aFocused) override
|
2015-02-20 16:37:02 +00:00
|
|
|
{ return NS_ERROR_NOT_IMPLEMENTED; }
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD AttachNativeKeyEvent(mozilla::WidgetKeyboardEvent& aEvent) override { return NS_ERROR_NOT_IMPLEMENTED; }
|
2014-03-14 13:13:31 +00:00
|
|
|
NS_IMETHOD_(bool) ExecuteNativeKeyBinding(
|
|
|
|
NativeKeyBindingsType aType,
|
|
|
|
const mozilla::WidgetKeyboardEvent& aEvent,
|
|
|
|
DoCommandCallback aCallback,
|
2015-03-21 16:28:04 +00:00
|
|
|
void* aCallbackData) override { return false; }
|
2012-11-15 18:55:15 +00:00
|
|
|
virtual bool ComputeShouldAccelerate(bool aDefault);
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD GetToggledKeyState(uint32_t aKeyCode, bool* aLEDState) override { return NS_ERROR_NOT_IMPLEMENTED; }
|
|
|
|
virtual nsIMEUpdatePreference GetIMEUpdatePreference() override { return nsIMEUpdatePreference(); }
|
|
|
|
NS_IMETHOD OnDefaultButtonLoaded(const nsIntRect &aButtonRect) override { return NS_ERROR_NOT_IMPLEMENTED; }
|
2013-03-15 09:03:16 +00:00
|
|
|
NS_IMETHOD OverrideSystemMouseScrollSpeed(double aOriginalDeltaX,
|
|
|
|
double aOriginalDeltaY,
|
|
|
|
double& aOverriddenDeltaX,
|
2015-03-21 16:28:04 +00:00
|
|
|
double& aOverriddenDeltaY) override;
|
2010-08-20 19:29:02 +00:00
|
|
|
virtual already_AddRefed<nsIWidget>
|
|
|
|
CreateChild(const nsIntRect &aRect,
|
2012-07-30 14:20:58 +00:00
|
|
|
nsWidgetInitData *aInitData = nullptr,
|
2015-03-21 16:28:04 +00:00
|
|
|
bool aForceUseIWidgetParent = false) override;
|
|
|
|
NS_IMETHOD AttachViewToTopLevel(bool aUseAttachedEvents) override;
|
|
|
|
virtual nsIWidgetListener* GetAttachedWidgetListener() override;
|
|
|
|
virtual void SetAttachedWidgetListener(nsIWidgetListener* aListener) override;
|
|
|
|
NS_IMETHOD_(TextEventDispatcher*) GetTextEventDispatcher() override final;
|
1999-09-21 11:25:03 +00:00
|
|
|
|
2015-03-16 23:29:53 +00:00
|
|
|
// Helper function for dispatching events which are not processed by APZ,
|
|
|
|
// but need to be transformed by APZ.
|
2015-03-24 22:00:52 +00:00
|
|
|
nsEventStatus DispatchInputEvent(mozilla::WidgetInputEvent* aEvent) override;
|
2015-03-16 23:29:53 +00:00
|
|
|
|
2015-03-06 22:26:59 +00:00
|
|
|
// Dispatch an event that must be first be routed through APZ.
|
2015-03-21 16:28:04 +00:00
|
|
|
nsEventStatus DispatchAPZAwareEvent(mozilla::WidgetInputEvent* aEvent) override;
|
2015-03-06 22:26:59 +00:00
|
|
|
|
2012-08-15 18:52:41 +00:00
|
|
|
void NotifyWindowDestroyed();
|
2012-08-15 18:52:35 +00:00
|
|
|
void NotifySizeMoveDone();
|
2014-02-28 07:45:08 +00:00
|
|
|
void NotifyWindowMoved(int32_t aX, int32_t aY);
|
2012-08-15 18:52:35 +00:00
|
|
|
|
2015-01-29 19:41:53 +00:00
|
|
|
// Register plugin windows for remote updates from the compositor
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual void RegisterPluginWindowForRemoteUpdates() override;
|
|
|
|
virtual void UnregisterPluginWindowForRemoteUpdates() override;
|
2015-01-29 19:41:53 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual void SetNativeData(uint32_t aDataType, uintptr_t aVal) override {};
|
2015-01-29 19:41:57 +00:00
|
|
|
|
2012-08-15 18:52:35 +00:00
|
|
|
// Should be called by derived implementations to notify on system color and
|
|
|
|
// theme changes.
|
|
|
|
void NotifySysColorChanged();
|
|
|
|
void NotifyThemeChanged();
|
2012-08-15 18:52:40 +00:00
|
|
|
void NotifyUIStateChanged(UIStateChangeType aShowAccelerators,
|
|
|
|
UIStateChangeType aShowFocusRings);
|
2012-08-15 18:52:35 +00:00
|
|
|
|
2012-08-15 18:52:37 +00:00
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
// Get the accessible for the window.
|
2013-06-27 15:03:58 +00:00
|
|
|
mozilla::a11y::Accessible* GetRootAccessible();
|
2012-08-15 18:52:37 +00:00
|
|
|
#endif
|
|
|
|
|
2010-07-27 13:38:03 +00:00
|
|
|
nsPopupLevel PopupLevel() { return mPopupLevel; }
|
|
|
|
|
2015-03-31 22:09:03 +00:00
|
|
|
virtual mozilla::LayoutDeviceIntSize
|
|
|
|
ClientToWindowSize(const mozilla::LayoutDeviceIntSize& aClientSize) override
|
2010-07-27 13:38:03 +00:00
|
|
|
{
|
|
|
|
return aClientSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
// return true if this is a popup widget with a native titlebar
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsPopupWithTitleBar() const
|
2010-07-27 13:38:03 +00:00
|
|
|
{
|
|
|
|
return (mWindowType == eWindowType_popup &&
|
|
|
|
mBorderStyle != eBorderStyle_default &&
|
|
|
|
mBorderStyle & eBorderStyle_title);
|
|
|
|
}
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD ReparentNativeWidget(nsIWidget* aNewParent) override = 0;
|
2012-01-26 02:05:34 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual uint32_t GetGLFrameBufferFormat() override;
|
2012-01-26 02:05:34 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual const SizeConstraints& GetSizeConstraints() const override;
|
|
|
|
virtual void SetSizeConstraints(const SizeConstraints& aConstraints) override;
|
2012-07-31 00:43:29 +00:00
|
|
|
|
2010-03-01 08:03:49 +00:00
|
|
|
/**
|
|
|
|
* Use this when GetLayerManager() returns a BasicLayerManager
|
|
|
|
* (nsBaseWidget::GetLayerManager() does). This sets up the widget's
|
|
|
|
* layer manager to temporarily render into aTarget.
|
2012-07-24 19:01:09 +00:00
|
|
|
*
|
|
|
|
* |aNaturalWidgetBounds| is the un-rotated bounds of |aWidget|.
|
|
|
|
* |aRotation| is the "virtual rotation" to apply when rendering to
|
|
|
|
* the target. When |aRotation| is ROTATION_0,
|
|
|
|
* |aNaturalWidgetBounds| is not used.
|
2010-03-01 08:03:49 +00:00
|
|
|
*/
|
|
|
|
class AutoLayerManagerSetup {
|
|
|
|
public:
|
2010-07-15 21:08:04 +00:00
|
|
|
AutoLayerManagerSetup(nsBaseWidget* aWidget, gfxContext* aTarget,
|
2012-07-31 00:42:26 +00:00
|
|
|
BufferMode aDoubleBuffering,
|
2012-07-24 19:01:09 +00:00
|
|
|
ScreenRotation aRotation = mozilla::ROTATION_0);
|
2010-03-01 08:03:49 +00:00
|
|
|
~AutoLayerManagerSetup();
|
|
|
|
private:
|
|
|
|
nsBaseWidget* mWidget;
|
2012-12-27 05:55:41 +00:00
|
|
|
nsRefPtr<BasicLayerManager> mLayerManager;
|
2010-03-01 08:03:49 +00:00
|
|
|
};
|
|
|
|
friend class AutoLayerManagerSetup;
|
|
|
|
|
2010-10-15 10:34:29 +00:00
|
|
|
class AutoUseBasicLayerManager {
|
|
|
|
public:
|
2014-09-01 03:33:13 +00:00
|
|
|
explicit AutoUseBasicLayerManager(nsBaseWidget* aWidget);
|
2010-10-15 10:34:29 +00:00
|
|
|
~AutoUseBasicLayerManager();
|
|
|
|
private:
|
|
|
|
nsBaseWidget* mWidget;
|
2012-12-17 06:35:39 +00:00
|
|
|
bool mPreviousTemporarilyUseBasicLayerManager;
|
2010-10-15 10:34:29 +00:00
|
|
|
};
|
|
|
|
friend class AutoUseBasicLayerManager;
|
|
|
|
|
2013-03-04 18:32:20 +00:00
|
|
|
virtual bool ShouldUseOffMainThreadCompositing();
|
2012-10-26 13:15:22 +00:00
|
|
|
|
|
|
|
static nsIRollupListener* GetActiveRollupListener();
|
|
|
|
|
2013-06-17 02:50:32 +00:00
|
|
|
void Shutdown();
|
|
|
|
|
1998-09-23 19:19:23 +00:00
|
|
|
protected:
|
|
|
|
|
2015-01-02 06:25:48 +00:00
|
|
|
void ResolveIconName(const nsAString &aIconName,
|
|
|
|
const nsAString &aIconSuffix,
|
|
|
|
nsIFile **aResult);
|
2015-02-05 05:18:30 +00:00
|
|
|
virtual void OnDestroy();
|
|
|
|
void BaseCreate(nsIWidget *aParent,
|
|
|
|
const nsIntRect &aRect,
|
|
|
|
nsWidgetInitData *aInitData);
|
1998-09-23 19:19:23 +00:00
|
|
|
|
2014-12-15 09:47:15 +00:00
|
|
|
virtual void ConfigureAPZCTreeManager();
|
2015-03-26 21:23:02 +00:00
|
|
|
virtual void ConfigureAPZControllerThread();
|
2014-12-15 09:47:15 +00:00
|
|
|
virtual already_AddRefed<GeckoContentController> CreateRootContentController();
|
|
|
|
|
2015-03-06 22:26:59 +00:00
|
|
|
// Dispatch an event that has already been routed through APZ.
|
|
|
|
nsEventStatus ProcessUntransformedAPZEvent(mozilla::WidgetInputEvent* aEvent,
|
|
|
|
const ScrollableLayerGuid& aGuid,
|
2015-03-25 16:20:20 +00:00
|
|
|
uint64_t aInputBlockId,
|
|
|
|
nsEventStatus aApzResponse);
|
2014-12-18 23:25:03 +00:00
|
|
|
|
2014-11-12 20:59:19 +00:00
|
|
|
const nsIntRegion RegionFromArray(const nsTArray<nsIntRect>& aRects);
|
|
|
|
void ArrayFromRegion(const nsIntRegion& aRegion, nsTArray<nsIntRect>& aRects);
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsIContent* GetLastRollup() override
|
2007-12-03 16:33:42 +00:00
|
|
|
{
|
|
|
|
return mLastRollup;
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
virtual nsresult SynthesizeNativeKeyEvent(int32_t aNativeKeyboardLayout,
|
|
|
|
int32_t aNativeKeyCode,
|
|
|
|
uint32_t aModifierFlags,
|
2008-05-07 04:46:37 +00:00
|
|
|
const nsAString& aCharacters,
|
2015-03-21 16:28:04 +00:00
|
|
|
const nsAString& aUnmodifiedCharacters) override
|
2008-05-07 04:46:37 +00:00
|
|
|
{ return NS_ERROR_UNEXPECTED; }
|
2008-05-05 23:01:07 +00:00
|
|
|
|
2015-02-15 18:52:28 +00:00
|
|
|
virtual nsresult SynthesizeNativeMouseEvent(mozilla::LayoutDeviceIntPoint aPoint,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aNativeMessage,
|
2015-03-21 16:28:04 +00:00
|
|
|
uint32_t aModifierFlags) override
|
2009-09-23 02:31:37 +00:00
|
|
|
{ return NS_ERROR_UNEXPECTED; }
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsresult SynthesizeNativeMouseMove(mozilla::LayoutDeviceIntPoint aPoint) override
|
2012-04-11 21:55:21 +00:00
|
|
|
{ return NS_ERROR_UNEXPECTED; }
|
|
|
|
|
2015-02-15 18:52:28 +00:00
|
|
|
virtual nsresult SynthesizeNativeMouseScrollEvent(mozilla::LayoutDeviceIntPoint aPoint,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aNativeMessage,
|
2012-03-22 00:59:12 +00:00
|
|
|
double aDeltaX,
|
|
|
|
double aDeltaY,
|
|
|
|
double aDeltaZ,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aModifierFlags,
|
2015-03-21 16:28:04 +00:00
|
|
|
uint32_t aAdditionalFlags) override
|
2012-03-22 00:59:12 +00:00
|
|
|
{ return NS_ERROR_UNEXPECTED; }
|
|
|
|
|
2013-12-14 20:40:56 +00:00
|
|
|
virtual nsresult SynthesizeNativeTouchPoint(uint32_t aPointerId,
|
|
|
|
TouchPointerState aPointerState,
|
|
|
|
nsIntPoint aPointerScreenPoint,
|
|
|
|
double aPointerPressure,
|
2015-03-21 16:28:04 +00:00
|
|
|
uint32_t aPointerOrientation) override
|
2013-12-14 20:40:56 +00:00
|
|
|
{ return NS_ERROR_UNEXPECTED; }
|
|
|
|
|
2015-01-28 06:27:31 +00:00
|
|
|
virtual nsresult NotifyIMEInternal(const IMENotification& aIMENotification)
|
|
|
|
{ return NS_ERROR_NOT_IMPLEMENTED; }
|
|
|
|
|
2013-12-14 20:40:56 +00:00
|
|
|
protected:
|
2015-01-28 15:15:54 +00:00
|
|
|
// Utility to check if an array of clip rects is equal to our
|
|
|
|
// internally stored clip rect array mClipRects.
|
|
|
|
bool IsWindowClipRegionEqual(const nsTArray<nsIntRect>& aRects);
|
|
|
|
|
|
|
|
// Stores the clip rectangles in aRects into mClipRects.
|
|
|
|
void StoreWindowClipRegion(const nsTArray<nsIntRect>& aRects);
|
2009-07-22 00:44:55 +00:00
|
|
|
|
2010-08-20 19:29:02 +00:00
|
|
|
virtual already_AddRefed<nsIWidget>
|
|
|
|
AllocateChildPopupWidget()
|
|
|
|
{
|
|
|
|
static NS_DEFINE_IID(kCPopUpCID, NS_CHILD_CID);
|
|
|
|
nsCOMPtr<nsIWidget> widget = do_CreateInstance(kCPopUpCID);
|
|
|
|
return widget.forget();
|
|
|
|
}
|
|
|
|
|
2013-09-01 22:20:45 +00:00
|
|
|
LayerManager* CreateBasicLayerManager();
|
2010-09-14 23:40:23 +00:00
|
|
|
|
2012-05-31 17:52:09 +00:00
|
|
|
nsPopupType PopupType() const { return mPopupType; }
|
|
|
|
|
2012-10-26 13:15:22 +00:00
|
|
|
void NotifyRollupGeometryChange()
|
2012-06-23 01:13:56 +00:00
|
|
|
{
|
2012-10-26 13:15:22 +00:00
|
|
|
// XULPopupManager isn't interested in this notification, so only
|
|
|
|
// send it if gRollupListener is set.
|
|
|
|
if (gRollupListener) {
|
|
|
|
gRollupListener->NotifyGeometryChange();
|
2012-06-23 01:13:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-31 00:43:29 +00:00
|
|
|
/**
|
|
|
|
* Apply the current size constraints to the given size.
|
|
|
|
*
|
|
|
|
* @param aWidth width to constrain
|
|
|
|
* @param aHeight height to constrain
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
void ConstrainSize(int32_t* aWidth, int32_t* aHeight) const
|
2012-07-31 00:43:29 +00:00
|
|
|
{
|
2013-01-15 12:22:03 +00:00
|
|
|
*aWidth = std::max(mSizeConstraints.mMinSize.width,
|
|
|
|
std::min(mSizeConstraints.mMaxSize.width, *aWidth));
|
|
|
|
*aHeight = std::max(mSizeConstraints.mMinSize.height,
|
|
|
|
std::min(mSizeConstraints.mMaxSize.height, *aHeight));
|
2012-07-31 00:43:29 +00:00
|
|
|
}
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual CompositorChild* GetRemoteRenderer() override;
|
2012-10-04 07:05:24 +00:00
|
|
|
|
2013-08-18 06:46:16 +00:00
|
|
|
virtual void GetPreferredCompositorBackends(nsTArray<mozilla::layers::LayersBackend>& aHints);
|
2013-05-03 17:34:33 +00:00
|
|
|
|
2013-08-08 23:32:26 +00:00
|
|
|
/**
|
|
|
|
* Notify the widget that this window is being used with OMTC.
|
|
|
|
*/
|
|
|
|
virtual void WindowUsesOMTC() {}
|
|
|
|
|
2015-02-06 23:11:30 +00:00
|
|
|
nsIDocument* GetDocument() const;
|
|
|
|
|
2011-08-31 22:58:19 +00:00
|
|
|
protected:
|
2012-05-23 14:17:44 +00:00
|
|
|
/**
|
|
|
|
* Starts the OMTC compositor destruction sequence.
|
|
|
|
*
|
|
|
|
* When this function returns, the compositor should not be
|
|
|
|
* able to access the opengl context anymore.
|
|
|
|
* It is safe to call it several times if platform implementations
|
|
|
|
* require the compositor to be destroyed before ~nsBaseWidget is
|
|
|
|
* reached (This is the case with gtk2 for instance).
|
|
|
|
*/
|
|
|
|
void DestroyCompositor();
|
2015-03-09 17:43:39 +00:00
|
|
|
void DestroyLayerManager();
|
2012-05-23 14:17:44 +00:00
|
|
|
|
2012-08-15 18:52:42 +00:00
|
|
|
nsIWidgetListener* mWidgetListener;
|
2012-08-15 18:53:14 +00:00
|
|
|
nsIWidgetListener* mAttachedWidgetListener;
|
2010-03-01 08:03:49 +00:00
|
|
|
nsRefPtr<LayerManager> mLayerManager;
|
2010-10-15 10:34:29 +00:00
|
|
|
nsRefPtr<LayerManager> mBasicLayerManager;
|
2012-01-19 14:45:37 +00:00
|
|
|
nsRefPtr<CompositorChild> mCompositorChild;
|
|
|
|
nsRefPtr<CompositorParent> mCompositorParent;
|
2014-12-19 20:52:42 +00:00
|
|
|
nsRefPtr<mozilla::CompositorVsyncDispatcher> mCompositorVsyncDispatcher;
|
2014-12-15 09:47:15 +00:00
|
|
|
nsRefPtr<APZCTreeManager> mAPZC;
|
2015-02-07 00:45:23 +00:00
|
|
|
nsRefPtr<APZEventState> mAPZEventState;
|
2015-02-06 23:11:30 +00:00
|
|
|
nsRefPtr<SetTargetAPZCCallback> mSetTargetAPZCCallback;
|
2015-03-19 10:33:33 +00:00
|
|
|
nsRefPtr<SetAllowedTouchBehaviorCallback> mSetAllowedTouchBehaviorCallback;
|
2014-03-18 00:23:03 +00:00
|
|
|
nsRefPtr<WidgetShutdownObserver> mShutdownObserver;
|
2015-01-28 06:27:30 +00:00
|
|
|
nsRefPtr<TextEventDispatcher> mTextEventDispatcher;
|
1999-09-28 01:31:41 +00:00
|
|
|
nsCursor mCursor;
|
2014-05-28 01:12:29 +00:00
|
|
|
bool mUpdateCursor;
|
1999-09-28 01:31:41 +00:00
|
|
|
nsBorderStyle mBorderStyle;
|
2012-11-15 18:55:15 +00:00
|
|
|
bool mUseLayersAcceleration;
|
2012-02-27 21:33:19 +00:00
|
|
|
bool mForceLayersAcceleration;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mTemporarilyUseBasicLayerManager;
|
2014-02-21 01:26:41 +00:00
|
|
|
// Windows with out-of-process tabs always require OMTC. This flag designates
|
|
|
|
// such windows.
|
|
|
|
bool mRequireOffMainThreadCompositing;
|
2012-08-15 18:53:09 +00:00
|
|
|
bool mUseAttachedEvents;
|
2009-01-15 03:27:09 +00:00
|
|
|
nsIntRect mBounds;
|
|
|
|
nsIntRect* mOriginalBounds;
|
2009-07-22 00:44:55 +00:00
|
|
|
// When this pointer is null, the widget is not clipped
|
|
|
|
nsAutoArrayPtr<nsIntRect> mClipRects;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mClipRectCount;
|
2000-03-09 01:55:48 +00:00
|
|
|
nsSizeMode mSizeMode;
|
2010-07-27 13:38:03 +00:00
|
|
|
nsPopupLevel mPopupLevel;
|
2012-05-31 17:52:09 +00:00
|
|
|
nsPopupType mPopupType;
|
2012-07-31 00:43:29 +00:00
|
|
|
SizeConstraints mSizeConstraints;
|
2007-12-03 16:33:42 +00:00
|
|
|
|
2012-10-26 13:15:22 +00:00
|
|
|
static nsIRollupListener* gRollupListener;
|
|
|
|
|
2007-12-03 16:33:42 +00:00
|
|
|
// the last rolled up popup. Only set this when an nsAutoRollup is in scope,
|
|
|
|
// so it can be cleared automatically.
|
|
|
|
static nsIContent* mLastRollup;
|
2011-08-31 22:58:19 +00:00
|
|
|
|
2002-01-24 01:18:36 +00:00
|
|
|
#ifdef DEBUG
|
1999-09-09 02:32:54 +00:00
|
|
|
protected:
|
2013-10-02 03:46:03 +00:00
|
|
|
static nsAutoString debug_GuiEventToString(mozilla::WidgetGUIEvent* aGuiEvent);
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool debug_WantPaintFlashing();
|
1999-09-09 02:32:54 +00:00
|
|
|
|
|
|
|
static void debug_DumpInvalidate(FILE * aFileOut,
|
|
|
|
nsIWidget * aWidget,
|
2009-01-15 03:27:09 +00:00
|
|
|
const nsIntRect * aRect,
|
2012-09-02 02:35:17 +00:00
|
|
|
const nsAutoCString & aWidgetName,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aWindowID);
|
1999-09-09 02:32:54 +00:00
|
|
|
|
2013-10-02 03:46:03 +00:00
|
|
|
static void debug_DumpEvent(FILE* aFileOut,
|
|
|
|
nsIWidget* aWidget,
|
|
|
|
mozilla::WidgetGUIEvent* aGuiEvent,
|
|
|
|
const nsAutoCString& aWidgetName,
|
|
|
|
int32_t aWindowID);
|
2011-08-31 22:58:19 +00:00
|
|
|
|
1999-09-09 02:32:54 +00:00
|
|
|
static void debug_DumpPaintEvent(FILE * aFileOut,
|
|
|
|
nsIWidget * aWidget,
|
2012-08-15 18:52:42 +00:00
|
|
|
const nsIntRegion & aPaintEvent,
|
2012-09-02 02:35:17 +00:00
|
|
|
const nsAutoCString & aWidgetName,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aWindowID);
|
1999-09-09 02:32:54 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool debug_GetCachedBoolPref(const char* aPrefName);
|
1999-07-09 12:11:12 +00:00
|
|
|
#endif
|
1998-09-23 19:19:23 +00:00
|
|
|
};
|
|
|
|
|
2007-12-03 16:33:42 +00:00
|
|
|
// A situation can occur when a mouse event occurs over a menu label while the
|
|
|
|
// menu popup is already open. The expected behaviour is to close the popup.
|
|
|
|
// This happens by calling nsIRollupListener::Rollup before the mouse event is
|
|
|
|
// processed. However, in cases where the mouse event is not consumed, this
|
|
|
|
// event will then get targeted at the menu label causing the menu to open
|
|
|
|
// again. To prevent this, we store in mLastRollup a reference to the popup
|
|
|
|
// that was closed during the Rollup call, and prevent this popup from
|
|
|
|
// reopening while processing the mouse event.
|
|
|
|
// mLastRollup should only be set while an nsAutoRollup is in scope;
|
|
|
|
// when it goes out of scope mLastRollup is cleared automatically.
|
|
|
|
// As mLastRollup is static, it can be retrieved by calling
|
|
|
|
// nsIWidget::GetLastRollup on any widget.
|
|
|
|
class nsAutoRollup
|
|
|
|
{
|
2011-09-29 06:19:26 +00:00
|
|
|
bool wasClear;
|
2007-12-03 16:33:42 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
nsAutoRollup();
|
|
|
|
~nsAutoRollup();
|
|
|
|
};
|
|
|
|
|
1998-09-23 19:19:23 +00:00
|
|
|
#endif // nsBaseWidget_h__
|