1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
9 #ifndef MOZILLA_INTERNAL_API
10 # error "This header is only usable from within libxul (MOZILLA_INTERNAL_API)."
17 #include "mozilla/Maybe.h"
18 #include "mozilla/widget/ThemeChangeKind.h"
19 #include "mozilla/ColorScheme.h"
27 using Modifiers
= uint16_t;
28 struct StyleColorSchemeFlags
;
35 class FullLookAndFeel
;
38 enum class StyleSystemColor
: uint8_t;
39 enum class StyleSystemColorScheme
: uint8_t;
40 enum class StyleSystemFont
: uint8_t;
44 using ColorID
= StyleSystemColor
;
45 using ColorScheme
= mozilla::ColorScheme
;
47 // When modifying this list, also modify nsXPLookAndFeel::sIntPrefs
48 // in widget/xpwidgts/nsXPLookAndFeel.cpp.
50 // default, may be overriden by OS
52 // Amount of blinks that happen before the caret stops blinking.
54 // pixel width of caret
56 // select textfields when focused via tab/accesskey?
57 SelectTextfieldsOnKeyFocus
,
58 // delay before submenus open
60 // can popups overlap menu/task bar?
62 // should overlay scrollbars be used?
64 // allow H and V overlay scrollbars to overlap?
65 AllowOverlayScrollbarsOverlap
,
66 // skip navigating to disabled menu item?
67 SkipNavigatingDisabledMenuItem
,
68 // begin a drag if the mouse is moved further than the threshold while the
72 // Accessibility theme being used?
73 UseAccessibilityTheme
,
75 // position of scroll arrows in a scrollbar
78 // each button can take one of four values:
79 ScrollButtonLeftMouseButtonAction
,
80 // 0 - scrolls one line, 1 - scrolls one page
81 ScrollButtonMiddleMouseButtonAction
,
82 // 2 - scrolls to end, 3 - button ignored
83 ScrollButtonRightMouseButtonAction
,
85 // delay for opening spring loaded folders
87 // delay for closing spring loaded folders
89 // delay for triggering the tree scrolling
91 // delay for scrolling the tree
93 // the maximum number of lines to be scrolled at ones
95 // What type of tab-order to use
97 // Should menu items blink when they're chosen?
98 ChosenMenuItemsShouldBlink
,
101 * A Boolean value to determine whether the Windows accent color
102 * should be applied to the title bar.
104 * The value of this metric is not used on other platforms. These platforms
105 * should return NS_ERROR_NOT_IMPLEMENTED when queried for this metric.
107 WindowsAccentColorInTitlebar
,
110 * A Boolean value to determine whether the macOS Big Sur-specific
111 * theming should be used.
116 * A Boolean value to determine whether macOS is in RTL mode or not.
120 /* Native macOS titlebar height. */
124 * AlertNotificationOrigin indicates from which corner of the
125 * screen alerts slide in, and from which direction (horizontal/vertical).
126 * 0, the default, represents bottom right, sliding vertically.
127 * Use any bitwise combination of the following constants:
128 * NS_ALERT_HORIZONTAL (1), NS_ALERT_LEFT (2), NS_ALERT_TOP (4).
138 AlertNotificationOrigin
,
141 * If true, clicking on a scrollbar (not as in dragging the thumb) defaults
142 * to scrolling the view corresponding to the clicked point. Otherwise, we
143 * only do so if the scrollbar is clicked using the middle mouse button or
144 * if shift is pressed when the scrollbar is clicked.
149 * IME and spell checker underline styles, the values should be
150 * NS_DECORATION_LINE_STYLE_*. They are defined below.
152 IMERawInputUnderlineStyle
,
153 IMESelectedRawTextUnderlineStyle
,
154 IMEConvertedTextUnderlineStyle
,
155 IMESelectedConvertedTextUnderline
,
156 SpellCheckerUnderlineStyle
,
159 * If this metric != 0, support window dragging on the menubar.
163 * 0: scrollbar button repeats to scroll only when cursor is on the button.
164 * 1: scrollbar button repeats to scroll even if cursor is outside of it.
166 ScrollbarButtonAutoRepeatBehavior
,
168 * A Boolean value to determine whether swipe animations should be used.
170 SwipeAnimationEnabled
,
173 * Controls whether overlay scrollbars display when the user moves
174 * the mouse in a scrollable frame.
176 ScrollbarDisplayOnMouseMove
,
179 * Overlay scrollbar animation constants.
181 ScrollbarFadeBeginDelay
,
182 ScrollbarFadeDuration
,
185 * Distance in pixels to offset the context menu from the cursor
188 ContextMenuOffsetVertical
,
189 ContextMenuOffsetHorizontal
,
190 TooltipOffsetVertical
,
193 * A boolean value indicating whether client-side decorations are
194 * supported by the user's GTK version.
199 * A boolean value indicating whether client-side decorations should
200 * contain a minimize button.
202 GTKCSDMinimizeButton
,
205 * A boolean value indicating whether client-side decorations should
206 * contain a maximize button.
208 GTKCSDMaximizeButton
,
211 * A boolean value indicating whether client-side decorations should
212 * contain a close button.
217 * An Integer value that will represent the position of the Minimize button
218 * in GTK Client side decoration header.
220 GTKCSDMinimizeButtonPosition
,
223 * An Integer value that will represent the position of the Maximize button
224 * in GTK Client side decoration header.
226 GTKCSDMaximizeButtonPosition
,
229 * An Integer value that will represent the position of the Close button
230 * in GTK Client side decoration header.
232 GTKCSDCloseButtonPosition
,
235 * A boolean value indicating whether titlebar buttons are located
236 * in left titlebar corner.
238 GTKCSDReversedPlacement
,
241 * A boolean value indicating whether or not the OS is using a dark theme,
242 * which we may want to switch to as well if not overridden by the user.
247 * Corresponding to prefers-reduced-motion.
248 * https://drafts.csswg.org/mediaqueries-5/#prefers-reduced-motion
252 PrefersReducedMotion
,
255 * Corresponding to prefers-reduced-transparency.
256 * https://drafts.csswg.org/mediaqueries-5/#prefers-reduced-transparency
260 PrefersReducedTransparency
,
263 * Corresponding to inverted-colors.
264 * https://drafts.csswg.org/mediaqueries-5/#inverted
271 * Corresponding to PointerCapabilities in ServoTypes.h
277 PrimaryPointerCapabilities
,
279 * Corresponding to union of PointerCapabilities values in ServoTypes.h
280 * E.g. if there is a mouse and a digitizer, the value will be
281 * 'Coarse | Fine | Hover'.
283 AllPointerCapabilities
,
285 /** The scrollbar size, in CSS pixels. */
288 /** A boolean value to determine whether a touch device is present */
289 TouchDeviceSupportPresent
,
291 /** GTK titlebar radius */
294 /** GTK button-to-button spacing in the inline axis */
295 TitlebarButtonSpacing
,
298 * Corresponding to dynamic-range.
299 * https://drafts.csswg.org/mediaqueries-5/#dynamic-range
305 /** Whether XUL panel animations are enabled. */
308 /* Whether we should hide the cursor while typing */
309 HideCursorWhileTyping
,
311 /* The StyleGtkThemeFamily of the current GTK theme. */
315 * Not an ID; used to define the range of valid IDs. Must be last.
320 // This is a common enough integer that seems worth the shortcut.
321 static bool UseOverlayScrollbars() {
322 return GetInt(IntID::UseOverlayScrollbars
);
325 static constexpr int32_t kDefaultTooltipOffset
= 21;
326 static int32_t TooltipOffsetVertical() {
327 return GetInt(IntID::TooltipOffsetVertical
, kDefaultTooltipOffset
);
330 // Returns keyCode value of a modifier key which is used for accesskey.
331 // Returns 0 if the platform doesn't support access key.
332 static uint32_t GetMenuAccessKey();
333 // Modifier mask for the menu accesskey.
334 static Modifiers
GetMenuAccessKeyModifiers();
337 eScrollArrow_None
= 0,
338 eScrollArrow_StartBackward
= 0x1000,
339 eScrollArrow_StartForward
= 0x0100,
340 eScrollArrow_EndBackward
= 0x0010,
341 eScrollArrow_EndForward
= 0x0001
345 // single arrow at each end
346 eScrollArrowStyle_Single
=
347 eScrollArrow_StartBackward
| eScrollArrow_EndForward
,
348 // both arrows at bottom/right, none at top/left
349 eScrollArrowStyle_BothAtBottom
=
350 eScrollArrow_EndBackward
| eScrollArrow_EndForward
,
351 // both arrows at both ends
352 eScrollArrowStyle_BothAtEachEnd
=
353 eScrollArrow_EndBackward
| eScrollArrow_EndForward
|
354 eScrollArrow_StartBackward
| eScrollArrow_StartForward
,
355 // both arrows at top/left, none at bottom/right
356 eScrollArrowStyle_BothAtTop
=
357 eScrollArrow_StartBackward
| eScrollArrow_StartForward
360 // When modifying this list, also modify nsXPLookAndFeel::sFloatPrefs
361 // in widget/nsXPLookAndFeel.cpp.
363 IMEUnderlineRelativeSize
,
364 SpellCheckerUnderlineRelativeSize
,
366 // The width/height ratio of the cursor. If used, the CaretWidth int metric
367 // should be added to the calculated caret width.
370 // GTK text scale factor.
373 // Mouse pointer scaling factor.
376 // Not an ID; used to define the range of valid IDs. Must be last.
380 using FontID
= mozilla::StyleSystemFont
;
382 static ColorScheme
SystemColorScheme() {
383 return GetInt(IntID::SystemUsesDarkTheme
) ? ColorScheme::Dark
384 : ColorScheme::Light
;
387 static bool IsDarkColor(nscolor
);
389 static ColorScheme
ColorSchemeForStyle(
390 const dom::Document
&, const StyleColorSchemeFlags
&,
391 ColorSchemeMode
= ColorSchemeMode::Used
);
392 static ColorScheme
ColorSchemeForFrame(
393 const nsIFrame
*, ColorSchemeMode
= ColorSchemeMode::Used
);
395 // Whether standins for native colors should be used (that is, colors faked,
396 // taken from win7, mostly). This forces light appearance, effectively.
397 enum class UseStandins
: bool { No
, Yes
};
398 static UseStandins
ShouldUseStandins(const dom::Document
&, ColorID
);
400 // Returns a native color value (might be overwritten by prefs) for a given
404 // ColorID::TextSelectForeground might return NS_SAME_AS_FOREGROUND_COLOR.
405 // ColorID::IME* might return NS_TRANSPARENT, NS_SAME_AS_FOREGROUND_COLOR or
406 // NS_40PERCENT_FOREGROUND_COLOR.
407 // These values have particular meaning. Then, they are not an actual
409 static Maybe
<nscolor
> GetColor(ColorID
, ColorScheme
, UseStandins
);
411 // Gets the color with appropriate defaults for UseStandins, ColorScheme etc
412 // for a given frame.
413 static Maybe
<nscolor
> GetColor(ColorID
, const nsIFrame
*);
415 // Versions of the above which returns the color if found, or a default (which
416 // defaults to opaque black) otherwise.
417 static nscolor
Color(ColorID aId
, ColorScheme aScheme
,
418 UseStandins aUseStandins
,
419 nscolor aDefault
= NS_RGB(0, 0, 0)) {
420 return GetColor(aId
, aScheme
, aUseStandins
).valueOr(aDefault
);
423 static nscolor
Color(ColorID aId
, nsIFrame
* aFrame
,
424 nscolor aDefault
= NS_RGB(0, 0, 0)) {
425 return GetColor(aId
, aFrame
).valueOr(aDefault
);
428 static float GetTextScaleFactor() {
429 float f
= GetFloat(FloatID::TextScaleFactor
, 1.0f
);
430 if (MOZ_UNLIKELY(f
<= 0.0f
)) {
436 struct ZoomSettings
{
437 float mFullZoom
= 1.0f
;
438 float mTextZoom
= 1.0f
;
441 static ZoomSettings
SystemZoomSettings();
444 * GetInt() and GetFloat() return a int or float value for aID. The result
445 * might be distance, time, some flags or a int value which has particular
446 * meaning. See each document at definition of each ID for the detail.
447 * The result is always 0 when they return error. Therefore, if you want to
448 * use a value for the default value, you should use the other method which
449 * returns int or float directly.
451 static nsresult
GetInt(IntID
, int32_t* aResult
);
452 static nsresult
GetFloat(FloatID aID
, float* aResult
);
454 static int32_t GetInt(IntID aID
, int32_t aDefault
= 0) {
456 if (NS_FAILED(GetInt(aID
, &result
))) {
462 static float GetFloat(FloatID aID
, float aDefault
= 0.0f
) {
464 if (NS_FAILED(GetFloat(aID
, &result
))) {
471 * Retrieve the name and style of a system-theme font. Returns true
472 * if the system theme specifies this font, false if a default should
473 * be used. In the latter case neither aName nor aStyle is modified.
475 * Size of the font should be in CSS pixels, not device pixels.
477 * @param aID Which system-theme font is wanted.
478 * @param aName The name of the font to use.
479 * @param aStyle Styling to apply to the font.
481 static bool GetFont(FontID aID
, nsString
& aName
, gfxFontStyle
& aStyle
);
484 * GetPasswordCharacter() returns a unicode character which should be used
485 * for a masked character in password editor. E.g., '*'.
487 static char16_t
GetPasswordCharacter();
490 * If the latest character in password field shouldn't be hidden by the
491 * result of GetPasswordCharacter(), GetEchoPassword() returns TRUE.
494 static bool GetEchoPassword();
497 * Whether we should be drawing in the titlebar by default.
499 static bool DrawInTitlebar();
501 enum class TitlebarAction
{
507 WindowMaximizeToggle
,
508 // We don't support more actions (maximize-horizontal, maximize-vertical,..)
509 // as they're implemented as part of Wayland gtk_surface1 protocol
510 // which is not accessible to us.
513 enum class TitlebarEvent
{
519 * Get system defined action for titlebar events.
521 static TitlebarAction
GetTitlebarAction(TitlebarEvent aEvent
);
524 * The millisecond to mask password value.
525 * This value is only valid when GetEchoPassword() returns true.
527 static uint32_t GetPasswordMaskDelay();
529 /** Gets theme information for about:support */
530 static void GetThemeInfo(nsACString
&);
533 * When system look and feel is changed, Refresh() must be called. Then,
534 * cached data would be released.
536 static void Refresh();
539 * GTK's initialization code can't be run off main thread, call this
540 * if you plan on using LookAndFeel off main thread later.
542 * This initialized state may get reset due to theme changes, so it
543 * must be called prior to each potential off-main-thread LookAndFeel
544 * call, not just once.
546 static void NativeInit();
548 static void SetData(widget::FullLookAndFeel
&& aTables
);
549 static void NotifyChangedAllWindows(widget::ThemeChangeKind
);
550 static bool HasPendingGlobalThemeChange() { return sGlobalThemeChanged
; }
551 static void HandleGlobalThemeChange() {
552 if (MOZ_UNLIKELY(HasPendingGlobalThemeChange())) {
553 DoHandleGlobalThemeChange();
558 static void DoHandleGlobalThemeChange();
559 // Set to true when ThemeChanged needs to be called on mTheme (and other
560 // global LookAndFeel. This is used because mTheme is a service, so there's
561 // no need to notify it from more than one prescontext.
562 static bool sGlobalThemeChanged
;
565 } // namespace mozilla
567 // ---------------------------------------------------------------------
568 // Special colors for ColorID::IME* and ColorID::SpellCheckerUnderline
569 // ---------------------------------------------------------------------
571 // For background color only.
572 constexpr nscolor NS_TRANSPARENT
= NS_RGBA(0x01, 0x00, 0x00, 0x00);
573 // For foreground color only.
574 constexpr nscolor NS_SAME_AS_FOREGROUND_COLOR
= NS_RGBA(0x02, 0x00, 0x00, 0x00);
575 constexpr nscolor NS_40PERCENT_FOREGROUND_COLOR
=
576 NS_RGBA(0x03, 0x00, 0x00, 0x00);
578 #define NS_IS_SELECTION_SPECIAL_COLOR(c) \
579 ((c) == NS_TRANSPARENT || (c) == NS_SAME_AS_FOREGROUND_COLOR || \
580 (c) == NS_40PERCENT_FOREGROUND_COLOR)
582 // ------------------------------------------
583 // Bits for IntID::AlertNotificationOrigin
584 // ------------------------------------------
586 #define NS_ALERT_HORIZONTAL 1
587 #define NS_ALERT_LEFT 2
588 #define NS_ALERT_TOP 4
590 #endif /* __LookAndFeel */