DOM::CSSPrimitiveValue

Search for usage in LXR

DOM::CSSPrimitiveValue Class Reference

#include <css_value.h>

Inheritance diagram for DOM::CSSPrimitiveValue:

Public Types

enum  UnitTypes {
  CSS_UNKNOWN = 0, CSS_NUMBER = 1, CSS_PERCENTAGE = 2, CSS_EMS = 3,
  CSS_EXS = 4, CSS_CHS = 5, CSS_REMS = 6, CSS_PX = 7,
  CSS_CM = 8, CSS_MM = 9, CSS_IN = 10, CSS_PT = 11,
  CSS_PC = 12, CSS_DEG = 13, CSS_RAD = 14, CSS_GRAD = 15,
  CSS_MS = 16, CSS_S = 17, CSS_HZ = 18, CSS_KHZ = 19,
  CSS_DIMENSION = 20, CSS_STRING = 21, CSS_URI = 22, CSS_IDENT = 23,
  CSS_ATTR = 24, CSS_COUNTER = 25, CSS_RECT = 26, CSS_RGBCOLOR = 27,
  CSS_DPI = 28, CSS_DPCM = 29, CSS_PAIR = 100, CSS_HTML_RELATIVE = 255
}
 
- Public Types inherited from DOM::CSSValue
enum  UnitTypes {
  CSS_INHERIT = 0, CSS_PRIMITIVE_VALUE = 1, CSS_VALUE_LIST = 2, CSS_CUSTOM = 3,
  CSS_INITIAL = 4, CSS_SVG_VALUE = 1001
}
 

Public Member Functions

 CSSPrimitiveValue (const CSSPrimitiveValue &other)
 
 CSSPrimitiveValue (const CSSValue &other)
 
 CSSPrimitiveValue (CSSPrimitiveValueImpl *impl)
 
Counter getCounterValue () const
 
float getFloatValue (unsigned short unitType) const
 
Rect getRectValue () const
 
RGBColor getRGBColorValue () const
 
DOM::DOMString getStringValue () const
 
CSSPrimitiveValueoperator= (const CSSPrimitiveValue &other)
 
CSSPrimitiveValueoperator= (const CSSValue &other)
 
unsigned short primitiveType () const
 
void setFloatValue (unsigned short unitType, float floatValue)
 
void setStringValue (unsigned short stringType, const DOM::DOMString &stringValue)
 
- Public Member Functions inherited from DOM::CSSValue
 CSSValue (const CSSValue &other)
 
 CSSValue (CSSValueImpl *impl)
 
DOM::DOMString cssText () const
 
unsigned short cssValueType () const
 
CSSValueImpl * handle () const
 
bool isCSSPrimitiveValue () const
 
bool isCSSValueList () const
 
bool isNull () const
 
CSSValueoperator= (const CSSValue &other)
 
void setCssText (const DOM::DOMString &)
 

Additional Inherited Members

- Protected Attributes inherited from DOM::CSSValue
CSSValueImpl * impl
 

Detailed Description

The CSSPrimitiveValue interface represents a single CSS value .

This interface may be used to determine the value of a specific style property currently set in a block or to set a specific style properties explicitly within the block. An instance of this interface can be obtained from the getPropertyCSSValue method of the CSSStyleDeclaration interface.

Definition at line 367 of file css_value.h.

Member Enumeration Documentation

◆ UnitTypes

An integer indicating which type of unit applies to the value.

Definition at line 384 of file css_value.h.

Member Function Documentation

◆ getCounterValue()

Counter DOM::CSSPrimitiveValue::getCounterValue ( ) const

This method is used to get the Counter value.

If this CSS value doesn't contain a counter value, a DOMException is raised. Modification to the corresponding style property can be achieved using the Counter interface.

Returns
The Counter value.
Exceptions
DOMExceptionINVALID_ACCESS_ERR: Raises if the CSS value doesn't contain a Counter value.

Definition at line 449 of file css_value.cpp.

◆ getFloatValue()

float DOM::CSSPrimitiveValue::getFloatValue ( unsigned short  unitType) const

This method is used to get a float value in a specified unit.

If this CSS value doesn't contain a float value or can't be converted into the specified unit, a DOMException is raised.

