diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /widget/cocoa/nsLookAndFeel.h | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'widget/cocoa/nsLookAndFeel.h')
-rw-r--r-- | widget/cocoa/nsLookAndFeel.h | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/widget/cocoa/nsLookAndFeel.h b/widget/cocoa/nsLookAndFeel.h new file mode 100644 index 0000000000..91eee7387b --- /dev/null +++ b/widget/cocoa/nsLookAndFeel.h @@ -0,0 +1,93 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* 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/. */ + +#ifndef nsLookAndFeel_h_ +#define nsLookAndFeel_h_ +#include "nsXPLookAndFeel.h" + +class nsLookAndFeel final : public nsXPLookAndFeel { + public: + explicit nsLookAndFeel(const LookAndFeelCache* aCache); + virtual ~nsLookAndFeel(); + + void NativeInit() final; + virtual void RefreshImpl() override; + nsresult NativeGetColor(ColorID aID, nscolor& aResult) override; + nsresult NativeGetInt(IntID aID, int32_t& aResult) override; + nsresult NativeGetFloat(FloatID aID, float& aResult) override; + bool NativeGetFont(FontID aID, nsString& aFontName, + gfxFontStyle& aFontStyle) override; + + virtual char16_t GetPasswordCharacterImpl() override { + // unicode value for the bullet character, used for password textfields. + return 0x2022; + } + + static bool UseOverlayScrollbars(); + + LookAndFeelCache GetCacheImpl() override; + void SetCacheImpl(const LookAndFeelCache& aCache) override; + + protected: + void DoSetCache(const LookAndFeelCache& aCache); + static bool AllowOverlayScrollbarsOverlap(); + + static bool SystemWantsDarkTheme(); + static nscolor ProcessSelectionBackground(nscolor aColor); + + private: + int32_t mUseOverlayScrollbars; + bool mUseOverlayScrollbarsCached; + + int32_t mAllowOverlayScrollbarsOverlap; + bool mAllowOverlayScrollbarsOverlapCached; + + int32_t mSystemUsesDarkTheme; + bool mSystemUsesDarkThemeCached; + + int32_t mPrefersReducedMotion = -1; + bool mPrefersReducedMotionCached = false; + + nscolor mColorTextSelectBackground; + nscolor mColorTextSelectBackgroundDisabled; + nscolor mColorHighlight; + nscolor mColorMenuHover; + nscolor mColorTextSelectForeground; + nscolor mColorMenuHoverText; + nscolor mColorButtonText; + bool mHasColorButtonText; + nscolor mColorButtonHoverText; + nscolor mColorText; + nscolor mColorWindowText; + nscolor mColorActiveCaption; + nscolor mColorActiveBorder; + nscolor mColorGrayText; + nscolor mColorInactiveBorder; + nscolor mColorInactiveCaption; + nscolor mColorScrollbar; + nscolor mColorThreeDHighlight; + nscolor mColorMenu; + nscolor mColorWindowFrame; + nscolor mColorFieldText; + nscolor mColorDialog; + nscolor mColorDialogText; + nscolor mColorDragTargetZone; + nscolor mColorChromeActive; + nscolor mColorChromeInactive; + nscolor mColorFocusRing; + nscolor mColorTextSelect; + nscolor mColorDisabledToolbarText; + nscolor mColorMenuSelect; + nscolor mColorCellHighlight; + nscolor mColorEvenTreeRow; + nscolor mColorOddTreeRow; + nscolor mColorActiveSourceListSelection; + + bool mInitialized; + + void EnsureInit(); +}; + +#endif // nsLookAndFeel_h_ |