1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
12 #include "imgIContainer.h"
13 #include "ErrorList.h"
15 #include "mozilla/AlreadyAddRefed.h"
16 #include "mozilla/Assertions.h"
17 #include "mozilla/Attributes.h"
18 #include "mozilla/EventForwards.h"
19 #include "mozilla/Maybe.h"
20 #include "mozilla/RefPtr.h"
21 #include "mozilla/TimeStamp.h"
22 #include "mozilla/UniquePtr.h"
23 #include "mozilla/gfx/Matrix.h"
24 #include "mozilla/gfx/Rect.h"
25 #include "mozilla/layers/LayersTypes.h"
26 #include "mozilla/layers/ScrollableLayerGuid.h"
27 #include "mozilla/layers/ZoomConstraints.h"
28 #include "mozilla/image/Resolution.h"
29 #include "mozilla/widget/IMEData.h"
34 #include "nsIObserver.h"
35 #include "nsISupports.h"
38 #include "nsIWidgetListener.h"
41 #include "nsStringFwd.h"
43 #include "nsTHashMap.h"
44 #include "mozilla/widget/InitData.h"
45 #include "nsXULAppAPI.h"
47 // forward declarations
48 class nsIBidiKeyboard
;
49 class nsIRollupListener
;
55 enum class NativeKeyBindingsType
: uint8_t;
56 class VsyncDispatcher
;
58 class WidgetInputEvent
;
59 class WidgetKeyboardEvent
;
61 enum class ColorScheme
: uint8_t;
62 enum class WindowButtonType
: uint8_t;
64 enum class WindowShadow
: uint8_t {
71 #if defined(MOZ_WIDGET_ANDROID)
75 #endif // defined(MOZ_WIDGET_ANDROID)
78 enum class CallerType
: uint32_t;
82 class AsyncDragMetrics
;
84 class CompositorBridgeChild
;
87 class WebRenderBridgeChild
;
90 class TextEventDispatcher
;
91 class TextEventDispatcherListener
;
92 class CompositorWidget
;
93 class CompositorWidgetInitData
;
97 class DisplayListBuilder
;
98 class IpcResourceUpdateQueue
;
99 enum class RenderRoot
: uint8_t;
101 } // namespace mozilla
104 * Callback function that processes events.
106 * The argument is actually a subtype (subclass) of WidgetEvent which carries
107 * platform specific information about the event. Platform specific code
108 * knows how to deal with it.
110 * The return value determines whether or not the default action should take
113 typedef nsEventStatus (*EVENT_CALLBACK
)(mozilla::WidgetGUIEvent
* aEvent
);
115 // Hide the native window system's real window type so as to avoid
116 // including native window system types and APIs. This is necessary
117 // to ensure cross-platform code.
118 typedef void* nsNativeWidget
;
121 * Values for the GetNativeData function
123 #define NS_NATIVE_WINDOW 0
124 #define NS_NATIVE_GRAPHIC 1
125 #define NS_NATIVE_WIDGET 3
126 #define NS_NATIVE_REGION 5
127 #define NS_NATIVE_OFFSETX 6
128 #define NS_NATIVE_OFFSETY 7
129 #define NS_NATIVE_SCREEN 9
130 // The toplevel GtkWidget containing this nsIWidget:
131 #define NS_NATIVE_SHELLWIDGET 10
132 #define NS_NATIVE_OPENGL_CONTEXT 12
133 // This is available only with GetNativeData() in parent process. Anybody
134 // shouldn't access this pointer as a valid pointer since the result may be
135 // special value like NS_ONLY_ONE_NATIVE_IME_CONTEXT. So, the result is just
136 // an identifier of distinguishing a text composition is caused by which native
137 // IME context. Note that the result is only valid in the process. So,
138 // XP code should use nsIWidget::GetNativeIMEContext() instead of using this.
139 #define NS_RAW_NATIVE_IME_CONTEXT 14
140 #define NS_NATIVE_WINDOW_WEBRTC_DEVICE_ID 15
142 # define NS_NATIVE_TSF_THREAD_MGR 100
143 # define NS_NATIVE_TSF_CATEGORY_MGR 101
144 # define NS_NATIVE_TSF_DISPLAY_ATTR_MGR 102
145 # define NS_NATIVE_ICOREWINDOW 103 // winrt specific
147 #if defined(MOZ_WIDGET_GTK)
148 # define NS_NATIVE_EGL_WINDOW 106
150 #ifdef MOZ_WIDGET_ANDROID
151 # define NS_JAVA_SURFACE 100
154 #define MOZ_WIDGET_MAX_SIZE 16384
155 #define MOZ_WIDGET_INVALID_SCALE 0.0
157 // Must be kept in sync with xpcom/rust/xpcom/src/interfaces/nonidl.rs
158 #define NS_IWIDGET_IID \
160 0x06396bf6, 0x2dd8, 0x45e5, { \
161 0xac, 0x45, 0x75, 0x26, 0x53, 0xb1, 0xc9, 0x80 \
169 enum nsCursor
{ ///(normal cursor, usually rendered as an arrow)
171 ///(system is busy, usually rendered as a hourglass or watch)
173 ///(Selecting something, usually rendered as an IBeam)
175 ///(can hyper-link, usually rendered as a human hand)
177 ///(north/south/west/east edge sizing)
190 eCursor_copy
, // CSS3
192 eCursor_context_menu
,
203 eCursor_vertical_text
,
210 // This one is used for array sizing, and so better be the last
211 // one in this list...
214 // ...except for this one.
215 eCursorInvalid
= eCursorCount
+ 1
218 enum nsTopLevelWidgetZPlacement
{ // for PlaceBehind()
219 eZPlacementBottom
= 0, // bottom of the window stack
220 eZPlacementBelow
, // just below another widget
221 eZPlacementTop
// top of the window stack
225 * Before the OS goes to sleep, this topic is notified.
227 #define NS_WIDGET_SLEEP_OBSERVER_TOPIC "sleep_notification"
230 * After the OS wakes up, this topic is notified.
232 #define NS_WIDGET_WAKE_OBSERVER_TOPIC "wake_notification"
235 * Before the OS suspends the current process, this topic is notified. Some
236 * OS will kill processes that are suspended instead of resuming them.
237 * For that reason this topic may be useful to safely close down resources.
239 #define NS_WIDGET_SUSPEND_PROCESS_OBSERVER_TOPIC "suspend_process_notification"
242 * After the current process resumes from being suspended, this topic is
245 #define NS_WIDGET_RESUME_PROCESS_OBSERVER_TOPIC "resume_process_notification"
248 * When an app(-shell) is activated by the OS, this topic is notified.
249 * Currently, this only happens on Mac OSX.
251 #define NS_WIDGET_MAC_APP_ACTIVATE_OBSERVER_TOPIC "mac_app_activate"
253 namespace mozilla::widget
{
256 * Size constraints for setting the minimum and maximum size of a widget.
257 * Values are in device pixels.
259 struct SizeConstraints
{
261 : mMaxSize(MOZ_WIDGET_MAX_SIZE
, MOZ_WIDGET_MAX_SIZE
),
262 mScale(MOZ_WIDGET_INVALID_SCALE
) {}
264 SizeConstraints(mozilla::LayoutDeviceIntSize aMinSize
,
265 mozilla::LayoutDeviceIntSize aMaxSize
,
266 mozilla::DesktopToLayoutDeviceScale aScale
)
267 : mMinSize(aMinSize
), mMaxSize(aMaxSize
), mScale(aScale
) {
268 if (mMaxSize
.width
> MOZ_WIDGET_MAX_SIZE
) {
269 mMaxSize
.width
= MOZ_WIDGET_MAX_SIZE
;
271 if (mMaxSize
.height
> MOZ_WIDGET_MAX_SIZE
) {
272 mMaxSize
.height
= MOZ_WIDGET_MAX_SIZE
;
276 mozilla::LayoutDeviceIntSize mMinSize
;
277 mozilla::LayoutDeviceIntSize mMaxSize
;
280 * The scale used to convert from desktop to device dimensions.
281 * MOZ_WIDGET_INVALID_SCALE if the value is not known.
283 * Bug 1701109 is filed to revisit adding of 'mScale' and deal
284 * with multi-monitor scaling issues in more complete way across
285 * all widget implementations.
287 mozilla::DesktopToLayoutDeviceScale mScale
;
290 struct AutoObserverNotifier
{
291 AutoObserverNotifier(nsIObserver
* aObserver
, const char* aTopic
)
292 : mObserver(aObserver
), mTopic(aTopic
) {}
294 void SkipNotification() { mObserver
= nullptr; }
296 uint64_t SaveObserver() {
300 uint64_t observerId
= ++sObserverId
;
301 sSavedObservers
.InsertOrUpdate(observerId
, mObserver
);
306 ~AutoObserverNotifier() {
308 mObserver
->Observe(nullptr, mTopic
, nullptr);
312 static void NotifySavedObserver(const uint64_t& aObserverId
,
313 const char* aTopic
) {
314 nsCOMPtr
<nsIObserver
> observer
= sSavedObservers
.Get(aObserverId
);
316 MOZ_ASSERT(aObserverId
== 0,
317 "We should always find a saved observer for nonzero IDs");
321 sSavedObservers
.Remove(aObserverId
);
322 observer
->Observe(nullptr, aTopic
, nullptr);
326 nsCOMPtr
<nsIObserver
> mObserver
;
330 static uint64_t sObserverId
;
331 static nsTHashMap
<uint64_t, nsCOMPtr
<nsIObserver
>> sSavedObservers
;
334 } // namespace mozilla::widget
337 * The base class for all the widgets. It provides the interface for
338 * all basic and necessary functionality.
340 class nsIWidget
: public nsISupports
{
342 typedef mozilla::dom::BrowserChild BrowserChild
;
345 typedef mozilla::layers::CompositorBridgeChild CompositorBridgeChild
;
346 typedef mozilla::layers::AsyncDragMetrics AsyncDragMetrics
;
347 typedef mozilla::layers::FrameMetrics FrameMetrics
;
348 typedef mozilla::layers::LayerManager LayerManager
;
349 typedef mozilla::WindowRenderer WindowRenderer
;
350 typedef mozilla::layers::LayersBackend LayersBackend
;
351 typedef mozilla::layers::LayersId LayersId
;
352 typedef mozilla::layers::ScrollableLayerGuid ScrollableLayerGuid
;
353 typedef mozilla::layers::ZoomConstraints ZoomConstraints
;
354 typedef mozilla::widget::IMEEnabled IMEEnabled
;
355 typedef mozilla::widget::IMEMessage IMEMessage
;
356 typedef mozilla::widget::IMENotification IMENotification
;
357 typedef mozilla::widget::IMENotificationRequests IMENotificationRequests
;
358 typedef mozilla::widget::IMEState IMEState
;
359 typedef mozilla::widget::InputContext InputContext
;
360 typedef mozilla::widget::InputContextAction InputContextAction
;
361 typedef mozilla::widget::NativeIMEContext NativeIMEContext
;
362 typedef mozilla::widget::SizeConstraints SizeConstraints
;
363 typedef mozilla::widget::TextEventDispatcher TextEventDispatcher
;
364 typedef mozilla::widget::TextEventDispatcherListener
365 TextEventDispatcherListener
;
366 typedef mozilla::LayoutDeviceIntMargin LayoutDeviceIntMargin
;
367 typedef mozilla::LayoutDeviceIntPoint LayoutDeviceIntPoint
;
368 typedef mozilla::LayoutDeviceIntRect LayoutDeviceIntRect
;
369 typedef mozilla::LayoutDeviceIntRegion LayoutDeviceIntRegion
;
370 typedef mozilla::LayoutDeviceIntSize LayoutDeviceIntSize
;
371 typedef mozilla::ScreenIntPoint ScreenIntPoint
;
372 typedef mozilla::ScreenIntMargin ScreenIntMargin
;
373 typedef mozilla::ScreenIntSize ScreenIntSize
;
374 typedef mozilla::ScreenPoint ScreenPoint
;
375 typedef mozilla::CSSToScreenScale CSSToScreenScale
;
376 typedef mozilla::DesktopIntRect DesktopIntRect
;
377 typedef mozilla::DesktopPoint DesktopPoint
;
378 typedef mozilla::DesktopIntPoint DesktopIntPoint
;
379 typedef mozilla::DesktopRect DesktopRect
;
380 typedef mozilla::DesktopSize DesktopSize
;
381 typedef mozilla::CSSPoint CSSPoint
;
382 typedef mozilla::CSSRect CSSRect
;
384 using InitData
= mozilla::widget::InitData
;
385 using WindowType
= mozilla::widget::WindowType
;
386 using PopupType
= mozilla::widget::PopupType
;
387 using PopupLevel
= mozilla::widget::PopupLevel
;
388 using BorderStyle
= mozilla::widget::BorderStyle
;
389 using TransparencyMode
= mozilla::widget::TransparencyMode
;
390 using Screen
= mozilla::widget::Screen
;
392 // Used in UpdateThemeGeometries.
393 struct ThemeGeometry
{
394 // The ThemeGeometryType value for the themed widget, see
395 // nsITheme::ThemeGeometryTypeForWidget.
396 nsITheme::ThemeGeometryType mType
;
397 // The device-pixel rect within the window for the themed widget
398 LayoutDeviceIntRect mRect
;
400 ThemeGeometry(nsITheme::ThemeGeometryType aType
,
401 const LayoutDeviceIntRect
& aRect
)
402 : mType(aType
), mRect(aRect
) {}
405 NS_DECLARE_STATIC_IID_ACCESSOR(NS_IWIDGET_IID
)
408 : mLastChild(nullptr),
409 mPrevSibling(nullptr),
410 mOnDestroyCalled(false),
411 mWindowType(WindowType::Child
),
415 ClearNativeTouchSequence(nullptr);
419 * Create and initialize a widget.
421 * All the arguments can be null in which case a top level window
422 * with size 0 is created. The event callback function has to be
423 * provided only if the caller wants to deal with the events this
424 * widget receives. The event callback is basically a preprocess
425 * hook called synchronously. The return value determines whether
426 * the event goes to the default window procedure or it is hidden
427 * to the os. The assumption is that if the event handler returns
428 * false the widget does not see the event. The widget should not
429 * automatically clear the window to the background color. The
430 * calling code must handle paint messages and clear the background
433 * In practice at least one of aParent and aNativeParent will be null. If
434 * both are null the widget isn't parented (e.g. context menus or
435 * independent top level windows).
437 * The dimensions given in aRect are specified in the parent's
438 * device coordinate system.
439 * This must not be called for parentless widgets such as top-level
440 * windows, which use the desktop pixel coordinate system; a separate
441 * method is provided for these.
443 * @param aParent parent nsIWidget
444 * @param aNativeParent native parent widget
445 * @param aRect the widget dimension
446 * @param aInitData data that is used for widget initialization
449 [[nodiscard
]] virtual nsresult
Create(nsIWidget
* aParent
,
450 nsNativeWidget aNativeParent
,
451 const LayoutDeviceIntRect
& aRect
,
452 InitData
* = nullptr) = 0;
455 * As above, but with aRect specified in DesktopPixel units (for top-level
457 * Default implementation just converts aRect to device pixels and calls
458 * through to device-pixel Create, but platforms may override this if the
459 * mapping is not straightforward or the native platform needs to use the
460 * desktop pixel values directly.
462 [[nodiscard
]] virtual nsresult
Create(nsIWidget
* aParent
,
463 nsNativeWidget aNativeParent
,
464 const DesktopIntRect
& aRect
,
465 InitData
* aInitData
= nullptr) {
466 LayoutDeviceIntRect devPixRect
=
467 RoundedToInt(aRect
* GetDesktopToDeviceScale());
468 return Create(aParent
, aNativeParent
, devPixRect
, aInitData
);
472 * Allocate, initialize, and return a widget that is a child of
473 * |this|. The returned widget (if nonnull) has gone through the
474 * equivalent of CreateInstance(widgetCID) + Create(...).
476 * |CreateChild()| lets widget backends decide whether to parent
477 * the new child widget to this, nonnatively parent it, or both.
478 * This interface exists to support the PuppetWidget backend,
479 * which is entirely non-native. All other params are the same as
482 * |aForceUseIWidgetParent| forces |CreateChild()| to only use the
483 * |nsIWidget*| this, not its native widget (if it exists), when
484 * calling |Create()|. This is a timid hack around poorly
485 * understood code, and shouldn't be used in new code.
487 virtual already_AddRefed
<nsIWidget
> CreateChild(
488 const LayoutDeviceIntRect
& aRect
, InitData
* = nullptr,
489 bool aForceUseIWidgetParent
= false) = 0;
492 * Attach to a top level widget.
494 * In cases where a top level chrome widget is being used as a content
495 * container, attach a secondary listener and update the device
496 * context. The primary widget listener will continue to be called for
497 * notifications relating to the top-level window, whereas other
498 * notifications such as painting and events will instead be called via
499 * the attached listener. SetAttachedWidgetListener should be used to
500 * assign the attached listener.
502 * aUseAttachedEvents if true, events are sent to the attached listener
503 * instead of the normal listener.
505 virtual void AttachViewToTopLevel(bool aUseAttachedEvents
) = 0;
508 * Accessor functions to get and set the attached listener. Used by
509 * nsView in connection with AttachViewToTopLevel above.
511 virtual void SetAttachedWidgetListener(nsIWidgetListener
* aListener
) = 0;
512 virtual nsIWidgetListener
* GetAttachedWidgetListener() const = 0;
513 virtual void SetPreviouslyAttachedWidgetListener(
514 nsIWidgetListener
* aListener
) = 0;
515 virtual nsIWidgetListener
* GetPreviouslyAttachedWidgetListener() = 0;
518 * Notifies the root widget of a non-blank paint.
520 virtual void DidGetNonBlankPaint() {}
523 * Accessor functions to get and set the listener which handles various
524 * actions for the widget.
527 virtual nsIWidgetListener
* GetWidgetListener() const = 0;
528 virtual void SetWidgetListener(nsIWidgetListener
* alistener
) = 0;
532 * Close and destroy the internal native window.
533 * This method does not delete the widget.
536 virtual void Destroy() = 0;
539 * Destroyed() returns true if Destroy() has been called already.
542 bool Destroyed() const { return mOnDestroyCalled
; }
547 * Change the widget's parent. Null parents are allowed.
549 * @param aNewParent new parent
551 virtual void SetParent(nsIWidget
* aNewParent
) = 0;
554 * Return the parent Widget of this Widget or nullptr if this is a
557 * @return the parent widget or nullptr if it does not have a parent
560 virtual nsIWidget
* GetParent(void) = 0;
563 * Return the top level Widget of this Widget
565 * @return the top level widget
567 virtual nsIWidget
* GetTopLevelWidget() = 0;
570 * Return the top (non-sheet) parent of this Widget if it's a sheet,
571 * or nullptr if this isn't a sheet (or some other error occurred).
572 * Sheets are only supported on some platforms (currently only macOS).
574 * @return the top (non-sheet) parent widget or nullptr
577 virtual nsIWidget
* GetSheetWindowParent(void) = 0;
580 * Return the physical DPI of the screen containing the window ...
581 * the number of device pixels per inch.
583 virtual float GetDPI() = 0;
586 * Fallback DPI for when there's no widget available.
588 static float GetFallbackDPI();
591 * Return the scaling factor between device pixels and the platform-
592 * dependent "desktop pixels" used to manage window positions on a
593 * potentially multi-screen, mixed-resolution desktop.
595 virtual mozilla::DesktopToLayoutDeviceScale
GetDesktopToDeviceScale() = 0;
598 * Return the scaling factor between device pixels and the platform-
599 * dependent "desktop pixels" by looking up the screen by the position
602 virtual mozilla::DesktopToLayoutDeviceScale
603 GetDesktopToDeviceScaleByScreen() = 0;
606 * Return the default scale factor for the window. This is the
607 * default number of device pixels per CSS pixel to use. This should
608 * depend on OS/platform settings such as the Mac's "UI scale factor"
609 * or Windows' "font DPI". This will take into account Gecko preferences
610 * overriding the system setting.
612 mozilla::CSSToLayoutDeviceScale
GetDefaultScale();
615 * Fallback default scale for when there's no widget available.
617 static mozilla::CSSToLayoutDeviceScale
GetFallbackDefaultScale();
620 * Return the first child of this widget. Will return null if
621 * there are no children.
623 nsIWidget
* GetFirstChild() const { return mFirstChild
; }
626 * Return the last child of this widget. Will return null if
627 * there are no children.
629 nsIWidget
* GetLastChild() const { return mLastChild
; }
632 * Return the next sibling of this widget
634 nsIWidget
* GetNextSibling() const { return mNextSibling
; }
637 * Set the next sibling of this widget
639 void SetNextSibling(nsIWidget
* aSibling
) { mNextSibling
= aSibling
; }
642 * Return the previous sibling of this widget
644 nsIWidget
* GetPrevSibling() const { return mPrevSibling
; }
647 * Set the previous sibling of this widget
649 void SetPrevSibling(nsIWidget
* aSibling
) { mPrevSibling
= aSibling
; }
652 * Show or hide this widget
654 * @param aState true to show the Widget, false to hide it
657 virtual void Show(bool aState
) = 0;
660 * Whether or not a widget must be recreated after being hidden to show
663 virtual bool NeedsRecreateToReshow() { return false; }
666 * Make the window modal.
668 virtual void SetModal(bool aModal
) = 0;
671 * Are we app modal. Currently only implemented on Cocoa.
673 virtual bool IsRunningAppModal() { return false; }
676 * The maximum number of simultaneous touch contacts supported by the device.
677 * In the case of devices with multiple digitizers (e.g. multiple touch
678 * screens), the value will be the maximum of the set of maximum supported
679 * contacts by each individual digitizer.
681 virtual uint32_t GetMaxTouchPoints() const = 0;
684 * Returns whether the window is visible
687 virtual bool IsVisible() const = 0;
690 * Returns whether the window has allocated resources so
691 * we can paint into it.
692 * Recently it's used on Linux/Gtk where we should not paint
693 * to invisible window.
695 virtual bool IsMapped() const { return true; }
698 * Perform platform-dependent sanity check on a potential window position.
699 * This is guaranteed to work only for top-level windows.
701 virtual void ConstrainPosition(DesktopIntPoint
&) = 0;
706 * For a top-level window widget, the "parent's coordinate system" is the
707 * "global" display pixel coordinate space, *not* device pixels (which
708 * may be inconsistent between multiple screens, at least in the Mac OS
709 * case with mixed hi-dpi and lo-dpi displays). This applies to all the
710 * following Move and Resize widget APIs.
712 * The display-/device-pixel distinction becomes important for (at least)
713 * macOS with Hi-DPI (retina) displays, and Windows when the UI scale factor
714 * is set to other than 100%.
716 * The Move and Resize methods take floating-point parameters, rather than
717 * integer ones. This is important when manipulating top-level widgets,
718 * where the coordinate system may not be an integral multiple of the
719 * device-pixel space.
725 * Coordinates refer to the top-left of the widget. For toplevel windows
726 * with decorations, this is the top-left of the titlebar and frame .
728 * @param aX the new x position expressed in the parent's coordinate system
729 * @param aY the new y position expressed in the parent's coordinate system
732 virtual void Move(double aX
, double aY
) = 0;
735 * Reposition this widget so that the client area has the given offset.
737 * @param aOffset the new offset of the client area expressed as an
738 * offset from the origin of the client area of the parent
739 * widget (for root widgets and popup widgets it is in
740 * screen coordinates)
742 virtual void MoveClient(const DesktopPoint
& aOffset
) = 0;
745 * Resize this widget. Any size constraints set for the window by a
746 * previous call to SetSizeConstraints will be applied.
748 * @param aWidth the new width expressed in the parent's coordinate system
749 * @param aHeight the new height expressed in the parent's coordinate
751 * @param aRepaint whether the widget should be repainted
753 virtual void Resize(double aWidth
, double aHeight
, bool aRepaint
) = 0;
756 * Lock the aspect ratio of a Window
758 * @param aShouldLock bool
761 virtual void LockAspectRatio(bool aShouldLock
){};
764 * Move or resize this widget. Any size constraints set for the window by
765 * a previous call to SetSizeConstraints will be applied.
767 * @param aX the new x position expressed in the parent's coordinate
769 * @param aY the new y position expressed in the parent's coordinate
771 * @param aWidth the new width expressed in the parent's coordinate system
772 * @param aHeight the new height expressed in the parent's coordinate
774 * @param aRepaint whether the widget should be repainted if the size
778 virtual void Resize(double aX
, double aY
, double aWidth
, double aHeight
,
781 virtual mozilla::Maybe
<bool> IsResizingNativeWidget() {
782 return mozilla::Nothing();
786 * Resize the widget so that the inner client area has the given size.
788 * @param aSize the new size of the client area.
789 * @param aRepaint whether the widget should be repainted
791 virtual void ResizeClient(const DesktopSize
& aSize
, bool aRepaint
) = 0;
794 * Resize and reposition the widget so tht inner client area has the given
797 * @param aRect the new offset and size of the client area. The offset is
798 * expressed as an offset from the origin of the client area
799 * of the parent widget (for root widgets and popup widgets it
800 * is in screen coordinates).
801 * @param aRepaint whether the widget should be repainted
803 virtual void ResizeClient(const DesktopRect
& aRect
, bool aRepaint
) = 0;
806 * Sets the widget's z-index.
808 virtual void SetZIndex(int32_t aZIndex
) = 0;
811 * Gets the widget's z-index.
813 int32_t GetZIndex() { return mZIndex
; }
816 * Position this widget just behind the given widget. (Used to
817 * control z-order for top-level widgets. Get/SetZIndex by contrast
818 * control z-order for child widgets of other widgets.)
819 * @param aPlacement top, bottom, or below a widget
820 * (if top or bottom, param aWidget is ignored)
821 * @param aWidget widget to place this widget behind
822 * (only if aPlacement is eZPlacementBelow).
823 * null is equivalent to aPlacement of eZPlacementTop
824 * @param aActivate true to activate the widget after placing it
826 virtual void PlaceBehind(nsTopLevelWidgetZPlacement aPlacement
,
827 nsIWidget
* aWidget
, bool aActivate
) = 0;
830 * Minimize, maximize or normalize the window size.
831 * Takes a value from nsSizeMode (see nsIWidgetListener.h)
833 virtual void SetSizeMode(nsSizeMode aMode
) = 0;
835 virtual void GetWorkspaceID(nsAString
& workspaceID
) = 0;
837 virtual void MoveToWorkspace(const nsAString
& workspaceID
) = 0;
840 * Suppress animations that are applied to a window by OS.
842 virtual void SuppressAnimation(bool aSuppress
) {}
845 * Return size mode (minimized, maximized, normalized).
846 * Returns a value from nsSizeMode (see nsIWidgetListener.h)
848 virtual nsSizeMode
SizeMode() = 0;
851 * Ask whether the window is tiled.
853 virtual bool IsTiled() const = 0;
856 * Ask wether the widget is fully occluded
858 virtual bool IsFullyOccluded() const = 0;
861 * Enable or disable this Widget
863 * @param aState true to enable the Widget, false to disable it.
865 virtual void Enable(bool aState
) = 0;
868 * Ask whether the widget is enabled
870 virtual bool IsEnabled() const = 0;
873 * Whether we should request activation of this widget's toplevel window.
881 * Request activation of this window or give focus to this widget.
883 virtual void SetFocus(Raise
, mozilla::dom::CallerType aCallerType
) = 0;
886 * Get this widget's outside dimensions relative to its parent widget. For
887 * popup widgets the returned rect is in screen coordinates and not
888 * relative to its parent widget.
890 * @return the x, y, width and height of this widget.
892 virtual LayoutDeviceIntRect
GetBounds() = 0;
895 * Get this widget's outside dimensions in device coordinates. This
896 * includes any title bar on the window.
898 * @return the x, y, width and height of this widget.
900 virtual LayoutDeviceIntRect
GetScreenBounds() = 0;
903 * Similar to GetScreenBounds except that this function will always
904 * get the size when the widget is in the nsSizeMode_Normal size mode
905 * even if the current size mode is not nsSizeMode_Normal.
906 * This method will fail if the size mode is not nsSizeMode_Normal and
907 * the platform doesn't have the ability.
908 * This method will always succeed if the current size mode is
911 * @param aRect On return it holds the x, y, width and height of
914 [[nodiscard
]] virtual nsresult
GetRestoredBounds(
915 LayoutDeviceIntRect
& aRect
) = 0;
918 * Get this widget's client area bounds, if the window has a 3D border
919 * appearance this returns the area inside the border. The position is the
920 * position of the client area relative to the client area of the parent
921 * widget (for root widgets and popup widgets it is in screen coordinates).
923 * @return the x, y, width and height of the client area of this widget.
925 virtual LayoutDeviceIntRect
GetClientBounds() = 0;
928 * Sets the non-client area dimensions of the window. Pass -1 to restore
929 * the system default frame size for that border. Pass zero to remove
930 * a border, or pass a specific value adjust a border. Units are in
931 * pixels. (DPI dependent)
934 * Windows: shrinking top non-client height will remove application
935 * icon and window title text. Glass desktops will refuse to set
936 * dimensions between zero and size < system default.
938 virtual nsresult
SetNonClientMargins(const LayoutDeviceIntMargin
&) = 0;
941 * Sets the region around the edges of the window that can be dragged to
942 * resize the window. All four sides of the window will get the same margin.
944 virtual void SetResizeMargin(mozilla::LayoutDeviceIntCoord aResizeMargin
) = 0;
946 * Get the client offset from the window origin.
948 * @return the x and y of the offset.
950 virtual LayoutDeviceIntPoint
GetClientOffset() = 0;
953 * Returns the slop from the screen edges in device pixels.
954 * @see Window.screenEdgeSlop{X,Y}
956 virtual LayoutDeviceIntPoint
GetScreenEdgeSlop() { return {}; }
959 * Equivalent to GetClientBounds but only returns the size.
961 virtual LayoutDeviceIntSize
GetClientSize() {
962 // Depending on the backend, overloading this method may be useful if
963 // requesting the client offset is expensive.
964 return GetClientBounds().Size();
968 * Set the background color for this widget
970 * @param aColor the new background color
974 virtual void SetBackgroundColor(const nscolor
& aColor
) {}
977 * If a cursor type is currently cached locally for this widget, clear the
978 * cached cursor to force an update on the next SetCursor call.
981 virtual void ClearCachedCursor() = 0;
984 // The system cursor chosen by the page. This is used if there's no custom
985 // cursor, or if we fail to use the custom cursor in some way (if the image
986 // fails to load, for example).
987 nsCursor mDefaultCursor
= eCursor_standard
;
988 // May be null, to represent no custom cursor image.
989 nsCOMPtr
<imgIContainer
> mContainer
;
990 uint32_t mHotspotX
= 0;
991 uint32_t mHotspotY
= 0;
992 mozilla::ImageResolution mResolution
;
994 bool IsCustom() const { return !!mContainer
; }
996 bool operator==(const Cursor
& aOther
) const {
997 return mDefaultCursor
== aOther
.mDefaultCursor
&&
998 mContainer
.get() == aOther
.mContainer
.get() &&
999 mHotspotX
== aOther
.mHotspotX
&& mHotspotY
== aOther
.mHotspotY
&&
1000 mResolution
== aOther
.mResolution
;
1003 bool operator!=(const Cursor
& aOther
) const { return !(*this == aOther
); }
1007 * Sets the cursor for this widget.
1009 virtual void SetCursor(const Cursor
&) = 0;
1011 virtual void SetCustomCursorAllowed(bool) = 0;
1013 static nsIntSize
CustomCursorSize(const Cursor
&);
1016 * Get the window type of this widget.
1018 WindowType
GetWindowType() const { return mWindowType
; }
1021 * Set the transparency mode of the top-level window containing this widget.
1022 * So, e.g., if you call this on the widget for an IFRAME, the top level
1023 * browser window containing the IFRAME actually gets set. Be careful.
1025 * This can fail if the platform doesn't support
1026 * transparency/glass. By default widgets are not
1027 * transparent. This will also fail if the toplevel window is not
1028 * a Mozilla window, e.g., if the widget is in an embedded
1031 * After transparency/glass has been enabled, the initial alpha channel
1032 * value for all pixels is 1, i.e., opaque.
1033 * If the window is resized then the alpha channel values for
1034 * all pixels are reset to 1.
1035 * Pixel RGB color values are already premultiplied with alpha channel values.
1037 virtual void SetTransparencyMode(TransparencyMode aMode
) = 0;
1040 * Get the transparency mode of the top-level window that contains this
1043 virtual TransparencyMode
GetTransparencyMode() = 0;
1046 * Set the shadow style of the window.
1048 * Ignored on child widgets and on non-Mac platforms.
1050 virtual void SetWindowShadowStyle(mozilla::WindowShadow aStyle
) = 0;
1053 * Set the opacity of the window.
1054 * Values need to be between 0.0f (invisible) and 1.0f (fully opaque).
1056 * Ignored on child widgets and on non-Mac platforms.
1058 virtual void SetWindowOpacity(float aOpacity
) {}
1061 * Set the transform of the window. Values are in device pixels,
1062 * the origin is the top left corner of the window.
1064 * Ignored on child widgets and on non-Mac platforms.
1066 virtual void SetWindowTransform(const mozilla::gfx::Matrix
& aTransform
) {}
1069 * Set the preferred color-scheme for the widget.
1070 * Ignored on non-Mac platforms.
1072 virtual void SetColorScheme(const mozilla::Maybe
<mozilla::ColorScheme
>&) {}
1075 * Set whether the window should ignore mouse events or not, and if it should
1076 * not, what input margin should it use.
1078 * This is only used on popup windows. The margin is only implemented on
1081 struct InputRegion
{
1082 bool mFullyTransparent
= false;
1083 mozilla::LayoutDeviceIntCoord mMargin
= 0;
1085 virtual void SetInputRegion(const InputRegion
&) {}
1088 * On macOS, this method shows or hides the pill button in the titlebar
1089 * that's used to collapse the toolbar.
1091 * Ignored on child widgets and on non-Mac platforms.
1093 virtual void SetShowsToolbarButton(bool aShow
) = 0;
1096 * On macOS, this method determines whether we tell cocoa that the window
1097 * supports native full screen. If we do so, and another window is in
1098 * native full screen, this window will also appear in native full screen.
1100 * We generally only want to do this for primary application windows.
1102 * Ignored on child widgets and on non-Mac platforms.
1104 virtual void SetSupportsNativeFullscreen(bool aSupportsNativeFullscreen
) = 0;
1106 enum WindowAnimationType
{
1107 eGenericWindowAnimation
,
1108 eDocumentWindowAnimation
1112 * Sets the kind of top-level window animation this widget should have. On
1113 * macOS, this causes a particular kind of animation to be shown when the
1114 * window is first made visible.
1116 * Ignored on child widgets and on non-Mac platforms.
1118 virtual void SetWindowAnimationType(WindowAnimationType aType
) = 0;
1121 * Specifies whether the window title should be drawn even if the window
1122 * contents extend into the titlebar. Ignored on windows that don't draw
1123 * in the titlebar. Only implemented on macOS.
1125 virtual void SetDrawsTitle(bool aDrawTitle
) {}
1128 * Hide window chrome (borders, buttons) for this widget.
1131 virtual void HideWindowChrome(bool aShouldHide
) = 0;
1133 enum FullscreenTransitionStage
{
1134 eBeforeFullscreenToggle
,
1135 eAfterFullscreenToggle
1139 * Prepares for fullscreen transition and returns whether the widget
1140 * supports fullscreen transition. If this method returns false,
1141 * PerformFullscreenTransition() must never be called. Otherwise,
1142 * caller should call that method twice with "before" and "after"
1143 * stages respectively in order. In the latter case, this method may
1144 * return some data via aData pointer. Caller must pass that data to
1145 * PerformFullscreenTransition() if any, and caller is responsible
1146 * for releasing that data.
1148 virtual bool PrepareForFullscreenTransition(nsISupports
** aData
) = 0;
1151 * Performs fullscreen transition. This method returns immediately,
1152 * and will post aCallback to the main thread when the transition
1155 virtual void PerformFullscreenTransition(FullscreenTransitionStage aStage
,
1158 nsIRunnable
* aCallback
) = 0;
1161 * Perform any actions needed after the fullscreen transition has ended.
1163 virtual void CleanupFullscreenTransition() = 0;
1166 * Return the screen the widget is in, or null if we don't know.
1168 virtual already_AddRefed
<Screen
> GetWidgetScreen() = 0;
1171 * Put the toplevel window into or out of fullscreen mode.
1173 * @return NS_OK if the widget is setup properly for fullscreen and
1174 * FullscreenChanged callback has been or will be called. If other
1175 * value is returned, the caller should continue the change itself.
1177 virtual nsresult
MakeFullScreen(bool aFullScreen
) = 0;
1180 * Same as MakeFullScreen, except that, on systems which natively
1181 * support fullscreen transition, calling this method explicitly
1182 * requests that behavior.
1183 * It is currently only supported on macOS 10.7+.
1185 virtual nsresult
MakeFullScreenWithNativeTransition(bool aFullScreen
) {
1186 return MakeFullScreen(aFullScreen
);
1190 * Invalidate a specified rect for a widget so that it will be repainted
1193 virtual void Invalidate(const LayoutDeviceIntRect
& aRect
) = 0;
1195 enum LayerManagerPersistence
{
1196 LAYER_MANAGER_CURRENT
= 0,
1197 LAYER_MANAGER_PERSISTENT
1201 * Return the widget's LayerManager. The layer tree for that LayerManager is
1202 * what gets rendered to the widget.
1204 * Note that this tries to create a renderer if it doesn't exist.
1206 virtual WindowRenderer
* GetWindowRenderer() = 0;
1209 * Returns whether there's an existing window renderer.
1211 virtual bool HasWindowRenderer() const = 0;
1214 * Called before each layer manager transaction to allow any preparation
1215 * for DrawWindowUnderlay/Overlay that needs to be on the main thread.
1217 * Always called on the main thread.
1219 virtual void PrepareWindowEffects() = 0;
1222 * Called when Gecko knows which themed widgets exist in this window.
1223 * The passed array contains an entry for every themed widget of the right
1224 * type (currently only StyleAppearance::Toolbar) within the window, except
1225 * for themed widgets which are transformed or have effects applied to them
1226 * (e.g. CSS opacity or filters).
1227 * This could sometimes be called during display list construction
1228 * outside of painting.
1229 * If called during painting, it will be called before we actually
1232 virtual void UpdateThemeGeometries(
1233 const nsTArray
<ThemeGeometry
>& aThemeGeometries
) = 0;
1236 * Informs the widget about the region of the window that is opaque.
1238 * @param aOpaqueRegion the region of the window that is opaque.
1240 virtual void UpdateOpaqueRegion(const LayoutDeviceIntRegion
& aOpaqueRegion
) {}
1243 * Informs the widget about the region of the window that is draggable.
1245 virtual void UpdateWindowDraggingRegion(
1246 const LayoutDeviceIntRegion
& aRegion
) {}
1249 * Tells the widget whether the given input block results in a swipe.
1250 * Should be called in response to a WidgetWheelEvent that has
1251 * mFlags.mCanTriggerSwipe set on it.
1253 virtual void ReportSwipeStarted(uint64_t aInputBlockId
, bool aStartSwipe
) {}
1260 virtual void AddChild(nsIWidget
* aChild
) = 0;
1261 virtual void RemoveChild(nsIWidget
* aChild
) = 0;
1262 virtual void* GetNativeData(uint32_t aDataType
) = 0;
1263 virtual void FreeNativeData(void* data
, uint32_t aDataType
) = 0; //~~~
1268 * Set the widget's title.
1269 * Must be called after Create.
1271 * @param aTitle string displayed as the title of the widget
1273 virtual nsresult
SetTitle(const nsAString
& aTitle
) = 0;
1276 * Set the widget's icon.
1277 * Must be called after Create.
1279 * @param aIconSpec string specifying the icon to use; convention is to
1280 * pass a resource: URL from which a platform-dependent
1281 * resource file name will be constructed
1283 virtual void SetIcon(const nsAString
& aIconSpec
) = 0;
1286 * Return this widget's origin in screen coordinates.
1288 * @return screen coordinates stored in the x,y members
1290 virtual LayoutDeviceIntPoint
WidgetToScreenOffset() = 0;
1293 * The same as WidgetToScreenOffset(), except in the case of
1294 * PuppetWidget where this method omits the chrome offset.
1296 virtual LayoutDeviceIntPoint
TopLevelWidgetToScreenOffset() {
1297 return WidgetToScreenOffset();
1301 * For a PuppetWidget, returns the transform from the coordinate
1302 * space of the PuppetWidget to the coordinate space of the
1303 * top-level native widget.
1305 * Identity transform in other cases.
1307 virtual mozilla::LayoutDeviceToLayoutDeviceMatrix4x4
1308 WidgetToTopLevelWidgetTransform() {
1309 return mozilla::LayoutDeviceToLayoutDeviceMatrix4x4();
1312 mozilla::LayoutDeviceIntPoint
WidgetToTopLevelWidgetOffset() {
1313 return mozilla::LayoutDeviceIntPoint::Round(
1314 WidgetToTopLevelWidgetTransform().TransformPoint(
1315 mozilla::LayoutDevicePoint()));
1319 * Returns the margins that are applied to go from client sizes to window
1320 * sizes (which includes window borders and titlebar).
1321 * This method should work even when the window is not yet visible.
1323 virtual LayoutDeviceIntMargin
ClientToWindowMargin() { return {}; }
1325 LayoutDeviceIntSize
ClientToWindowSizeDifference();
1328 * Dispatches an event to the widget
1330 virtual nsresult
DispatchEvent(mozilla::WidgetGUIEvent
* event
,
1331 nsEventStatus
& aStatus
) = 0;
1334 * Dispatches an event to APZ only.
1335 * No-op in the child process.
1337 virtual void DispatchEventToAPZOnly(mozilla::WidgetInputEvent
* aEvent
) = 0;
1340 * Dispatch a gecko event for this widget.
1341 * Returns true if it's consumed. Otherwise, false.
1343 virtual bool DispatchWindowEvent(mozilla::WidgetGUIEvent
& event
) = 0;
1345 // A structure that groups the statuses from APZ dispatch and content
1347 struct ContentAndAPZEventStatus
{
1348 // Either of these may not be set if the event was not dispatched
1349 // to APZ or to content.
1350 nsEventStatus mApzStatus
= nsEventStatus_eIgnore
;
1351 nsEventStatus mContentStatus
= nsEventStatus_eIgnore
;
1355 * Dispatches an event that must be handled by APZ first, when APZ is
1356 * enabled. If invoked in the child process, it is forwarded to the
1357 * parent process synchronously.
1359 virtual ContentAndAPZEventStatus
DispatchInputEvent(
1360 mozilla::WidgetInputEvent
* aEvent
) = 0;
1363 * Confirm an APZ-aware event target. This should be used when APZ will
1364 * not need a layers update to process the event.
1366 virtual void SetConfirmedTargetAPZC(
1367 uint64_t aInputBlockId
,
1368 const nsTArray
<ScrollableLayerGuid
>& aTargets
) const = 0;
1371 * Returns true if APZ is in use, false otherwise.
1373 virtual bool AsyncPanZoomEnabled() const = 0;
1377 virtual void SwipeFinished() = 0;
1380 * Enables the dropping of files to a widget.
1382 virtual void EnableDragDrop(bool aEnable
) = 0;
1383 virtual nsresult
AsyncEnableDragDrop(bool aEnable
) = 0;
1386 * Classify the window for the window manager. Mostly for X11.
1388 * @param xulWinType The window type. Characters other than [A-Za-z0-9_-] are
1389 * converted to '_'. Anything before the first colon is
1390 * assigned to name, anything after it to role. If there's
1391 * no colon, assign the whole thing to both role and name.
1393 * @param xulWinClass The window class. If set, overrides the normal value.
1394 * Otherwise, the program class it used.
1396 * @param xulWinName The window name. If set, overrides the value specified in
1397 * window type. Otherwise, name from window type is used.
1400 virtual void SetWindowClass(const nsAString
& xulWinType
,
1401 const nsAString
& xulWinClass
,
1402 const nsAString
& xulWinName
) = 0;
1405 * Enables/Disables system capture of any and all events that would cause a
1406 * popup to be rolled up. aListener should be set to a non-null value for
1407 * any popups that are not managed by the popup manager.
1408 * @param aDoCapture true enables capture, false disables capture
1411 virtual void CaptureRollupEvents(bool aDoCapture
) = 0;
1414 * Bring this window to the user's attention. This is intended to be a more
1415 * gentle notification than popping the window to the top or putting up an
1416 * alert. See, for example, Win32 FlashWindow or the NotificationManager on
1417 * the Mac. The notification should be suppressed if the window is already
1418 * in the foreground and should be dismissed when the user brings this window
1419 * to the foreground.
1420 * @param aCycleCount Maximum number of times to animate the window per system
1421 * conventions. If set to -1, cycles indefinitely until
1422 * window is brought into the foreground.
1424 [[nodiscard
]] virtual nsresult
GetAttention(int32_t aCycleCount
) = 0;
1427 * Ask whether there user input events pending. All input events are
1428 * included, including those not targeted at this nsIwidget instance.
1430 virtual bool HasPendingInputEvent() = 0;
1433 * Determine whether the widget shows a resize widget. If it does,
1434 * aResizerRect returns the resizer's rect.
1436 * Returns false on any platform that does not support it.
1438 * @param aResizerRect The resizer's rect in device pixels.
1439 * @return Whether a resize widget is shown.
1441 virtual bool ShowsResizeIndicator(LayoutDeviceIntRect
* aResizerRect
) = 0;
1443 // TODO: Make this an enum class with MOZ_MAKE_ENUM_CLASS_BITWISE_OPERATORS or
1445 enum Modifiers
: uint32_t {
1446 NO_MODIFIERS
= 0x00000000,
1447 CAPS_LOCK
= 0x00000001, // when CapsLock is active
1448 NUM_LOCK
= 0x00000002, // when NumLock is active
1449 SHIFT_L
= 0x00000100,
1450 SHIFT_R
= 0x00000200,
1451 CTRL_L
= 0x00000400,
1452 CTRL_R
= 0x00000800,
1453 ALT_L
= 0x00001000, // includes Option
1455 COMMAND_L
= 0x00004000,
1456 COMMAND_R
= 0x00008000,
1458 ALTGRAPH
= 0x00020000, // AltGr key on Windows. This emulates
1459 // AltRight key behavior of keyboard
1460 // layouts which maps AltGr to AltRight
1462 FUNCTION
= 0x00100000,
1463 NUMERIC_KEY_PAD
= 0x01000000 // when the key is coming from the keypad
1466 * Utility method intended for testing. Dispatches native key events
1467 * to this widget to simulate the press and release of a key.
1468 * @param aNativeKeyboardLayout a *platform-specific* constant.
1469 * On Mac, this is the resource ID for a 'uchr' or 'kchr' resource.
1470 * On Windows, it is converted to a hex string and passed to
1471 * LoadKeyboardLayout, see
1472 * http://msdn.microsoft.com/en-us/library/ms646305(VS.85).aspx
1473 * @param aNativeKeyCode a *platform-specific* keycode.
1474 * On Windows, this is the virtual key code.
1475 * @param aModifiers some combination of the above 'Modifiers' flags;
1476 * not all flags will apply to all platforms. Mac ignores the _R
1477 * modifiers. Windows ignores COMMAND, NUMERIC_KEY_PAD, HELP and
1479 * @param aCharacters characters that the OS would decide to generate
1480 * from the event. On Windows, this is the charCode passed by
1482 * @param aUnmodifiedCharacters characters that the OS would decide
1483 * to generate from the event if modifier keys (other than shift)
1484 * were assumed inactive. Needed on Mac, ignored on Windows.
1485 * @param aObserver the observer that will get notified once the events
1486 * have been dispatched.
1487 * @return NS_ERROR_NOT_AVAILABLE to indicate that the keyboard
1488 * layout is not supported and the event was not fired
1490 virtual nsresult
SynthesizeNativeKeyEvent(
1491 int32_t aNativeKeyboardLayout
, int32_t aNativeKeyCode
,
1492 uint32_t aModifierFlags
, const nsAString
& aCharacters
,
1493 const nsAString
& aUnmodifiedCharacters
, nsIObserver
* aObserver
) = 0;
1496 * Utility method intended for testing. Dispatches native mouse events
1497 * may even move the mouse cursor. On Mac the events are guaranteed to
1498 * be sent to the window containing this widget, but on Windows they'll go
1499 * to whatever's topmost on the screen at that position, so for
1500 * cross-platform testing ensure that your window is at the top of the
1502 * @param aPoint screen location of the mouse, in device
1503 * pixels, with origin at the top left
1504 * @param aNativeMessage abstract native message.
1505 * @param aButton Mouse button defined by DOM UI Events.
1506 * @param aModifierFlags Some values of nsIWidget::Modifiers.
1507 * FYI: On Windows, Android and Headless widget on all
1508 * platroms, this hasn't been handled yet.
1509 * @param aObserver the observer that will get notified once the events
1510 * have been dispatched.
1512 enum class NativeMouseMessage
: uint32_t {
1513 ButtonDown
, // button down
1514 ButtonUp
, // button up
1515 Move
, // mouse cursor move
1516 EnterWindow
, // mouse cursor comes into a window
1517 LeaveWindow
, // mouse cursor leaves from a window
1519 virtual nsresult
SynthesizeNativeMouseEvent(
1520 LayoutDeviceIntPoint aPoint
, NativeMouseMessage aNativeMessage
,
1521 mozilla::MouseButton aButton
, nsIWidget::Modifiers aModifierFlags
,
1522 nsIObserver
* aObserver
) = 0;
1525 * A shortcut to SynthesizeNativeMouseEvent, abstracting away the native
1526 * message. aPoint is location in device pixels to which the mouse pointer
1528 * @param aObserver the observer that will get notified once the events
1529 * have been dispatched.
1531 virtual nsresult
SynthesizeNativeMouseMove(LayoutDeviceIntPoint aPoint
,
1532 nsIObserver
* aObserver
) = 0;
1535 * Utility method intended for testing. Dispatching native mouse scroll
1536 * events may move the mouse cursor.
1538 * @param aPoint Mouse cursor position in screen coordinates.
1539 * In device pixels, the origin at the top left of
1540 * the primary display.
1541 * @param aNativeMessage Platform native message.
1542 * @param aDeltaX The delta value for X direction. If the native
1543 * message doesn't indicate X direction scrolling,
1544 * this may be ignored.
1545 * @param aDeltaY The delta value for Y direction. If the native
1546 * message doesn't indicate Y direction scrolling,
1547 * this may be ignored.
1548 * @param aDeltaZ The delta value for Z direction. If the native
1549 * message doesn't indicate Z direction scrolling,
1550 * this may be ignored.
1551 * @param aModifierFlags Must be values of Modifiers, or zero.
1552 * @param aAdditionalFlags See nsIDOMWidnowUtils' consts and their
1554 * @param aObserver The observer that will get notified once the
1555 * events have been dispatched.
1557 virtual nsresult
SynthesizeNativeMouseScrollEvent(
1558 LayoutDeviceIntPoint aPoint
, uint32_t aNativeMessage
, double aDeltaX
,
1559 double aDeltaY
, double aDeltaZ
, uint32_t aModifierFlags
,
1560 uint32_t aAdditionalFlags
, nsIObserver
* aObserver
) = 0;
1563 * TouchPointerState states for SynthesizeNativeTouchPoint. Match
1564 * touch states in nsIDOMWindowUtils.idl.
1566 enum TouchPointerState
{
1567 // The pointer is in a hover state above the digitizer
1568 TOUCH_HOVER
= (1 << 0),
1569 // The pointer is in contact with the digitizer
1570 TOUCH_CONTACT
= (1 << 1),
1571 // The pointer has been removed from the digitizer detection area
1572 TOUCH_REMOVE
= (1 << 2),
1573 // The pointer has been canceled. Will cancel any pending os level
1574 // gestures that would triggered as a result of completion of the
1575 // input sequence. This may not cancel moz platform related events
1576 // that might get tirggered by input already delivered.
1577 TOUCH_CANCEL
= (1 << 3),
1579 // ALL_BITS used for validity checking during IPC serialization
1580 ALL_BITS
= (1 << 4) - 1
1583 * TouchpadGesturePhase states for SynthesizeNativeTouchPadPinch and
1584 * SynthesizeNativeTouchpadPan. Match phase states in nsIDOMWindowUtils.idl.
1586 enum TouchpadGesturePhase
{
1592 * Create a new or update an existing touch pointer on the digitizer.
1593 * To trigger os level gestures, individual touch points should
1594 * transition through a complete set of touch states which should be
1595 * sent as individual messages.
1597 * @param aPointerId The touch point id to create or update.
1598 * @param aPointerState one or more of the touch states listed above
1599 * @param aPoint coords of this event
1600 * @param aPressure 0.0 -> 1.0 float val indicating pressure
1601 * @param aOrientation 0 -> 359 degree value indicating the
1602 * orientation of the pointer. Use 90 for normal taps.
1603 * @param aObserver The observer that will get notified once the events
1604 * have been dispatched.
1606 virtual nsresult
SynthesizeNativeTouchPoint(uint32_t aPointerId
,
1607 TouchPointerState aPointerState
,
1608 LayoutDeviceIntPoint aPoint
,
1609 double aPointerPressure
,
1610 uint32_t aPointerOrientation
,
1611 nsIObserver
* aObserver
) = 0;
1613 * See nsIDOMWindowUtils.sendNativeTouchpadPinch().
1615 virtual nsresult
SynthesizeNativeTouchPadPinch(
1616 TouchpadGesturePhase aEventPhase
, float aScale
,
1617 LayoutDeviceIntPoint aPoint
, int32_t aModifierFlags
) = 0;
1620 * Helper for simulating a simple tap event with one touch point. When
1621 * aLongTap is true, simulates a native long tap with a duration equal to
1622 * ui.click_hold_context_menus.delay. This pref is compatible with the
1623 * apzc long tap duration. Defaults to 1.5 seconds.
1624 * @param aObserver The observer that will get notified once the events
1625 * have been dispatched.
1627 virtual nsresult
SynthesizeNativeTouchTap(LayoutDeviceIntPoint aPoint
,
1629 nsIObserver
* aObserver
);
1631 virtual nsresult
SynthesizeNativePenInput(uint32_t aPointerId
,
1632 TouchPointerState aPointerState
,
1633 LayoutDeviceIntPoint aPoint
,
1635 uint32_t aRotation
, int32_t aTiltX
,
1636 int32_t aTiltY
, int32_t aButton
,
1637 nsIObserver
* aObserver
) = 0;
1640 * Cancels all active simulated touch input points and pending long taps.
1641 * Native widgets should track existing points such that they can clear the
1642 * digitizer state when this call is made.
1643 * @param aObserver The observer that will get notified once the touch
1644 * sequence has been cleared.
1646 virtual nsresult
ClearNativeTouchSequence(nsIObserver
* aObserver
);
1649 * Send a native event as if the user double tapped the touchpad with two
1652 virtual nsresult
SynthesizeNativeTouchpadDoubleTap(
1653 LayoutDeviceIntPoint aPoint
, uint32_t aModifierFlags
) = 0;
1656 * See nsIDOMWindowUtils.sendNativeTouchpadPan().
1658 virtual nsresult
SynthesizeNativeTouchpadPan(TouchpadGesturePhase aEventPhase
,
1659 LayoutDeviceIntPoint aPoint
,
1660 double aDeltaX
, double aDeltaY
,
1661 int32_t aModifierFlags
,
1662 nsIObserver
* aObserver
) = 0;
1664 virtual void StartAsyncScrollbarDrag(
1665 const AsyncDragMetrics
& aDragMetrics
) = 0;
1668 * Notify APZ to start autoscrolling.
1669 * @param aAnchorLocation the location of the autoscroll anchor
1670 * @param aGuid identifies the scroll frame to be autoscrolled
1671 * @return true if APZ has been successfully notified
1673 virtual bool StartAsyncAutoscroll(const ScreenPoint
& aAnchorLocation
,
1674 const ScrollableLayerGuid
& aGuid
) = 0;
1677 * Notify APZ to stop autoscrolling.
1678 * @param aGuid identifies the scroll frame which is being autoscrolled.
1680 virtual void StopAsyncAutoscroll(const ScrollableLayerGuid
& aGuid
) = 0;
1682 virtual LayersId
GetRootLayerTreeId() = 0;
1684 // If this widget supports out-of-process compositing, it can override
1685 // this method to provide additional information to the compositor.
1686 virtual void GetCompositorWidgetInitData(
1687 mozilla::widget::CompositorWidgetInitData
* aInitData
) {}
1690 * Setter/Getter of the system font setting for testing.
1692 virtual nsresult
SetSystemFont(const nsCString
& aFontName
) {
1693 return NS_ERROR_NOT_IMPLEMENTED
;
1695 virtual nsresult
GetSystemFont(nsCString
& aFontName
) {
1696 return NS_ERROR_NOT_IMPLEMENTED
;
1700 * Wayland specific routines.
1702 virtual LayoutDeviceIntSize
GetMoveToRectPopupSize() const {
1703 NS_WARNING("GetLayoutPopupRect implemented only for wayland");
1704 return LayoutDeviceIntSize();
1708 * If this widget uses native pointer lock instead of warp-to-center
1709 * (currently only GTK on Wayland), these methods provide access to that
1712 virtual void SetNativePointerLockCenter(
1713 const LayoutDeviceIntPoint
& aLockCenter
) {}
1714 virtual void LockNativePointer() {}
1715 virtual void UnlockNativePointer() {}
1718 * Get safe area insets except to cutout.
1719 * See https://drafts.csswg.org/css-env-1/#safe-area-insets.
1721 virtual mozilla::ScreenIntMargin
GetSafeAreaInsets() const {
1722 return mozilla::ScreenIntMargin();
1728 LongTapInfo(int32_t aPointerId
, LayoutDeviceIntPoint
& aPoint
,
1729 mozilla::TimeDuration aDuration
, nsIObserver
* aObserver
)
1730 : mPointerId(aPointerId
),
1732 mDuration(aDuration
),
1733 mObserver(aObserver
),
1734 mStamp(mozilla::TimeStamp::Now()) {}
1737 LayoutDeviceIntPoint mPosition
;
1738 mozilla::TimeDuration mDuration
;
1739 nsCOMPtr
<nsIObserver
> mObserver
;
1740 mozilla::TimeStamp mStamp
;
1743 static void OnLongTapTimerCallback(nsITimer
* aTimer
, void* aClosure
);
1745 static already_AddRefed
<nsIBidiKeyboard
> CreateBidiKeyboardContentProcess();
1746 static already_AddRefed
<nsIBidiKeyboard
> CreateBidiKeyboardInner();
1748 mozilla::UniquePtr
<LongTapInfo
> mLongTapTouchPoint
;
1749 nsCOMPtr
<nsITimer
> mLongTapTimer
;
1750 static int32_t sPointerIdCounter
;
1754 * If key events have not been handled by content or XBL handlers, they can
1755 * be offered to the system (for custom application shortcuts set in system
1756 * preferences, for example).
1758 virtual void PostHandleKeyEvent(mozilla::WidgetKeyboardEvent
* aEvent
);
1761 * Activates a native menu item at the position specified by the index
1762 * string. The index string is a string of positive integers separated
1763 * by the "|" (pipe) character. The last integer in the string represents
1764 * the item index in a submenu located using the integers preceding it.
1767 * In this string, the first integer represents the top-level submenu
1768 * in the native menu bar. Since the integer is 1, it is the second submeu
1769 * in the native menu bar. Within that, the first item (index 0) is a
1770 * submenu, and we want to activate the 5th item within that submenu.
1772 virtual nsresult
ActivateNativeMenuItemAt(const nsAString
& indexString
) = 0;
1775 * This is used for native menu system testing.
1777 * Updates a native menu at the position specified by the index string.
1778 * The index string is a string of positive integers separated by the "|"
1782 * In this string, the first integer represents the top-level submenu
1783 * in the native menu bar. Since the integer is 1, it is the second submeu
1784 * in the native menu bar. Within that, the first item (index 0) is a
1785 * submenu, and we want to update submenu at index 4 within that submenu.
1787 * If this is called with an empty string it forces a full reload of the
1790 virtual nsresult
ForceUpdateNativeMenuAt(const nsAString
& indexString
) = 0;
1793 * This is used for testing macOS service menu code.
1795 * @param aResult - the current text selection. Is empty if no selection.
1796 * @return nsresult - whether or not aResult was assigned the selected text.
1798 [[nodiscard
]] virtual nsresult
GetSelectionAsPlaintext(nsAString
& aResult
) {
1799 return NS_ERROR_NOT_IMPLEMENTED
;
1803 * Notify IME of the specified notification.
1805 * @return If the notification is mouse button event and it's consumed by
1806 * IME, this returns NS_SUCCESS_EVENT_CONSUMED.
1808 virtual nsresult
NotifyIME(const IMENotification
& aIMENotification
) = 0;
1811 * MaybeDispatchInitialFocusEvent will dispatch a focus event after creation
1812 * of the widget, in the event that we were not able to observe and respond to
1813 * the initial focus event. This is necessary for the early skeleton UI
1814 * window, which is displayed and receives its initial focus event before we
1815 * can actually respond to it.
1817 virtual void MaybeDispatchInitialFocusEvent() {}
1820 * Notifies the input context changes.
1822 virtual void SetInputContext(const InputContext
& aContext
,
1823 const InputContextAction
& aAction
) = 0;
1826 * Get current input context.
1828 virtual InputContext
GetInputContext() = 0;
1831 * Get native IME context. This is different from GetNativeData() with
1832 * NS_RAW_NATIVE_IME_CONTEXT, the result is unique even if in a remote
1835 virtual NativeIMEContext
GetNativeIMEContext() = 0;
1838 * Given a WidgetKeyboardEvent, this method synthesizes a corresponding
1839 * native (OS-level) event for it. This method allows tests to simulate
1840 * keystrokes that trigger native key bindings (which require a native
1843 [[nodiscard
]] virtual nsresult
AttachNativeKeyEvent(
1844 mozilla::WidgetKeyboardEvent
& aEvent
) = 0;
1847 * Retrieve edit commands when the key combination of aEvent is used
1848 * in platform native applications.
1850 MOZ_CAN_RUN_SCRIPT
virtual bool GetEditCommands(
1851 mozilla::NativeKeyBindingsType aType
,
1852 const mozilla::WidgetKeyboardEvent
& aEvent
,
1853 nsTArray
<mozilla::CommandInt
>& aCommands
);
1856 * Retrieves a reference to notification requests of IME. Note that the
1857 * reference is valid while the nsIWidget instance is alive. So, if you
1858 * need to store the reference for a long time, you need to grab the widget
1861 const IMENotificationRequests
& IMENotificationRequestsRef();
1864 * Call this method when a dialog is opened which has a default button.
1865 * The button's rectangle should be supplied in aButtonRect.
1867 [[nodiscard
]] virtual nsresult
OnDefaultButtonLoaded(
1868 const LayoutDeviceIntRect
& aButtonRect
) = 0;
1871 * Return true if this process shouldn't use platform widgets, and
1872 * so should use PuppetWidgets instead. If this returns true, the
1873 * result of creating and using a platform widget is undefined,
1874 * and likely to end in crashes or other buggy behavior.
1876 static bool UsePuppetWidgets() { return XRE_IsContentProcess(); }
1878 static already_AddRefed
<nsIWidget
> CreateTopLevelWindow();
1880 static already_AddRefed
<nsIWidget
> CreateChildWindow();
1883 * Allocate and return a "puppet widget" that doesn't directly
1884 * correlate to a platform widget; platform events and data must
1885 * be fed to it. Currently used in content processes. NULL is
1886 * returned if puppet widgets aren't supported in this build
1887 * config, on this platform, or for this process type.
1889 * This function is called "Create" to match CreateInstance().
1890 * The returned widget must still be nsIWidget::Create()d.
1892 static already_AddRefed
<nsIWidget
> CreatePuppetWidget(
1893 BrowserChild
* aBrowserChild
);
1895 static already_AddRefed
<nsIWidget
> CreateHeadlessWidget();
1898 * Reparent this widget's native widget.
1899 * @param aNewParent the native widget of aNewParent is the new native
1902 virtual void ReparentNativeWidget(nsIWidget
* aNewParent
) = 0;
1905 * Return true if widget has it's own GL context
1907 virtual bool HasGLContext() { return false; }
1910 * Returns true to indicate that this widget paints an opaque background
1911 * that we want to be visible under the page, so layout should not force
1912 * a default background.
1914 virtual bool WidgetPaintsBackground() { return false; }
1916 virtual bool NeedsPaint() { return IsVisible() && !GetBounds().IsEmpty(); }
1919 * Get the natural bounds of this widget. This method is only
1920 * meaningful for widgets for which Gecko implements screen
1921 * rotation natively. When this is the case, GetBounds() returns
1922 * the widget bounds taking rotation into account, and
1923 * GetNaturalBounds() returns the bounds *not* taking rotation
1926 * No code outside of the composition pipeline should know or care
1927 * about this. If you're not an agent of the compositor, you
1928 * probably shouldn't call this method.
1930 virtual LayoutDeviceIntRect
GetNaturalBounds() { return GetBounds(); }
1933 * Set size constraints on the window size such that it is never less than
1934 * the specified minimum size and never larger than the specified maximum
1935 * size. The size constraints are sizes of the outer rectangle including
1936 * the window frame and title bar. Use 0 for an unconstrained minimum size
1937 * and NS_MAXSIZE for an unconstrained maximum size. Note that this method
1938 * does not necessarily change the size of a window to conform to this size,
1939 * thus Resize should be called afterwards.
1941 * @param aConstraints: the size constraints in device pixels
1943 virtual void SetSizeConstraints(const SizeConstraints
& aConstraints
) = 0;
1946 * Return the size constraints currently observed by the widget.
1948 * @return the constraints in device pixels
1950 virtual const SizeConstraints
GetSizeConstraints() = 0;
1953 * Apply the current size constraints to the given size.
1955 * @param aWidth width to constrain
1956 * @param aHeight height to constrain
1958 virtual void ConstrainSize(int32_t* aWidth
, int32_t* aHeight
) = 0;
1961 * If this is owned by a BrowserChild, return that. Otherwise return
1964 virtual BrowserChild
* GetOwningBrowserChild() { return nullptr; }
1967 * If this isn't directly compositing to its window surface,
1968 * return the compositor which is doing that on our behalf.
1970 virtual CompositorBridgeChild
* GetRemoteRenderer() { return nullptr; }
1973 * If there is a remote renderer, pause or resume it.
1975 virtual void PauseOrResumeCompositor(bool aPause
);
1978 * Clear WebRender resources
1980 virtual void ClearCachedWebrenderResources() {}
1983 * Clear WebRender animation resources
1985 virtual void ClearWebrenderAnimationResources() {}
1988 * Request fast snapshot at RenderCompositor of WebRender.
1989 * Since readback of Windows DirectComposition is very slow.
1991 virtual bool SetNeedFastSnaphot() { return false; }
1994 * If this widget has its own vsync dispatcher, return it, otherwise return
1995 * nullptr. An example of such a local vsync dispatcher would be Wayland frame
1998 virtual RefPtr
<mozilla::VsyncDispatcher
> GetVsyncDispatcher();
2001 * Returns true if the widget requires synchronous repaints on resize,
2004 virtual bool SynchronouslyRepaintOnResize() { return true; }
2007 * Some platforms (only cocoa right now) round widget coordinates to the
2008 * nearest even pixels (see bug 892994), this function allows us to
2009 * determine how widget coordinates will be rounded.
2011 virtual int32_t RoundsWidgetCoordinatesTo() { return 1; }
2013 virtual void UpdateZoomConstraints(
2014 const uint32_t& aPresShellId
, const ScrollableLayerGuid::ViewID
& aViewId
,
2015 const mozilla::Maybe
<ZoomConstraints
>& aConstraints
){};
2018 * GetTextEventDispatcher() returns TextEventDispatcher belonging to the
2019 * widget. Note that this never returns nullptr.
2021 virtual TextEventDispatcher
* GetTextEventDispatcher() = 0;
2024 * GetNativeTextEventDispatcherListener() returns a
2025 * TextEventDispatcherListener instance which is used when the widget
2026 * instance handles native IME and/or keyboard events.
2028 virtual TextEventDispatcherListener
*
2029 GetNativeTextEventDispatcherListener() = 0;
2032 * Trigger an animation to zoom to the given |aRect|.
2033 * |aRect| should be relative to the layout viewport of the widget's root
2036 virtual void ZoomToRect(const uint32_t& aPresShellId
,
2037 const ScrollableLayerGuid::ViewID
& aViewId
,
2038 const CSSRect
& aRect
, const uint32_t& aFlags
) = 0;
2041 * LookUpDictionary shows the dictionary for the word around current point.
2043 * @param aText the word to look up dictiorary.
2044 * @param aFontRangeArray text decoration of aText
2045 * @param aIsVertical true if the word is vertical layout
2046 * @param aPoint top-left point of aText
2048 virtual void LookUpDictionary(
2049 const nsAString
& aText
,
2050 const nsTArray
<mozilla::FontRange
>& aFontRangeArray
,
2051 const bool aIsVertical
, const LayoutDeviceIntPoint
& aPoint
) {}
2053 virtual void RequestFxrOutput() {
2054 MOZ_ASSERT(false, "This function should only execute in Windows");
2057 #if defined(MOZ_WIDGET_ANDROID)
2059 * RecvToolbarAnimatorMessageFromCompositor receive message from compositor
2062 * @param aMessage message being sent to Android UI thread.
2064 virtual void RecvToolbarAnimatorMessageFromCompositor(int32_t aMessage
) = 0;
2067 * UpdateRootFrameMetrics steady state frame metrics send from compositor
2070 * @param aScrollOffset page scroll offset value in screen pixels.
2071 * @param aZoom current page zoom.
2073 virtual void UpdateRootFrameMetrics(const ScreenPoint
& aScrollOffset
,
2074 const CSSToScreenScale
& aZoom
) = 0;
2077 * RecvScreenPixels Buffer containing the pixel from the frame buffer. Used
2078 * for android robocop tests.
2080 * @param aMem shared memory containing the frame buffer pixels.
2081 * @param aSize size of the buffer in screen pixels.
2083 virtual void RecvScreenPixels(mozilla::ipc::Shmem
&& aMem
,
2084 const ScreenIntSize
& aSize
,
2085 bool aNeedsYFlip
) = 0;
2087 virtual void UpdateDynamicToolbarMaxHeight(mozilla::ScreenIntCoord aHeight
) {}
2088 virtual mozilla::ScreenIntCoord
GetDynamicToolbarMaxHeight() const {
2093 static already_AddRefed
<nsIBidiKeyboard
> CreateBidiKeyboard();
2096 * Like GetDefaultScale, but taking into account only the system settings
2097 * and ignoring Gecko preferences.
2099 virtual double GetDefaultScaleInternal() { return 1.0; }
2101 using WindowButtonType
= mozilla::WindowButtonType
;
2104 * Layout uses this to alert the widget to the client rect representing
2105 * the window maximize button. An empty rect indicates there is no
2106 * maximize button (for example, in fullscreen). This is only implemented
2109 virtual void SetWindowButtonRect(WindowButtonType aButtonType
,
2110 const LayoutDeviceIntRect
& aClientRect
) {}
2113 virtual nsresult
SetHiDPIMode(bool aHiDPI
) {
2114 return NS_ERROR_NOT_IMPLEMENTED
;
2116 virtual nsresult
RestoreHiDPIMode() { return NS_ERROR_NOT_IMPLEMENTED
; }
2120 // keep the list of children. We also keep track of our siblings.
2121 // The ownership model is as follows: parent holds a strong ref to
2122 // the first element of the list, and each element holds a strong
2123 // ref to the next element in the list. The prevsibling and
2124 // lastchild pointers are weak, which is fine as long as they are
2125 // maintained properly.
2126 nsCOMPtr
<nsIWidget
> mFirstChild
;
2127 nsIWidget
* MOZ_NON_OWNING_REF mLastChild
;
2128 nsCOMPtr
<nsIWidget
> mNextSibling
;
2129 nsIWidget
* MOZ_NON_OWNING_REF mPrevSibling
;
2130 // When Destroy() is called, the sub class should set this true.
2131 bool mOnDestroyCalled
;
2132 WindowType mWindowType
;
2136 NS_DEFINE_STATIC_IID_ACCESSOR(nsIWidget
, NS_IWIDGET_IID
)
2138 #endif // nsIWidget_h__