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
|
|
|
|
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-06-30 04:34:15 +03:00
|
|
|
class nsLookAndFeel final : public nsXPLookAndFeel
|
|
|
|
{
|
2014-03-02 05:29:12 +04:00
|
|
|
static OperatingSystemVersion GetOperatingSystemVersion();
|
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();
|
|
|
|
|
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;
|
|
|
|
bool GetFontImpl(FontID aID, nsString& aFontName,
|
|
|
|
gfxFontStyle& aFontStyle,
|
|
|
|
float aDevPixPerCSSPixel) override;
|
2017-06-09 18:59:12 +03:00
|
|
|
void RefreshImpl() override;
|
2017-06-09 18:59:12 +03:00
|
|
|
char16_t GetPasswordCharacterImpl() override;
|
|
|
|
|
|
|
|
nsTArray<LookAndFeelInt> GetIntCacheImpl() override;
|
|
|
|
void SetIntCacheImpl(const nsTArray<LookAndFeelInt>& aLookAndFeelIntCache) 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-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-06-09 18:59:12 +03:00
|
|
|
|
|
|
|
struct CachedSystemFont {
|
|
|
|
CachedSystemFont()
|
|
|
|
: mCacheValid(false)
|
|
|
|
{}
|
|
|
|
|
|
|
|
bool mCacheValid;
|
|
|
|
bool mHaveFont;
|
|
|
|
nsString mFontName;
|
|
|
|
gfxFontStyle mFontStyle;
|
|
|
|
};
|
|
|
|
|
|
|
|
mozilla::RangedArray<CachedSystemFont,
|
|
|
|
FontID_MINIMUM,
|
|
|
|
FontID_MAXIMUM + 1 - FontID_MINIMUM> mSystemFontCache;
|
2017-06-30 04:51:56 +03:00
|
|
|
|
|
|
|
nsCOMPtr<nsIWindowsRegKey> mDwmKey;
|
1998-07-29 22:55:25 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|