当前位置: 首页>>代码示例>>C++>>正文


C++ SVGAnimationElement::targetElement方法代码示例

本文整理汇总了C++中SVGAnimationElement::targetElement方法的典型用法代码示例。如果您正苦于以下问题:C++ SVGAnimationElement::targetElement方法的具体用法?C++ SVGAnimationElement::targetElement怎么用?C++ SVGAnimationElement::targetElement使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SVGAnimationElement的用法示例。


在下文中一共展示了SVGAnimationElement::targetElement方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: animationsByElement

SVGTimer::TargetAnimationMap SVGTimer::animationsByElement(double elapsedSeconds)
{
    // Build a list of all animations which apply to each element
    // FIXME: This list should be sorted by animation priority
    ExceptionCode ec = 0;
    TargetAnimationMap targetMap;
    SVGNotifySet::const_iterator end = m_notifySet.end();
    for (SVGNotifySet::const_iterator it = m_notifySet.begin(); it != end; ++it) {
        SVGAnimationElement* animation = *it;
        
        // If we're dealing with a disabled element with fill="freeze",
        // we have to take it into account for further calculations.
        if (!m_enabledNotifySet.contains(animation)) {
            if (!animation->isFrozen())
                continue;
            if (elapsedSeconds <= (animation->getStartTime() + animation->getSimpleDuration(ec)))
                continue;
        }
        
        SVGElement* target = const_cast<SVGElement*>(animation->targetElement());
        TargetAnimationMap::iterator i = targetMap.find(target);
        if (i != targetMap.end())
            i->second.append(animation);
        else {
            Vector<SVGAnimationElement*> list;
            list.append(animation);
            targetMap.set(target, list);
        }
    }
    return targetMap;
}
开发者ID:jackiekaon,项目名称:owb-mirror,代码行数:31,代码来源:SVGTimer.cpp

示例2: targetElementAttrGetter

static v8::Handle<v8::Value> targetElementAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
    INC_STATS("DOM.SVGAnimationElement.targetElement._get");
    SVGAnimationElement* imp = V8SVGAnimationElement::toNative(info.Holder());
    return toV8(imp->targetElement());
}
开发者ID:Treeeater,项目名称:chrome_bindings,代码行数:6,代码来源:V8SVGAnimationElement.cpp


注:本文中的SVGAnimationElement::targetElement方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。