2001-11-06 05:41:04 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1998-07-29 22:55:25 +04:00
|
|
|
|
|
|
|
#ifndef __nsLookAndFeel
|
|
|
|
#define __nsLookAndFeel
|
2017-02-07 00:25:17 +03:00
|
|
|
|
2017-07-13 08:36:31 +03:00
|
|
|
#include <windows.h>
|
|
|
|
|
2001-11-06 05:41:04 +03:00
|
|
|
#include "nsXPLookAndFeel.h"
|
2017-06-09 18:59:12 +03:00
|
|
|
#include "gfxFont.h"
|
|
|
|
#include "mozilla/RangedArray.h"
|
2017-06-30 04:51:56 +03:00
|
|
|
#include "nsIWindowsRegKey.h"
|
1998-07-29 22:55:25 +04:00
|
|
|
|
2009-08-11 06:59:06 +04:00
|
|
|
/*
|
|
|
|
* Gesture System Metrics
|
|
|
|
*/
|
|
|
|
#ifndef SM_DIGITIZER
|
|
|
|
# define SM_DIGITIZER 94
|
|
|
|
# define TABLET_CONFIG_NONE 0x00000000
|
|
|
|
# define NID_INTEGRATED_TOUCH 0x00000001
|
|
|
|
# define NID_EXTERNAL_TOUCH 0x00000002
|
|
|
|
# define NID_INTEGRATED_PEN 0x00000004
|
|
|
|
# define NID_EXTERNAL_PEN 0x00000008
|
|
|
|
# define NID_MULTI_INPUT 0x00000040
|
|
|
|
# define NID_READY 0x00000080
|
|
|
|
#endif
|
|
|
|
|
2015-08-05 17:38:51 +03:00
|
|
|
/*
|
|
|
|
* Tablet mode detection
|
|
|
|
*/
|
|
|
|
#ifndef SM_SYSTEMDOCKED
|
|
|
|
# define SM_CONVERTIBLESLATEMODE 0x00002003
|
|
|
|
# define SM_SYSTEMDOCKED 0x00002004
|
2016-12-15 10:40:33 +03:00
|
|
|
#endif
|
2015-08-05 17:38:51 +03:00
|
|
|
|
2017-10-03 02:17:05 +03:00
|
|
|
/*
|
|
|
|
* Color constant inclusive bounds for GetSysColor
|
|
|
|
*/
|
|
|
|
#define SYS_COLOR_MIN 0
|
|
|
|
#define SYS_COLOR_MAX 30
|
|
|
|
#define SYS_COLOR_COUNT (SYS_COLOR_MAX - SYS_COLOR_MIN + 1)
|
|
|
|
|
2017-06-30 04:34:15 +03:00
|
|
|
class nsLookAndFeel final : public nsXPLookAndFeel {
|
2014-03-02 05:29:12 +04:00
|
|
|
static OperatingSystemVersion GetOperatingSystemVersion();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
1998-07-29 22:55:25 +04:00
|
|
|
public:
|
1998-09-15 00:40:49 +04:00
|
|
|
nsLookAndFeel();
|
1998-07-29 22:55:25 +04:00
|
|
|
virtual ~nsLookAndFeel();
|
|
|
|
|
2018-02-06 09:46:57 +03:00
|
|
|
void NativeInit() final;
|
2017-10-03 02:17:05 +03:00
|
|
|
void RefreshImpl() override;
|
2017-06-09 18:59:12 +03:00
|
|
|
nsresult NativeGetColor(ColorID aID, nscolor& aResult) override;
|
|
|
|
nsresult GetIntImpl(IntID aID, int32_t& aResult) override;
|
|
|
|
nsresult GetFloatImpl(FloatID aID, float& aResult) override;
|
2019-02-08 16:22:11 +03:00
|
|
|
bool GetFontImpl(FontID aID, nsString& aFontName,
|
|
|
|
gfxFontStyle& aFontStyle) override;
|
2017-06-09 18:59:12 +03:00
|
|
|
char16_t GetPasswordCharacterImpl() override;
|
|
|
|
|
2020-07-31 19:21:44 +03:00
|
|
|
LookAndFeelCache GetCacheImpl() override;
|
|
|
|
void SetCacheImpl(const LookAndFeelCache& aCache) override;
|
2016-02-03 23:49:36 +03:00
|
|
|
|
|
|
|
private:
|
2017-06-30 04:51:56 +03:00
|
|
|
/**
|
|
|
|
* Fetches the Windows accent color from the Windows settings if
|
|
|
|
* the accent color is set to apply to the title bar, otherwise
|
|
|
|
* returns an error code.
|
|
|
|
*/
|
|
|
|
nsresult GetAccentColor(nscolor& aColor);
|
|
|
|
|
2017-06-30 04:54:07 +03:00
|
|
|
/**
|
|
|
|
* If the Windows accent color from the Windows settings is set
|
|
|
|
* to apply to the title bar, this computes the color that should
|
|
|
|
* be used for text that is to be written over a background that has
|
|
|
|
* the accent color. Otherwise, (if the accent color should not
|
|
|
|
* apply to the title bar) this returns an error code.
|
|
|
|
*/
|
|
|
|
nsresult GetAccentColorText(nscolor& aColor);
|
|
|
|
|
2017-10-03 02:17:05 +03:00
|
|
|
nscolor GetColorForSysColorIndex(int index);
|
|
|
|
|
2020-07-31 19:21:44 +03:00
|
|
|
LookAndFeelFont GetLookAndFeelFontInternal(const LOGFONTW& aLogFont,
|
|
|
|
bool aUseShellDlg);
|
2020-07-31 20:32:57 +03:00
|
|
|
|
2020-07-31 19:21:44 +03:00
|
|
|
LookAndFeelFont GetLookAndFeelFont(LookAndFeel::FontID anID);
|
2020-07-31 20:32:57 +03:00
|
|
|
|
2020-07-31 19:21:44 +03:00
|
|
|
bool GetSysFont(LookAndFeel::FontID anID, nsString& aFontName,
|
|
|
|
gfxFontStyle& aFontStyle);
|
2020-07-31 20:32:57 +03:00
|
|
|
|
2017-04-13 19:13:49 +03:00
|
|
|
// Content process cached values that get shipped over from the browser
|
|
|
|
// process.
|
2016-02-03 23:49:36 +03:00
|
|
|
int32_t mUseAccessibilityTheme;
|
2017-04-13 19:13:49 +03:00
|
|
|
int32_t mUseDefaultTheme; // is the current theme a known default?
|
|
|
|
int32_t mNativeThemeId; // see LookAndFeel enum 'WindowsTheme'
|
2017-07-27 12:53:34 +03:00
|
|
|
int32_t mCaretBlinkTime;
|
2017-06-09 18:59:12 +03:00
|
|
|
|
2017-10-03 02:17:05 +03:00
|
|
|
// Cached colors and flags indicating success in their retrieval.
|
|
|
|
nscolor mColorMenuHoverText;
|
|
|
|
bool mHasColorMenuHoverText;
|
|
|
|
nscolor mColorAccent;
|
|
|
|
bool mHasColorAccent;
|
|
|
|
nscolor mColorAccentText;
|
|
|
|
bool mHasColorAccentText;
|
|
|
|
nscolor mColorMediaText;
|
|
|
|
bool mHasColorMediaText;
|
|
|
|
nscolor mColorCommunicationsText;
|
|
|
|
bool mHasColorCommunicationsText;
|
|
|
|
|
|
|
|
nscolor mSysColorTable[SYS_COLOR_COUNT];
|
|
|
|
|
|
|
|
bool mInitialized;
|
|
|
|
|
|
|
|
void EnsureInit();
|
|
|
|
|
2017-06-09 18:59:12 +03:00
|
|
|
struct CachedSystemFont {
|
|
|
|
CachedSystemFont() : mCacheValid(false) {}
|
|
|
|
|
|
|
|
bool mCacheValid;
|
|
|
|
bool mHaveFont;
|
|
|
|
nsString mFontName;
|
|
|
|
gfxFontStyle mFontStyle;
|
|
|
|
};
|
|
|
|
|
2020-06-11 14:27:58 +03:00
|
|
|
mozilla::RangedArray<CachedSystemFont, size_t(FontID::MINIMUM),
|
|
|
|
size_t(FontID::MAXIMUM) + 1 - size_t(FontID::MINIMUM)>
|
2017-06-09 18:59:12 +03:00
|
|
|
mSystemFontCache;
|
2017-06-30 04:51:56 +03:00
|
|
|
|
2020-07-31 19:21:44 +03:00
|
|
|
mozilla::RangedArray<LookAndFeelFont, size_t(FontID::MINIMUM),
|
|
|
|
size_t(FontID::MAXIMUM) + 1 - size_t(FontID::MINIMUM)>
|
|
|
|
mFontCache;
|
|
|
|
|
2017-06-30 04:51:56 +03:00
|
|
|
nsCOMPtr<nsIWindowsRegKey> mDwmKey;
|
1998-07-29 22:55:25 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|