KHTML
#include <css_extensions.h>
Detailed Description
The CSS2Properties
interface represents a convenience mechanism for retrieving and setting properties within a CSSStyleDeclaration
.
The attributes of this interface correspond to all the properties specified in CSS2 . Getting an attribute of this interface is equivalent to calling the getPropertyValue
method of the CSSStyleDeclaration
interface. Setting an attribute of this interface is equivalent to calling the setProperty
method of the CSSStyleDeclaration
interface.
A compliant implementation is not required to implement the CSS2Properties
interface. If an implementation does implement this interface, the expectation is that language-specific methods can be used to cast from an instance of the CSSStyleDeclaration
interface to the CSS2Properties
interface.
If an implementation does implement this interface, it is expected to understand the specific syntax of the shorthand properties, and apply their semantics; when the margin
property is set, for example, the marginTop
, marginRight
, marginBottom
and marginLeft
properties are actually being set by the underlying implementation.
When dealing with CSS "shorthand" properties, the shorthand properties should be decomposed into their component longhand properties as appropriate, and when querying for their value, the form returned should be the shortest form exactly equivalent to the declarations made in the ruleset. However, if there is no shorthand declaration that could be added to the ruleset without changing in any way the rules already declared in the ruleset (i.e., by adding longhand rules that were previously not declared in the ruleset), then the empty string should be returned for the shorthand property.
For example, querying for the font
property should not return "normal normal normal 14pt/normal Arial, sans-serif", when "14pt Arial, sans-serif" suffices (the normals are initial values, and are implied by use of the longhand property).
If the values for all the longhand properties that compose a particular string are the initial values, then a string consisting of all the initial values should be returned (e.g. a border-width
value of "medium" should be returned as such, not as "").
For some shorthand properties that take missing values from other sides, such as the margin
, padding
, and border-
[width|style|color] properties, the minimum number of sides possible should be used, i.e., "0px 10px" will be returned instead of "0px 10px 0px 10px".
If the value of a shorthand property can not be decomposed into its component longhand properties, as is the case for the font
property with a value of "menu", querying for the values of the component longhand properties should return the empty string.
Definition at line 1048 of file css_extensions.h.
Constructor & Destructor Documentation
CSS2Properties::CSS2Properties | ( | ) |
Definition at line 630 of file css_extensions.cpp.
CSS2Properties::CSS2Properties | ( | const CSS2Properties & | other | ) |
Definition at line 634 of file css_extensions.cpp.
CSS2Properties::CSS2Properties | ( | CSS2PropertiesImpl * | impl | ) |
Definition at line 638 of file css_extensions.cpp.
CSS2Properties::~CSS2Properties | ( | ) |
Definition at line 648 of file css_extensions.cpp.
Member Function Documentation
DOMString CSS2Properties::azimuth | ( | ) | const |
See the azimuth property definition in CSS2.
Definition at line 652 of file css_extensions.cpp.
DOMString CSS2Properties::background | ( | ) | const |
See the background property definition in CSS2.
Definition at line 663 of file css_extensions.cpp.
DOMString CSS2Properties::backgroundAttachment | ( | ) | const |
See the background-attachment property definition in CSS2.
Definition at line 674 of file css_extensions.cpp.
DOMString CSS2Properties::backgroundColor | ( | ) | const |
See the background-color property definition in CSS2.
Definition at line 685 of file css_extensions.cpp.
DOMString CSS2Properties::backgroundImage | ( | ) | const |
See the background-image property definition in CSS2.
Definition at line 696 of file css_extensions.cpp.
DOMString CSS2Properties::backgroundPosition | ( | ) | const |
See the background-position property definition in CSS2.
Definition at line 707 of file css_extensions.cpp.
DOMString CSS2Properties::backgroundRepeat | ( | ) | const |
See the background-repeat property definition in CSS2.
Definition at line 718 of file css_extensions.cpp.
DOMString CSS2Properties::border | ( | ) | const |
See the border property definition in CSS2.
Definition at line 729 of file css_extensions.cpp.
DOMString CSS2Properties::borderBottom | ( | ) | const |
See the border-bottom property definition in CSS2.
Definition at line 806 of file css_extensions.cpp.
DOMString CSS2Properties::borderBottomColor | ( | ) | const |
See the border-bottom-color property definition in CSS2.
Definition at line 850 of file css_extensions.cpp.
DOMString CSS2Properties::borderBottomStyle | ( | ) | const |
See the border-bottom-style property definition in CSS2.
Definition at line 894 of file css_extensions.cpp.
DOMString CSS2Properties::borderBottomWidth | ( | ) | const |
See the border-bottom-width property definition in CSS2.
Definition at line 938 of file css_extensions.cpp.
DOMString CSS2Properties::borderCollapse | ( | ) | const |
See the border-collapse property definition in CSS2.
Definition at line 740 of file css_extensions.cpp.
DOMString CSS2Properties::borderColor | ( | ) | const |
See the border-color property definition in CSS2.
Definition at line 751 of file css_extensions.cpp.
DOMString CSS2Properties::borderLeft | ( | ) | const |
See the border-left property definition in CSS2.
Definition at line 817 of file css_extensions.cpp.
DOMString CSS2Properties::borderLeftColor | ( | ) | const |
See the border-left-color property definition in CSS2.
Definition at line 861 of file css_extensions.cpp.
DOMString CSS2Properties::borderLeftStyle | ( | ) | const |
See the border-left-style property definition in CSS2.
Definition at line 905 of file css_extensions.cpp.
DOMString CSS2Properties::borderLeftWidth | ( | ) | const |
See the border-left-width property definition in CSS2.
Definition at line 949 of file css_extensions.cpp.
DOMString CSS2Properties::borderRight | ( | ) | const |
See the border-right property definition in CSS2.
Definition at line 795 of file css_extensions.cpp.
DOMString CSS2Properties::borderRightColor | ( | ) | const |
See the border-right-color property definition in CSS2.
Definition at line 839 of file css_extensions.cpp.
DOMString CSS2Properties::borderRightStyle | ( | ) | const |
See the border-right-style property definition in CSS2.
Definition at line 883 of file css_extensions.cpp.
DOMString CSS2Properties::borderRightWidth | ( | ) | const |
See the border-right-width property definition in CSS2.
Definition at line 927 of file css_extensions.cpp.
DOMString CSS2Properties::borderSpacing | ( | ) | const |
See the border-spacing property definition in CSS2.
Definition at line 762 of file css_extensions.cpp.
DOMString CSS2Properties::borderStyle | ( | ) | const |
See the border-style property definition in CSS2.
Definition at line 773 of file css_extensions.cpp.
DOMString CSS2Properties::borderTop | ( | ) | const |
See the border-top property definition in CSS2.
Definition at line 784 of file css_extensions.cpp.
DOMString CSS2Properties::borderTopColor | ( | ) | const |
See the border-top-color property definition in CSS2.
Definition at line 828 of file css_extensions.cpp.
DOMString CSS2Properties::borderTopStyle | ( | ) | const |
See the border-top-style property definition in CSS2.
Definition at line 872 of file css_extensions.cpp.
DOMString CSS2Properties::borderTopWidth | ( | ) | const |
See the border-top-width property definition in CSS2.
Definition at line 916 of file css_extensions.cpp.
DOMString CSS2Properties::borderWidth | ( | ) | const |
See the border-width property definition in CSS2.
Definition at line 960 of file css_extensions.cpp.
DOMString CSS2Properties::bottom | ( | ) | const |
See the bottom property definition in CSS2.
Definition at line 971 of file css_extensions.cpp.
DOMString CSS2Properties::captionSide | ( | ) | const |
See the caption-side property definition in CSS2.
Definition at line 982 of file css_extensions.cpp.
DOMString CSS2Properties::clear | ( | ) | const |
See the clear property definition in CSS2.
Definition at line 993 of file css_extensions.cpp.
DOMString CSS2Properties::clip | ( | ) | const |
See the clip property definition in CSS2.
Definition at line 1004 of file css_extensions.cpp.
DOMString CSS2Properties::color | ( | ) | const |
See the color property definition in CSS2.
Definition at line 1015 of file css_extensions.cpp.
DOMString CSS2Properties::content | ( | ) | const |
See the content property definition in CSS2.
Definition at line 1026 of file css_extensions.cpp.
DOMString CSS2Properties::counterIncrement | ( | ) | const |
See the counter-increment property definition in CSS2.
Definition at line 1037 of file css_extensions.cpp.
DOMString CSS2Properties::counterReset | ( | ) | const |
See the counter-reset property definition in CSS2.
Definition at line 1048 of file css_extensions.cpp.
DOMString CSS2Properties::cssFloat | ( | ) | const |
See the float property definition in CSS2.
Definition at line 1147 of file css_extensions.cpp.
DOMString CSS2Properties::cue | ( | ) | const |
See the cue property definition in CSS2.
Definition at line 1059 of file css_extensions.cpp.
DOMString CSS2Properties::cueAfter | ( | ) | const |
See the cue-after property definition in CSS2.
Definition at line 1070 of file css_extensions.cpp.
DOMString CSS2Properties::cueBefore | ( | ) | const |
See the cue-before property definition in CSS2.
Definition at line 1081 of file css_extensions.cpp.
DOMString CSS2Properties::cursor | ( | ) | const |
See the cursor property definition in CSS2.
Definition at line 1092 of file css_extensions.cpp.
DOMString CSS2Properties::direction | ( | ) | const |
See the direction property definition in CSS2.
Definition at line 1103 of file css_extensions.cpp.
DOMString CSS2Properties::display | ( | ) | const |
See the display property definition in CSS2.
Definition at line 1114 of file css_extensions.cpp.
DOMString CSS2Properties::elevation | ( | ) | const |
See the elevation property definition in CSS2.
Definition at line 1125 of file css_extensions.cpp.
DOMString CSS2Properties::emptyCells | ( | ) | const |
See the empty-cells property definition in CSS2.
Definition at line 1136 of file css_extensions.cpp.
DOMString CSS2Properties::font | ( | ) | const |
See the font property definition in CSS2.
Definition at line 1158 of file css_extensions.cpp.
DOMString CSS2Properties::fontFamily | ( | ) | const |
See the font-family property definition in CSS2.
Definition at line 1169 of file css_extensions.cpp.
DOMString CSS2Properties::fontSize | ( | ) | const |
See the font-size property definition in CSS2.
Definition at line 1180 of file css_extensions.cpp.
DOMString CSS2Properties::fontSizeAdjust | ( | ) | const |
See the font-size-adjust property definition in CSS2.
Definition at line 1191 of file css_extensions.cpp.
DOMString CSS2Properties::fontStretch | ( | ) | const |
See the font-stretch property definition in CSS2.
Definition at line 1202 of file css_extensions.cpp.
DOMString CSS2Properties::fontStyle | ( | ) | const |
See the font-style property definition in CSS2.
Definition at line 1213 of file css_extensions.cpp.
DOMString CSS2Properties::fontVariant | ( | ) | const |
See the font-variant property definition in CSS2.
Definition at line 1224 of file css_extensions.cpp.
DOMString CSS2Properties::fontWeight | ( | ) | const |
See the font-weight property definition in CSS2.
Definition at line 1235 of file css_extensions.cpp.
DOMString CSS2Properties::height | ( | ) | const |
See the height property definition in CSS2.
Definition at line 1246 of file css_extensions.cpp.
DOMString CSS2Properties::left | ( | ) | const |
See the left property definition in CSS2.
Definition at line 1257 of file css_extensions.cpp.
DOMString CSS2Properties::letterSpacing | ( | ) | const |
See the letter-spacing property definition in CSS2.
Definition at line 1268 of file css_extensions.cpp.
DOMString CSS2Properties::lineHeight | ( | ) | const |
See the line-height property definition in CSS2.
Definition at line 1279 of file css_extensions.cpp.
DOMString CSS2Properties::listStyle | ( | ) | const |
See the list-style property definition in CSS2.
Definition at line 1290 of file css_extensions.cpp.
DOMString CSS2Properties::listStyleImage | ( | ) | const |
See the list-style-image property definition in CSS2.
Definition at line 1301 of file css_extensions.cpp.
DOMString CSS2Properties::listStylePosition | ( | ) | const |
See the list-style-position property definition in CSS2.
Definition at line 1312 of file css_extensions.cpp.
DOMString CSS2Properties::listStyleType | ( | ) | const |
See the list-style-type property definition in CSS2.
Definition at line 1323 of file css_extensions.cpp.
DOMString CSS2Properties::margin | ( | ) | const |
See the margin property definition in CSS2.
Definition at line 1334 of file css_extensions.cpp.
DOMString CSS2Properties::marginBottom | ( | ) | const |
See the margin-bottom property definition in CSS2.
Definition at line 1367 of file css_extensions.cpp.
DOMString CSS2Properties::marginLeft | ( | ) | const |
See the margin-left property definition in CSS2.
Definition at line 1378 of file css_extensions.cpp.
DOMString CSS2Properties::marginRight | ( | ) | const |
See the margin-right property definition in CSS2.
Definition at line 1356 of file css_extensions.cpp.
DOMString CSS2Properties::marginTop | ( | ) | const |
See the margin-top property definition in CSS2.
Definition at line 1345 of file css_extensions.cpp.
DOMString CSS2Properties::markerOffset | ( | ) | const |
See the marker-offset property definition in CSS2.
Definition at line 1389 of file css_extensions.cpp.
DOMString CSS2Properties::marks | ( | ) | const |
See the marks property definition in CSS2.
Definition at line 1400 of file css_extensions.cpp.
DOMString CSS2Properties::maxHeight | ( | ) | const |
See the max-height property definition in CSS2.
Definition at line 1411 of file css_extensions.cpp.
DOMString CSS2Properties::maxWidth | ( | ) | const |
See the max-width property definition in CSS2.
Definition at line 1422 of file css_extensions.cpp.
DOMString CSS2Properties::minHeight | ( | ) | const |
See the min-height property definition in CSS2.
Definition at line 1433 of file css_extensions.cpp.
DOMString CSS2Properties::minWidth | ( | ) | const |
See the min-width property definition in CSS2.
Definition at line 1444 of file css_extensions.cpp.
CSS2Properties & CSS2Properties::operator= | ( | const CSS2Properties & | other | ) |
Definition at line 642 of file css_extensions.cpp.
DOMString CSS2Properties::orphans | ( | ) | const |
See the orphans property definition in CSS2.
Definition at line 1455 of file css_extensions.cpp.
DOMString CSS2Properties::outline | ( | ) | const |
See the outline property definition in CSS2.
Definition at line 1466 of file css_extensions.cpp.
DOMString CSS2Properties::outlineColor | ( | ) | const |
See the outline-color property definition in CSS2.
Definition at line 1477 of file css_extensions.cpp.
DOMString CSS2Properties::outlineStyle | ( | ) | const |
See the outline-style property definition in CSS2.
Definition at line 1488 of file css_extensions.cpp.
DOMString CSS2Properties::outlineWidth | ( | ) | const |
See the outline-width property definition in CSS2.
Definition at line 1499 of file css_extensions.cpp.
DOMString CSS2Properties::overflow | ( | ) | const |
See the overflow property definition in CSS2.
Definition at line 1510 of file css_extensions.cpp.
DOMString CSS2Properties::padding | ( | ) | const |
See the padding property definition in CSS2.
Definition at line 1521 of file css_extensions.cpp.
DOMString CSS2Properties::paddingBottom | ( | ) | const |
See the padding-bottom property definition in CSS2.
Definition at line 1554 of file css_extensions.cpp.
DOMString CSS2Properties::paddingLeft | ( | ) | const |
See the padding-left property definition in CSS2.
Definition at line 1565 of file css_extensions.cpp.
DOMString CSS2Properties::paddingRight | ( | ) | const |
See the padding-right property definition in CSS2.
Definition at line 1543 of file css_extensions.cpp.
DOMString CSS2Properties::paddingTop | ( | ) | const |
See the padding-top property definition in CSS2.
Definition at line 1532 of file css_extensions.cpp.
DOMString CSS2Properties::page | ( | ) | const |
See the page property definition in CSS2.
Definition at line 1576 of file css_extensions.cpp.
DOMString CSS2Properties::pageBreakAfter | ( | ) | const |
See the page-break-after property definition in CSS2.
Definition at line 1587 of file css_extensions.cpp.
DOMString CSS2Properties::pageBreakBefore | ( | ) | const |
See the page-break-before property definition in CSS2.
Definition at line 1598 of file css_extensions.cpp.
DOMString CSS2Properties::pageBreakInside | ( | ) | const |
See the page-break-inside property definition in CSS2.
Definition at line 1609 of file css_extensions.cpp.
DOMString CSS2Properties::pause | ( | ) | const |
See the pause property definition in CSS2.
Definition at line 1620 of file css_extensions.cpp.
DOMString CSS2Properties::pauseAfter | ( | ) | const |
See the pause-after property definition in CSS2.
Definition at line 1631 of file css_extensions.cpp.
DOMString CSS2Properties::pauseBefore | ( | ) | const |
See the pause-before property definition in CSS2.
Definition at line 1642 of file css_extensions.cpp.
DOMString CSS2Properties::pitch | ( | ) | const |
See the pitch property definition in CSS2.
Definition at line 1653 of file css_extensions.cpp.
DOMString CSS2Properties::pitchRange | ( | ) | const |
See the pitch-range property definition in CSS2.
Definition at line 1664 of file css_extensions.cpp.
DOMString CSS2Properties::playDuring | ( | ) | const |
See the play-during property definition in CSS2.
Definition at line 1675 of file css_extensions.cpp.
DOMString CSS2Properties::position | ( | ) | const |
See the position property definition in CSS2.
Definition at line 1686 of file css_extensions.cpp.
DOMString CSS2Properties::quotes | ( | ) | const |
See the quotes property definition in CSS2.
Definition at line 1697 of file css_extensions.cpp.
DOMString CSS2Properties::richness | ( | ) | const |
See the richness property definition in CSS2.
Definition at line 1708 of file css_extensions.cpp.
DOMString CSS2Properties::right | ( | ) | const |
See the right property definition in CSS2.
Definition at line 1719 of file css_extensions.cpp.
void CSS2Properties::setAzimuth | ( | const DOM::DOMString & | value | ) |
see azimuth
Definition at line 658 of file css_extensions.cpp.
void CSS2Properties::setBackground | ( | const DOM::DOMString & | value | ) |
see background
Definition at line 669 of file css_extensions.cpp.
void CSS2Properties::setBackgroundAttachment | ( | const DOM::DOMString & | value | ) |
see backgroundAttachment
Definition at line 680 of file css_extensions.cpp.
void CSS2Properties::setBackgroundColor | ( | const DOM::DOMString & | value | ) |
see backgroundColor
Definition at line 691 of file css_extensions.cpp.
void CSS2Properties::setBackgroundImage | ( | const DOM::DOMString & | value | ) |
see backgroundImage
Definition at line 702 of file css_extensions.cpp.
void CSS2Properties::setBackgroundPosition | ( | const DOM::DOMString & | value | ) |
see backgroundPosition
Definition at line 713 of file css_extensions.cpp.
void CSS2Properties::setBackgroundRepeat | ( | const DOM::DOMString & | value | ) |
see backgroundRepeat
Definition at line 724 of file css_extensions.cpp.
void CSS2Properties::setBorder | ( | const DOM::DOMString & | value | ) |
see border
Definition at line 735 of file css_extensions.cpp.
void CSS2Properties::setBorderBottom | ( | const DOM::DOMString & | value | ) |
see borderBottom
Definition at line 812 of file css_extensions.cpp.
void CSS2Properties::setBorderBottomColor | ( | const DOM::DOMString & | value | ) |
see borderBottomColor
Definition at line 856 of file css_extensions.cpp.
void CSS2Properties::setBorderBottomStyle | ( | const DOM::DOMString & | value | ) |
see borderBottomStyle
Definition at line 900 of file css_extensions.cpp.
void CSS2Properties::setBorderBottomWidth | ( | const DOM::DOMString & | value | ) |
see borderBottomWidth
Definition at line 944 of file css_extensions.cpp.
void CSS2Properties::setBorderCollapse | ( | const DOM::DOMString & | value | ) |
see borderCollapse
Definition at line 746 of file css_extensions.cpp.
void CSS2Properties::setBorderColor | ( | const DOM::DOMString & | value | ) |
see borderColor
Definition at line 757 of file css_extensions.cpp.
void CSS2Properties::setBorderLeft | ( | const DOM::DOMString & | value | ) |
see borderLeft
Definition at line 823 of file css_extensions.cpp.
void CSS2Properties::setBorderLeftColor | ( | const DOM::DOMString & | value | ) |
see borderLeftColor
Definition at line 867 of file css_extensions.cpp.
void CSS2Properties::setBorderLeftStyle | ( | const DOM::DOMString & | value | ) |
see borderLeftStyle
Definition at line 911 of file css_extensions.cpp.
void CSS2Properties::setBorderLeftWidth | ( | const DOM::DOMString & | value | ) |
see borderLeftWidth
Definition at line 955 of file css_extensions.cpp.
void CSS2Properties::setBorderRight | ( | const DOM::DOMString & | value | ) |
see borderRight
Definition at line 801 of file css_extensions.cpp.
void CSS2Properties::setBorderRightColor | ( | const DOM::DOMString & | value | ) |
see borderRightColor
Definition at line 845 of file css_extensions.cpp.
void CSS2Properties::setBorderRightStyle | ( | const DOM::DOMString & | value | ) |
see borderRightStyle
Definition at line 889 of file css_extensions.cpp.
void CSS2Properties::setBorderRightWidth | ( | const DOM::DOMString & | value | ) |
see borderRightWidth
Definition at line 933 of file css_extensions.cpp.
void CSS2Properties::setBorderSpacing | ( | const DOM::DOMString & | value | ) |
see borderSpacing
Definition at line 768 of file css_extensions.cpp.
void CSS2Properties::setBorderStyle | ( | const DOM::DOMString & | value | ) |
see borderStyle
Definition at line 779 of file css_extensions.cpp.
void CSS2Properties::setBorderTop | ( | const DOM::DOMString & | value | ) |
see borderTop
Definition at line 790 of file css_extensions.cpp.
void CSS2Properties::setBorderTopColor | ( | const DOM::DOMString & | value | ) |
see borderTopColor
Definition at line 834 of file css_extensions.cpp.
void CSS2Properties::setBorderTopStyle | ( | const DOM::DOMString & | value | ) |
see borderTopStyle
Definition at line 878 of file css_extensions.cpp.
void CSS2Properties::setBorderTopWidth | ( | const DOM::DOMString & | value | ) |
see borderTopWidth
Definition at line 922 of file css_extensions.cpp.
void CSS2Properties::setBorderWidth | ( | const DOM::DOMString & | value | ) |
see borderWidth
Definition at line 966 of file css_extensions.cpp.
void CSS2Properties::setBottom | ( | const DOM::DOMString & | value | ) |
see bottom
Definition at line 977 of file css_extensions.cpp.
void CSS2Properties::setCaptionSide | ( | const DOM::DOMString & | value | ) |
see captionSide
Definition at line 988 of file css_extensions.cpp.
void CSS2Properties::setClear | ( | const DOM::DOMString & | value | ) |
see clear
Definition at line 999 of file css_extensions.cpp.
void CSS2Properties::setClip | ( | const DOM::DOMString & | value | ) |
see clip
Definition at line 1010 of file css_extensions.cpp.
void CSS2Properties::setColor | ( | const DOM::DOMString & | value | ) |
see color
Definition at line 1021 of file css_extensions.cpp.
void CSS2Properties::setContent | ( | const DOM::DOMString & | value | ) |
see content
Definition at line 1032 of file css_extensions.cpp.
void CSS2Properties::setCounterIncrement | ( | const DOM::DOMString & | value | ) |
see counterIncrement
Definition at line 1043 of file css_extensions.cpp.
void CSS2Properties::setCounterReset | ( | const DOM::DOMString & | value | ) |
see counterReset
Definition at line 1054 of file css_extensions.cpp.
void CSS2Properties::setCssFloat | ( | const DOM::DOMString & | value | ) |
see cssFloat
Definition at line 1153 of file css_extensions.cpp.
void CSS2Properties::setCue | ( | const DOM::DOMString & | value | ) |
see cue
Definition at line 1065 of file css_extensions.cpp.
void CSS2Properties::setCueAfter | ( | const DOM::DOMString & | value | ) |
see cueAfter
Definition at line 1076 of file css_extensions.cpp.
void CSS2Properties::setCueBefore | ( | const DOM::DOMString & | value | ) |
see cueBefore
Definition at line 1087 of file css_extensions.cpp.
void CSS2Properties::setCursor | ( | const DOM::DOMString & | value | ) |
see cursor
Definition at line 1098 of file css_extensions.cpp.
void CSS2Properties::setDirection | ( | const DOM::DOMString & | value | ) |
see direction
Definition at line 1109 of file css_extensions.cpp.
void CSS2Properties::setDisplay | ( | const DOM::DOMString & | value | ) |
see display
Definition at line 1120 of file css_extensions.cpp.
void CSS2Properties::setElevation | ( | const DOM::DOMString & | value | ) |
see elevation
Definition at line 1131 of file css_extensions.cpp.
void CSS2Properties::setEmptyCells | ( | const DOM::DOMString & | value | ) |
see emptyCells
Definition at line 1142 of file css_extensions.cpp.
void CSS2Properties::setFont | ( | const DOM::DOMString & | value | ) |
see font
Definition at line 1164 of file css_extensions.cpp.
void CSS2Properties::setFontFamily | ( | const DOM::DOMString & | value | ) |
see fontFamily
Definition at line 1175 of file css_extensions.cpp.
void CSS2Properties::setFontSize | ( | const DOM::DOMString & | value | ) |
see fontSize
Definition at line 1186 of file css_extensions.cpp.
void CSS2Properties::setFontSizeAdjust | ( | const DOM::DOMString & | value | ) |
see fontSizeAdjust
Definition at line 1197 of file css_extensions.cpp.
void CSS2Properties::setFontStretch | ( | const DOM::DOMString & | value | ) |
see fontStretch
Definition at line 1208 of file css_extensions.cpp.
void CSS2Properties::setFontStyle | ( | const DOM::DOMString & | value | ) |
see fontStyle
Definition at line 1219 of file css_extensions.cpp.
void CSS2Properties::setFontVariant | ( | const DOM::DOMString & | value | ) |
see fontVariant
Definition at line 1230 of file css_extensions.cpp.
void CSS2Properties::setFontWeight | ( | const DOM::DOMString & | value | ) |
see fontWeight
Definition at line 1241 of file css_extensions.cpp.
void CSS2Properties::setHeight | ( | const DOM::DOMString & | value | ) |
see height
Definition at line 1252 of file css_extensions.cpp.
void CSS2Properties::setLeft | ( | const DOM::DOMString & | value | ) |
see left
Definition at line 1263 of file css_extensions.cpp.
void CSS2Properties::setLetterSpacing | ( | const DOM::DOMString & | value | ) |
see letterSpacing
Definition at line 1274 of file css_extensions.cpp.
void CSS2Properties::setLineHeight | ( | const DOM::DOMString & | value | ) |
see lineHeight
Definition at line 1285 of file css_extensions.cpp.
void CSS2Properties::setListStyle | ( | const DOM::DOMString & | value | ) |
see listStyle
Definition at line 1296 of file css_extensions.cpp.
void CSS2Properties::setListStyleImage | ( | const DOM::DOMString & | value | ) |
see listStyleImage
Definition at line 1307 of file css_extensions.cpp.
void CSS2Properties::setListStylePosition | ( | const DOM::DOMString & | value | ) |
see listStylePosition
Definition at line 1318 of file css_extensions.cpp.
void CSS2Properties::setListStyleType | ( | const DOM::DOMString & | value | ) |
see listStyleType
Definition at line 1329 of file css_extensions.cpp.
void CSS2Properties::setMargin | ( | const DOM::DOMString & | value | ) |
see margin
Definition at line 1340 of file css_extensions.cpp.
void CSS2Properties::setMarginBottom | ( | const DOM::DOMString & | value | ) |
see marginBottom
Definition at line 1373 of file css_extensions.cpp.
void CSS2Properties::setMarginLeft | ( | const DOM::DOMString & | value | ) |
see marginLeft
Definition at line 1384 of file css_extensions.cpp.
void CSS2Properties::setMarginRight | ( | const DOM::DOMString & | value | ) |
see marginRight
Definition at line 1362 of file css_extensions.cpp.
void CSS2Properties::setMarginTop | ( | const DOM::DOMString & | value | ) |
see marginTop
Definition at line 1351 of file css_extensions.cpp.
void CSS2Properties::setMarkerOffset | ( | const DOM::DOMString & | value | ) |
see markerOffset
Definition at line 1395 of file css_extensions.cpp.
void CSS2Properties::setMarks | ( | const DOM::DOMString & | value | ) |
see marks
Definition at line 1406 of file css_extensions.cpp.
void CSS2Properties::setMaxHeight | ( | const DOM::DOMString & | value | ) |
see maxHeight
Definition at line 1417 of file css_extensions.cpp.
void CSS2Properties::setMaxWidth | ( | const DOM::DOMString & | value | ) |
see maxWidth
Definition at line 1428 of file css_extensions.cpp.
void CSS2Properties::setMinHeight | ( | const DOM::DOMString & | value | ) |
see minHeight
Definition at line 1439 of file css_extensions.cpp.
void CSS2Properties::setMinWidth | ( | const DOM::DOMString & | value | ) |
see minWidth
Definition at line 1450 of file css_extensions.cpp.
void CSS2Properties::setOrphans | ( | const DOM::DOMString & | value | ) |
see orphans
Definition at line 1461 of file css_extensions.cpp.
void CSS2Properties::setOutline | ( | const DOM::DOMString & | value | ) |
see outline
Definition at line 1472 of file css_extensions.cpp.
void CSS2Properties::setOutlineColor | ( | const DOM::DOMString & | value | ) |
see outlineColor
Definition at line 1483 of file css_extensions.cpp.
void CSS2Properties::setOutlineStyle | ( | const DOM::DOMString & | value | ) |
see outlineStyle
Definition at line 1494 of file css_extensions.cpp.
void CSS2Properties::setOutlineWidth | ( | const DOM::DOMString & | value | ) |
see outlineWidth
Definition at line 1505 of file css_extensions.cpp.
void CSS2Properties::setOverflow | ( | const DOM::DOMString & | value | ) |
see overflow
Definition at line 1516 of file css_extensions.cpp.
void CSS2Properties::setPadding | ( | const DOM::DOMString & | value | ) |
see padding
Definition at line 1527 of file css_extensions.cpp.
void CSS2Properties::setPaddingBottom | ( | const DOM::DOMString & | value | ) |
see paddingBottom
Definition at line 1560 of file css_extensions.cpp.
void CSS2Properties::setPaddingLeft | ( | const DOM::DOMString & | value | ) |
see paddingLeft
Definition at line 1571 of file css_extensions.cpp.
void CSS2Properties::setPaddingRight | ( | const DOM::DOMString & | value | ) |
see paddingRight
Definition at line 1549 of file css_extensions.cpp.
void CSS2Properties::setPaddingTop | ( | const DOM::DOMString & | value | ) |
see paddingTop
Definition at line 1538 of file css_extensions.cpp.
void CSS2Properties::setPage | ( | const DOM::DOMString & | value | ) |
see page
Definition at line 1582 of file css_extensions.cpp.
void CSS2Properties::setPageBreakAfter | ( | const DOM::DOMString & | value | ) |
see pageBreakAfter
Definition at line 1593 of file css_extensions.cpp.
void CSS2Properties::setPageBreakBefore | ( | const DOM::DOMString & | value | ) |
see pageBreakBefore
Definition at line 1604 of file css_extensions.cpp.
void CSS2Properties::setPageBreakInside | ( | const DOM::DOMString & | value | ) |
see pageBreakInside
Definition at line 1615 of file css_extensions.cpp.
void CSS2Properties::setPause | ( | const DOM::DOMString & | value | ) |
see pause
Definition at line 1626 of file css_extensions.cpp.
void CSS2Properties::setPauseAfter | ( | const DOM::DOMString & | value | ) |
see pauseAfter
Definition at line 1637 of file css_extensions.cpp.
void CSS2Properties::setPauseBefore | ( | const DOM::DOMString & | value | ) |
see pauseBefore
Definition at line 1648 of file css_extensions.cpp.
void CSS2Properties::setPitch | ( | const DOM::DOMString & | value | ) |
see pitch
Definition at line 1659 of file css_extensions.cpp.
void CSS2Properties::setPitchRange | ( | const DOM::DOMString & | value | ) |
see pitchRange
Definition at line 1670 of file css_extensions.cpp.
void CSS2Properties::setPlayDuring | ( | const DOM::DOMString & | value | ) |
see playDuring
Definition at line 1681 of file css_extensions.cpp.
void CSS2Properties::setPosition | ( | const DOM::DOMString & | value | ) |
see position
Definition at line 1692 of file css_extensions.cpp.
void CSS2Properties::setQuotes | ( | const DOM::DOMString & | value | ) |
see quotes
Definition at line 1703 of file css_extensions.cpp.
void CSS2Properties::setRichness | ( | const DOM::DOMString & | value | ) |
see richness
Definition at line 1714 of file css_extensions.cpp.
void CSS2Properties::setRight | ( | const DOM::DOMString & | value | ) |
see right
Definition at line 1725 of file css_extensions.cpp.
void CSS2Properties::setSize | ( | const DOM::DOMString & | value | ) |
see size
Definition at line 1736 of file css_extensions.cpp.
void CSS2Properties::setSpeak | ( | const DOM::DOMString & | value | ) |
see speak
Definition at line 1747 of file css_extensions.cpp.
void CSS2Properties::setSpeakHeader | ( | const DOM::DOMString & | value | ) |
see speakHeader
Definition at line 1758 of file css_extensions.cpp.
void CSS2Properties::setSpeakNumeral | ( | const DOM::DOMString & | value | ) |
see speakNumeral
Definition at line 1769 of file css_extensions.cpp.
void CSS2Properties::setSpeakPunctuation | ( | const DOM::DOMString & | value | ) |
see speakPunctuation
Definition at line 1780 of file css_extensions.cpp.
void CSS2Properties::setSpeechRate | ( | const DOM::DOMString & | value | ) |
see speechRate
Definition at line 1791 of file css_extensions.cpp.
void CSS2Properties::setStress | ( | const DOM::DOMString & | value | ) |
see stress
Definition at line 1802 of file css_extensions.cpp.
void CSS2Properties::setTableLayout | ( | const DOM::DOMString & | value | ) |
see tableLayout
Definition at line 1813 of file css_extensions.cpp.
void CSS2Properties::setTextAlign | ( | const DOM::DOMString & | value | ) |
see textAlign
Definition at line 1824 of file css_extensions.cpp.
void CSS2Properties::setTextDecoration | ( | const DOM::DOMString & | value | ) |
see textDecoration
Definition at line 1835 of file css_extensions.cpp.
void CSS2Properties::setTextIndent | ( | const DOM::DOMString & | value | ) |
see textIndent
Definition at line 1846 of file css_extensions.cpp.
void CSS2Properties::setTextShadow | ( | const DOM::DOMString & | value | ) |
see textShadow
Definition at line 1857 of file css_extensions.cpp.
void CSS2Properties::setTextTransform | ( | const DOM::DOMString & | value | ) |
see textTransform
Definition at line 1868 of file css_extensions.cpp.
void CSS2Properties::setTop | ( | const DOM::DOMString & | value | ) |
see top
Definition at line 1879 of file css_extensions.cpp.
void CSS2Properties::setUnicodeBidi | ( | const DOM::DOMString & | value | ) |
see unicodeBidi
Definition at line 1890 of file css_extensions.cpp.
void CSS2Properties::setVerticalAlign | ( | const DOM::DOMString & | value | ) |
see verticalAlign
Definition at line 1901 of file css_extensions.cpp.
void CSS2Properties::setVisibility | ( | const DOM::DOMString & | value | ) |
see visibility
Definition at line 1912 of file css_extensions.cpp.
void CSS2Properties::setVoiceFamily | ( | const DOM::DOMString & | value | ) |
see voiceFamily
Definition at line 1923 of file css_extensions.cpp.
void CSS2Properties::setVolume | ( | const DOM::DOMString & | value | ) |
see volume
Definition at line 1934 of file css_extensions.cpp.
void CSS2Properties::setWhiteSpace | ( | const DOM::DOMString & | value | ) |
see whiteSpace
Definition at line 1945 of file css_extensions.cpp.
void CSS2Properties::setWidows | ( | const DOM::DOMString & | value | ) |
see widows
Definition at line 1956 of file css_extensions.cpp.
void CSS2Properties::setWidth | ( | const DOM::DOMString & | value | ) |
see width
Definition at line 1967 of file css_extensions.cpp.
void CSS2Properties::setWordSpacing | ( | const DOM::DOMString & | value | ) |
see wordSpacing
Definition at line 1978 of file css_extensions.cpp.
void CSS2Properties::setZIndex | ( | const DOM::DOMString & | value | ) |
see zIndex
Definition at line 1989 of file css_extensions.cpp.
DOMString CSS2Properties::size | ( | ) | const |
See the size property definition in CSS2.
Definition at line 1730 of file css_extensions.cpp.
DOMString CSS2Properties::speak | ( | ) | const |
See the speak property definition in CSS2.
Definition at line 1741 of file css_extensions.cpp.
DOMString CSS2Properties::speakHeader | ( | ) | const |
See the speak-header property definition in CSS2.
Definition at line 1752 of file css_extensions.cpp.
DOMString CSS2Properties::speakNumeral | ( | ) | const |
See the speak-numeral property definition in CSS2.
Definition at line 1763 of file css_extensions.cpp.
DOMString CSS2Properties::speakPunctuation | ( | ) | const |
See the speak-punctuation property definition in CSS2.
Definition at line 1774 of file css_extensions.cpp.
DOMString CSS2Properties::speechRate | ( | ) | const |
See the speech-rate property definition in CSS2.
Definition at line 1785 of file css_extensions.cpp.
DOMString CSS2Properties::stress | ( | ) | const |
See the stress property definition in CSS2.
Definition at line 1796 of file css_extensions.cpp.
DOMString CSS2Properties::tableLayout | ( | ) | const |
See the table-layout property definition in CSS2.
Definition at line 1807 of file css_extensions.cpp.
DOMString CSS2Properties::textAlign | ( | ) | const |
See the text-align property definition in CSS2.
Definition at line 1818 of file css_extensions.cpp.
DOMString CSS2Properties::textDecoration | ( | ) | const |
See the text-decoration property definition in CSS2.
Definition at line 1829 of file css_extensions.cpp.
DOMString CSS2Properties::textIndent | ( | ) | const |
See the text-indent property definition in CSS2.
Definition at line 1840 of file css_extensions.cpp.
DOMString CSS2Properties::textShadow | ( | ) | const |
See the text-shadow property definition in CSS2.
Definition at line 1851 of file css_extensions.cpp.
DOMString CSS2Properties::textTransform | ( | ) | const |
See the text-transform property definition in CSS2.
Definition at line 1862 of file css_extensions.cpp.
DOMString CSS2Properties::top | ( | ) | const |
See the top property definition in CSS2.
Definition at line 1873 of file css_extensions.cpp.
DOMString CSS2Properties::unicodeBidi | ( | ) | const |
See the unicode-bidi property definition in CSS2.
Definition at line 1884 of file css_extensions.cpp.
DOMString CSS2Properties::verticalAlign | ( | ) | const |
See the vertical-align property definition in CSS2.
Definition at line 1895 of file css_extensions.cpp.
DOMString CSS2Properties::visibility | ( | ) | const |
See the visibility property definition in CSS2.
Definition at line 1906 of file css_extensions.cpp.
DOMString CSS2Properties::voiceFamily | ( | ) | const |
See the voice-family property definition in CSS2.
Definition at line 1917 of file css_extensions.cpp.
DOMString CSS2Properties::volume | ( | ) | const |
See the volume property definition in CSS2.
Definition at line 1928 of file css_extensions.cpp.
DOMString CSS2Properties::whiteSpace | ( | ) | const |
See the white-space property definition in CSS2.
Definition at line 1939 of file css_extensions.cpp.
DOMString CSS2Properties::widows | ( | ) | const |
See the widows property definition in CSS2.
Definition at line 1950 of file css_extensions.cpp.
DOMString CSS2Properties::width | ( | ) | const |
See the width property definition in CSS2.
Definition at line 1961 of file css_extensions.cpp.
DOMString CSS2Properties::wordSpacing | ( | ) | const |
See the word-spacing property definition in CSS2.
Definition at line 1972 of file css_extensions.cpp.
DOMString CSS2Properties::zIndex | ( | ) | const |
See the z-index property definition in CSS2.
Definition at line 1983 of file css_extensions.cpp.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:26:20 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.