本文整理汇总了C++中MediaValues::pointer方法的典型用法代码示例。如果您正苦于以下问题:C++ MediaValues::pointer方法的具体用法?C++ MediaValues::pointer怎么用?C++ MediaValues::pointer使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MediaValues
的用法示例。
在下文中一共展示了MediaValues::pointer方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: pointerMediaFeatureEval
static bool pointerMediaFeatureEval(const MediaQueryExpValue& value, MediaFeaturePrefix, const MediaValues& mediaValues)
{
MediaValues::PointerDeviceType pointer = mediaValues.pointer();
// If we're on a port that hasn't explicitly opted into providing pointer device information
// (or otherwise can't be confident in the pointer hardware available), then behave exactly
// as if this feature feature isn't supported.
if (pointer == MediaValues::UnknownPointer)
return false;
if (!value.isValid())
return pointer != MediaValues::NoPointer;
if (!value.isID)
return false;
return (pointer == MediaValues::NoPointer && value.id == CSSValueNone)
|| (pointer == MediaValues::TouchPointer && value.id == CSSValueCoarse)
|| (pointer == MediaValues::MousePointer && value.id == CSSValueFine);
}
示例2: hoverMediaFeatureEval
static bool hoverMediaFeatureEval(const MediaQueryExpValue& value, MediaFeaturePrefix, const MediaValues& mediaValues)
{
MediaValues::PointerDeviceType pointer = mediaValues.pointer();
// If we're on a port that hasn't explicitly opted into providing pointer device information
// (or otherwise can't be confident in the pointer hardware available), then behave exactly
// as if this feature feature isn't supported.
if (pointer == MediaValues::UnknownPointer)
return false;
float number = 1;
if (value.isValid()) {
if (!numberValue(value, number))
return false;
}
return (pointer == MediaValues::NoPointer && !number)
|| (pointer == MediaValues::TouchPointer && !number)
|| (pointer == MediaValues::MousePointer && number == 1);
}