KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17
System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64
User : nobody ( 99)
PHP Version : 5.2.17
Disable Function : NONE
Directory :  /proc/21585/root/usr/include/xulrunner-17.0.10/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/21585/root/usr/include/xulrunner-17.0.10/nsSMILMappedAttribute.h
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */

/* representation of a SMIL-animatable mapped attribute on an element */

#ifndef NS_SMILMAPPEDATTRIBUTE_H_
#define NS_SMILMAPPEDATTRIBUTE_H_

#include "nsSMILCSSProperty.h"

/* We'll use the empty-string atom |nsGkAtoms::_empty| as the key for storing
 * an element's animated content style rule in its Property Table, under the
 * property-category SMIL_MAPPED_ATTR_ANIMVAL.  Everything else stored in that
 * category is keyed off of the XML attribute name, so the empty string is a
 * good "reserved" key to use for storing the style rule (since XML attributes
 * all have nonempty names).
 */
#define SMIL_MAPPED_ATTR_STYLERULE_ATOM nsGkAtoms::_empty

/**
 * nsSMILMappedAttribute: Implements the nsISMILAttr interface for SMIL
 * animations whose targets are attributes that map to CSS properties.  An
 * instance of this class represents a particular animation-targeted mapped
 * attribute on a particular element.
 */
class nsSMILMappedAttribute : public nsSMILCSSProperty {
public:
  /**
   * Constructs a new nsSMILMappedAttribute.
   *
   * @param  aPropID   The CSS property for the mapped attribute we're
   *                   interested in animating.
   * @param  aElement  The element whose attribute is being animated.
   */
  nsSMILMappedAttribute(nsCSSProperty aPropID, mozilla::dom::Element* aElement) :
    nsSMILCSSProperty(aPropID, aElement) {}

  // nsISMILAttr methods
  virtual nsresult ValueFromString(const nsAString& aStr,
                                   const nsISMILAnimationElement* aSrcElement,
                                   nsSMILValue& aValue,
                                   bool& aPreventCachingOfSandwich) const;
  virtual nsSMILValue GetBaseValue() const;
  virtual nsresult    SetAnimValue(const nsSMILValue& aValue);
  virtual void        ClearAnimValue();

protected:
  // Helper Methods
  void FlushChangesToTargetAttr() const;
  already_AddRefed<nsIAtom> GetAttrNameAtom() const;
};
#endif // NS_SMILMAPPEDATTRIBUTE_H_

Anon7 - 2021