mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 795307 - commit backout
This commit is contained in:
commit
b52df7be7e
@ -12,7 +12,6 @@
|
||||
#include "nsUXThemeConstants.h"
|
||||
#include "gfxFont.h"
|
||||
#include "WinUtils.h"
|
||||
#include "mozilla/Telemetry.h"
|
||||
|
||||
using namespace mozilla::widget;
|
||||
using mozilla::LookAndFeel;
|
||||
@ -39,18 +38,8 @@ static int32_t GetSystemParam(long flag, int32_t def)
|
||||
return ::SystemParametersInfo(flag, 0, &value, 0) ? value : def;
|
||||
}
|
||||
|
||||
static int32_t IsTouchPresent()
|
||||
{
|
||||
int32_t touchCapabilities;
|
||||
touchCapabilities = ::GetSystemMetrics(SM_DIGITIZER);
|
||||
return ((touchCapabilities & NID_READY) &&
|
||||
(touchCapabilities & (NID_EXTERNAL_TOUCH | NID_INTEGRATED_TOUCH)));
|
||||
}
|
||||
|
||||
nsLookAndFeel::nsLookAndFeel() : nsXPLookAndFeel()
|
||||
{
|
||||
mozilla::Telemetry::Accumulate(mozilla::Telemetry::TOUCH_ENABLED_DEVICE,
|
||||
IsTouchPresent());
|
||||
}
|
||||
|
||||
nsLookAndFeel::~nsLookAndFeel()
|
||||
@ -376,7 +365,13 @@ nsLookAndFeel::GetIntImpl(IntID aID, int32_t &aResult)
|
||||
aResult = !IsAppThemed();
|
||||
break;
|
||||
case eIntID_TouchEnabled:
|
||||
aResult = IsTouchPresent();
|
||||
aResult = 0;
|
||||
int32_t touchCapabilities;
|
||||
touchCapabilities = ::GetSystemMetrics(SM_DIGITIZER);
|
||||
if ((touchCapabilities & NID_READY) &&
|
||||
(touchCapabilities & (NID_EXTERNAL_TOUCH | NID_INTEGRATED_TOUCH))) {
|
||||
aResult = 1;
|
||||
}
|
||||
break;
|
||||
case eIntID_WindowsDefaultTheme:
|
||||
aResult = nsUXThemeData::IsDefaultWindowTheme();
|
||||
|
Loading…
Reference in New Issue
Block a user