Parameters
unitTypeA unit code to get the float value. The unit code can only be a float unit type (e.g. CSS_NUMBER , CSS_PERCENTAGE , CSS_EMS , CSS_EXS , CSS_PX , CSS_PX , CSS_CM , CSS_MM , CSS_IN , CSS_PT , CSS_PC , CSS_DEG , CSS_RAD , CSS_GRAD , CSS_MS , CSS_S , CSS_HZ , CSS_KHZ , CSS_DIMENSION ).
Returns
The float value in the specified unit.
Exceptions
DOMExceptionINVALID_ACCESS_ERR: Raises if the CSS value doesn't contain a float value or if the float value can't be converted into the specified unit.

Definition at line 414 of file css_value.cpp.

◆ getRectValue()

Rect DOM::CSSPrimitiveValue::getRectValue ( ) const

This method is used to get the Rect value.

If this CSS value doesn't contain a rect value, a DOMException is raised. Modification to the corresponding style property can be achieved using the Rect interface.

Returns
The Rect value.
Exceptions
DOMExceptionINVALID_ACCESS_ERR: Raises if the CSS value doesn't contain a Rect value.

Definition at line 457 of file css_value.cpp.

◆ getRGBColorValue()

RGBColor DOM::CSSPrimitiveValue::getRGBColorValue ( ) const

This method is used to get the RGB color.

If this CSS value doesn't contain a RGB color value, a DOMException is raised. Modification to the corresponding style property can be achieved using the RGBColor interface.

Returns
the RGB color value.
Exceptions
DOMExceptionINVALID_ACCESS_ERR: Raises if the attached property can't return a RGB color value.

Definition at line 465 of file css_value.cpp.

◆ getStringValue()

DOMString DOM::CSSPrimitiveValue::getStringValue ( ) const

This method is used to get the string value in a specified unit.

If the CSS value doesn't contain a string value, a DOMException is raised.

Returns
The string value in the current unit. The current valueType can only be a string unit type (e.g. CSS_URI , CSS_IDENT and CSS_ATTR ).
Exceptions
DOMExceptionINVALID_ACCESS_ERR: Raises if the CSS value doesn't contain a string value.

Definition at line 441 of file css_value.cpp.

◆ primitiveType()

unsigned short DOM::CSSPrimitiveValue::primitiveType ( ) const

The type of the value as defined by the constants specified above.

Definition at line 391 of file css_value.cpp.

◆ setFloatValue()

void DOM::CSSPrimitiveValue::setFloatValue ( unsigned short  unitType,
float  floatValue 
)

A method to set the float value with a specified unit.

If the property attached with this value can not accept the specified unit or the float value, the value will be unchanged and a DOMException will be raised.

Parameters
unitTypeA unit code as defined above. The unit code can only be a float unit type (e.g. NUMBER , PERCENTAGE , CSS_EMS , CSS_EXS , CSS_PX , CSS_PX , CSS_CM , CSS_MM , CSS_IN , CSS_PT , CSS_PC , CSS_DEG , CSS_RAD , CSS_GRAD , CSS_MS , CSS_S , CSS_HZ , CSS_KHZ , CSS_DIMENSION ).
floatValueThe new float value.
Returns
Exceptions
DOMExceptionINVALID_ACCESS_ERR: Raises if the attached property doesn't support the float value or the unit type.

NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

Definition at line 399 of file css_value.cpp.

◆ setStringValue()

void DOM::CSSPrimitiveValue::setStringValue ( unsigned short  stringType,
const DOM::DOMString stringValue 
)

A method to set the string value with a specified unit.

If the property attached to this value can't accept the specified unit or the string value, the value will be unchanged and a DOMException will be raised.

Parameters
stringTypeA string code as defined above. The string code can only be a string unit type (e.g. CSS_URI , CSS_IDENT , CSS_INHERIT and CSS_ATTR ).
stringValueThe new string value. If the stringType is equal to CSS_INHERIT , the stringValue should be inherit .
Returns
Exceptions
DOMExceptionINVALID_ACCESS_ERR: Raises if the CSS value doesn't contain a string value or if the string value can't be converted into the specified unit.

NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

Definition at line 426 of file css_value.cpp.


The documentation for this class was generated from the following files:
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Wed Mar 22 2023 04:00:01 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.