• Skip to content
  • Skip to link menu
KDE API Reference
  • KDE API Reference
  • kdelibs API Reference
  • KDE Home
  • Contact Us
 

KHTML

  • sources
  • kde-4.12
  • kdelibs
  • khtml
  • dom
css_extensions.cpp
Go to the documentation of this file.
1 
22 #include "css_extensions.h"
23 #include "css_extensionsimpl.h"
24 
25 #include "dom_exception.h"
26 #include "dom_string.h"
27 using namespace DOM;
28 
29 
30 CSS2Azimuth::CSS2Azimuth() : CSSValue()
31 {
32 }
33 
34 CSS2Azimuth::CSS2Azimuth(const CSS2Azimuth &other) : CSSValue(other)
35 {
36 }
37 
38 CSS2Azimuth::CSS2Azimuth(CSS2AzimuthImpl *impl) : CSSValue(impl)
39 {
40 }
41 
42 CSS2Azimuth &CSS2Azimuth::operator = (const CSS2Azimuth &other)
43 {
44  CSSValue::operator = (other);
45  return *this;
46 }
47 
48 CSS2Azimuth::~CSS2Azimuth()
49 {
50 }
51 
52 unsigned short CSS2Azimuth::azimuthType() const
53 {
54  if(!impl) return 0;
55  return ((CSS2AzimuthImpl *)impl)->azimuthType();
56 }
57 
58 DOMString CSS2Azimuth::identifier() const
59 {
60  if(!impl) return 0;
61  return ((CSS2AzimuthImpl *)impl)->identifier();
62 }
63 
64 bool CSS2Azimuth::behind() const
65 {
66  if(!impl) return 0;
67  return ((CSS2AzimuthImpl *)impl)->behind();
68 }
69 
70 void CSS2Azimuth::setAngleValue( const unsigned short unitType, const float floatValue )
71 {
72  if(impl)
73  ((CSS2AzimuthImpl *)impl)->setAngleValue( unitType, floatValue );
74 }
75 
76 float CSS2Azimuth::getAngleValue( const unsigned short unitType )
77 {
78  if(!impl) return 0;
79  return ((CSS2AzimuthImpl *)impl)->getAngleValue( unitType );
80 }
81 
82 void CSS2Azimuth::setIdentifier( const DOMString &identifier, const bool behind )
83 {
84  if(impl)
85  ((CSS2AzimuthImpl *)impl)->setIdentifier( identifier, behind );
86 }
87 
88 
89 
90 CSS2BackgroundPosition::CSS2BackgroundPosition() : CSSValue()
91 {
92 }
93 
94 CSS2BackgroundPosition::CSS2BackgroundPosition(const CSS2BackgroundPosition &other) : CSSValue(other)
95 {
96 }
97 
98 CSS2BackgroundPosition::CSS2BackgroundPosition(CSS2BackgroundPositionImpl *impl) : CSSValue(impl)
99 {
100 }
101 
102 CSS2BackgroundPosition &CSS2BackgroundPosition::operator = (const CSS2BackgroundPosition &other)
103 {
104  CSSValue::operator = (other);
105  return *this;
106 }
107 
108 CSS2BackgroundPosition::~CSS2BackgroundPosition()
109 {
110 }
111 
112 unsigned short CSS2BackgroundPosition::horizontalType() const
113 {
114  if(!impl) return 0;
115  return ((CSS2BackgroundPositionImpl *)impl)->horizontalType();
116 }
117 
118 unsigned short CSS2BackgroundPosition::verticalType() const
119 {
120  if(!impl) return 0;
121  return ((CSS2BackgroundPositionImpl *)impl)->verticalType();
122 }
123 
124 DOMString CSS2BackgroundPosition::horizontalIdentifier() const
125 {
126  if(!impl) return 0;
127  return ((CSS2BackgroundPositionImpl *)impl)->horizontalIdentifier();
128 }
129 
130 DOMString CSS2BackgroundPosition::verticalIdentifier() const
131 {
132  if(!impl) return 0;
133  return ((CSS2BackgroundPositionImpl *)impl)->verticalIdentifier();
134 }
135 
136 float CSS2BackgroundPosition::getHorizontalPosition( const float horizontalType )
137 {
138  if(!impl) return 0;
139  return ((CSS2BackgroundPositionImpl *)impl)->getHorizontalPosition( horizontalType );
140 }
141 
142 float CSS2BackgroundPosition::getVerticalPosition( const float verticalType )
143 {
144  if(!impl) return 0;
145  return ((CSS2BackgroundPositionImpl *)impl)->getVerticalPosition( verticalType );
146 }
147 
148 void CSS2BackgroundPosition::setHorizontalPosition( const unsigned short horizontalType, const float value )
149 {
150  if(impl)
151  ((CSS2BackgroundPositionImpl *)impl)->setHorizontalPosition( horizontalType, value );
152 }
153 
154 void CSS2BackgroundPosition::setVerticalPosition( const unsigned short verticalType, const float value )
155 {
156  if(impl)
157  ((CSS2BackgroundPositionImpl *)impl)->setVerticalPosition( verticalType, value );
158 }
159 
160 void CSS2BackgroundPosition::setPositionIdentifier( const DOMString &horizontalIdentifier, const DOMString &verticalIdentifier )
161 {
162  if(impl)
163  ((CSS2BackgroundPositionImpl *)impl)->setPositionIdentifier( horizontalIdentifier, verticalIdentifier );
164 }
165 
166 
167 
168 CSS2BorderSpacing::CSS2BorderSpacing() : CSSValue()
169 {
170 }
171 
172 CSS2BorderSpacing::CSS2BorderSpacing(const CSS2BorderSpacing &other) : CSSValue(other)
173 {
174 }
175 
176 CSS2BorderSpacing::CSS2BorderSpacing(CSS2BorderSpacingImpl *impl) : CSSValue(impl)
177 {
178 }
179 
180 CSS2BorderSpacing &CSS2BorderSpacing::operator = (const CSS2BorderSpacing &other)
181 {
182  CSSValue::operator = (other);
183  return *this;
184 }
185 
186 CSS2BorderSpacing::~CSS2BorderSpacing()
187 {
188 }
189 
190 unsigned short CSS2BorderSpacing::horizontalType() const
191 {
192  if(!impl) return 0;
193  return ((CSS2BorderSpacingImpl *)impl)->horizontalType();
194 }
195 
196 unsigned short CSS2BorderSpacing::verticalType() const
197 {
198  if(!impl) return 0;
199  return ((CSS2BorderSpacingImpl *)impl)->verticalType();
200 }
201 
202 float CSS2BorderSpacing::getHorizontalSpacing( const float horizontalType )
203 {
204  if(!impl) return 0;
205  return ((CSS2BorderSpacingImpl *)impl)->getHorizontalSpacing( horizontalType );
206 }
207 
208 float CSS2BorderSpacing::getVerticalSpacing( const float verticalType )
209 {
210  if(!impl) return 0;
211  return ((CSS2BorderSpacingImpl *)impl)->getVerticalSpacing( verticalType );
212 }
213 
214 void CSS2BorderSpacing::setHorizontalSpacing( const unsigned short horizontalType, const float value )
215 {
216  if(impl)
217  ((CSS2BorderSpacingImpl *)impl)->setHorizontalSpacing( horizontalType, value );
218 }
219 
220 void CSS2BorderSpacing::setVerticalSpacing( const unsigned short verticalType, const float value )
221 {
222  if(impl)
223  ((CSS2BorderSpacingImpl *)impl)->setVerticalSpacing( verticalType, value );
224 }
225 
226 void CSS2BorderSpacing::setInherit()
227 {
228  if(impl)
229  ((CSS2BorderSpacingImpl *)impl)->setInherit();
230 }
231 
232 
233 
234 CSS2CounterIncrement::CSS2CounterIncrement()
235 {
236 }
237 
238 CSS2CounterIncrement::CSS2CounterIncrement(const CSS2CounterIncrement &other)
239 {
240 }
241 
242 CSS2CounterIncrement::CSS2CounterIncrement(CSS2CounterIncrementImpl *impl)
243 {
244 }
245 
246 CSS2CounterIncrement &CSS2CounterIncrement::operator = (const CSS2CounterIncrement &other)
247 {
248  ::operator = (other);
249  return *this;
250 }
251 
252 CSS2CounterIncrement::~CSS2CounterIncrement()
253 {
254 }
255 
256 DOMString CSS2CounterIncrement::identifier() const
257 {
258  if(!impl) return 0;
259  return ((ElementImpl *)impl)->getAttribute("identifier");
260 }
261 
262 void CSS2CounterIncrement::setIdentifier( const DOMString &value )
263 {
264  if(impl) ((ElementImpl *)impl)->setAttribute("identifier", value);
265 }
266 
267 short CSS2CounterIncrement::increment() const
268 {
269  if(!impl) return 0;
270  return ((CSS2CounterIncrementImpl *)impl)->increment();
271 }
272 
273 void CSS2CounterIncrement::setIncrement( const short _increment )
274 {
275 
276  if(impl)
277  ((CSS2CounterIncrementImpl *)impl)->setIncrement( _increment );
278 }
279 
280 
281 
282 
283 CSS2CounterReset::CSS2CounterReset()
284 {
285 }
286 
287 CSS2CounterReset::CSS2CounterReset(const CSS2CounterReset &other)
288 {
289 }
290 
291 CSS2CounterReset::CSS2CounterReset(CSS2CounterResetImpl *impl)
292 {
293 }
294 
295 CSS2CounterReset &CSS2CounterReset::operator = (const CSS2CounterReset &other)
296 {
297  ::operator = (other);
298  return *this;
299 }
300 
301 CSS2CounterReset::~CSS2CounterReset()
302 {
303 }
304 
305 DOMString CSS2CounterReset::identifier() const
306 {
307  if(!impl) return 0;
308  return ((ElementImpl *)impl)->getAttribute("identifier");
309 }
310 
311 void CSS2CounterReset::setIdentifier( const DOMString &value )
312 {
313  if(impl) ((ElementImpl *)impl)->setAttribute("identifier", value);
314 }
315 
316 short CSS2CounterReset::reset() const
317 {
318  if(!impl) return 0;
319  return ((CSS2CounterResetImpl *)impl)->reset();
320 }
321 
322 void CSS2CounterReset::setReset( const short _reset )
323 {
324 
325  if(impl)
326  ((CSS2CounterResetImpl *)impl)->setReset( _reset );
327 }
328 
329 
330 
331 
332 CSS2Cursor::CSS2Cursor() : CSSValue()
333 {
334 }
335 
336 CSS2Cursor::CSS2Cursor(const CSS2Cursor &other) : CSSValue(other)
337 {
338 }
339 
340 CSS2Cursor::CSS2Cursor(CSS2CursorImpl *impl) : CSSValue(impl)
341 {
342 }
343 
344 CSS2Cursor &CSS2Cursor::operator = (const CSS2Cursor &other)
345 {
346  CSSValue::operator = (other);
347  return *this;
348 }
349 
350 CSS2Cursor::~CSS2Cursor()
351 {
352 }
353 
354 unsigned short CSS2Cursor::cursorType() const
355 {
356  if(!impl) return 0;
357  return ((CSS2CursorImpl *)impl)->cursorType();
358 }
359 
360 void CSS2Cursor::setCursorType( const unsigned short _cursorType )
361 {
362 
363  if(impl)
364  ((CSS2CursorImpl *)impl)->setCursorType( _cursorType );
365 }
366 
367 CSSValueList CSS2Cursor::uris() const
368 {
369  if(!impl) return 0;
370  return ((CSS2CursorImpl *)impl)->uris();
371 }
372 
373 DOMString CSS2Cursor::predefinedCursor() const
374 {
375  if(!impl) return 0;
376  return ((ElementImpl *)impl)->getAttribute("predefinedCursor");
377 }
378 
379 void CSS2Cursor::setPredefinedCursor( const DOMString &value )
380 {
381  if(impl) ((ElementImpl *)impl)->setAttribute("predefinedCursor", value);
382 }
383 
384 
385 
386 CSS2FontFaceSrc::CSS2FontFaceSrc()
387 {
388 }
389 
390 CSS2FontFaceSrc::CSS2FontFaceSrc(const CSS2FontFaceSrc &other)
391 {
392 }
393 
394 CSS2FontFaceSrc::CSS2FontFaceSrc(CSS2FontFaceSrcImpl *impl)
395 {
396 }
397 
398 CSS2FontFaceSrc &CSS2FontFaceSrc::operator = (const CSS2FontFaceSrc &other)
399 {
400  ::operator = (other);
401  return *this;
402 }
403 
404 CSS2FontFaceSrc::~CSS2FontFaceSrc()
405 {
406 }
407 
408 DOMString CSS2FontFaceSrc::uri() const
409 {
410  if(!impl) return 0;
411  return ((ElementImpl *)impl)->getAttribute("uri");
412 }
413 
414 void CSS2FontFaceSrc::setUri( const DOMString &value )
415 {
416  if(impl) ((ElementImpl *)impl)->setAttribute("uri", value);
417 }
418 
419 CSSValueList CSS2FontFaceSrc::format() const
420 {
421  if(!impl) return 0;
422  return ((CSS2FontFaceSrcImpl *)impl)->format();
423 }
424 
425 DOMString CSS2FontFaceSrc::fontFaceName() const
426 {
427  if(!impl) return 0;
428  return ((ElementImpl *)impl)->getAttribute("fontFaceName");
429 }
430 
431 void CSS2FontFaceSrc::setFontFaceName( const DOMString &value )
432 {
433  if(impl) ((ElementImpl *)impl)->setAttribute("fontFaceName", value);
434 }
435 
436 
437 
438 CSS2FontFaceWidths::CSS2FontFaceWidths()
439 {
440 }
441 
442 CSS2FontFaceWidths::CSS2FontFaceWidths(const CSS2FontFaceWidths &other)
443 {
444 }
445 
446 CSS2FontFaceWidths::CSS2FontFaceWidths(CSS2FontFaceWidthsImpl *impl)
447 {
448 }
449 
450 CSS2FontFaceWidths &CSS2FontFaceWidths::operator = (const CSS2FontFaceWidths &other)
451 {
452  ::operator = (other);
453  return *this;
454 }
455 
456 CSS2FontFaceWidths::~CSS2FontFaceWidths()
457 {
458 }
459 
460 DOMString CSS2FontFaceWidths::urange() const
461 {
462  if(!impl) return 0;
463  return ((ElementImpl *)impl)->getAttribute("urange");
464 }
465 
466 void CSS2FontFaceWidths::setUrange( const DOMString &value )
467 {
468  if(impl) ((ElementImpl *)impl)->setAttribute("urange", value);
469 }
470 
471 CSSValueList CSS2FontFaceWidths::numbers() const
472 {
473  if(!impl) return 0;
474  return ((CSS2FontFaceWidthsImpl *)impl)->numbers();
475 }
476 
477 
478 
479 
480 CSS2PageSize::CSS2PageSize() : CSSValue()
481 {
482 }
483 
484 CSS2PageSize::CSS2PageSize(const CSS2PageSize &other) : CSSValue(other)
485 {
486 }
487 
488 CSS2PageSize::CSS2PageSize(CSS2PageSizeImpl *impl) : CSSValue(impl)
489 {
490 }
491 
492 CSS2PageSize &CSS2PageSize::operator = (const CSS2PageSize &other)
493 {
494  CSSValue::operator = (other);
495  return *this;
496 }
497 
498 CSS2PageSize::~CSS2PageSize()
499 {
500 }
501 
502 unsigned short CSS2PageSize::widthType() const
503 {
504  if(!impl) return 0;
505  return ((CSS2PageSizeImpl *)impl)->widthType();
506 }
507 
508 unsigned short CSS2PageSize::heightType() const
509 {
510  if(!impl) return 0;
511  return ((CSS2PageSizeImpl *)impl)->heightType();
512 }
513 
514 DOMString CSS2PageSize::identifier() const
515 {
516  if(!impl) return 0;
517  return ((CSS2PageSizeImpl *)impl)->identifier();
518 }
519 
520 float CSS2PageSize::getWidth( const float widthType )
521 {
522  if(!impl) return 0;
523  return ((CSS2PageSizeImpl *)impl)->getWidth( widthType );
524 }
525 
526 float CSS2PageSize::getHeightSize( const float heightType )
527 {
528  if(!impl) return 0;
529  return ((CSS2PageSizeImpl *)impl)->getHeightSize( heightType );
530 }
531 
532 void CSS2PageSize::setWidthSize( const unsigned short widthType, const float value )
533 {
534  if(impl)
535  ((CSS2PageSizeImpl *)impl)->setWidthSize( widthType, value );
536 }
537 
538 void CSS2PageSize::setHeightSize( const unsigned short heightType, const float value )
539 {
540  if(impl)
541  ((CSS2PageSizeImpl *)impl)->setHeightSize( heightType, value );
542 }
543 
544 void CSS2PageSize::setIdentifier( const DOMString &identifier )
545 {
546  if(impl)
547  ((CSS2PageSizeImpl *)impl)->setIdentifier( identifier );
548 }
549 
550 
551 
552 CSS2PlayDuring::CSS2PlayDuring() : CSSValue()
553 {
554 }
555 
556 CSS2PlayDuring::CSS2PlayDuring(const CSS2PlayDuring &other) : CSSValue(other)
557 {
558 }
559 
560 CSS2PlayDuring::CSS2PlayDuring(CSS2PlayDuringImpl *impl) : CSSValue(impl)
561 {
562 }
563 
564 CSS2PlayDuring &CSS2PlayDuring::operator = (const CSS2PlayDuring &other)
565 {
566  CSSValue::operator = (other);
567  return *this;
568 }
569 
570 CSS2PlayDuring::~CSS2PlayDuring()
571 {
572 }
573 
574 unsigned short CSS2PlayDuring::playDuringType() const
575 {
576  if(!impl) return 0;
577  return ((CSS2PlayDuringImpl *)impl)->playDuringType();
578 }
579 
580 DOMString CSS2PlayDuring::playDuringIdentifier() const
581 {
582  if(!impl) return 0;
583  return ((ElementImpl *)impl)->getAttribute("playDuringIdentifier");
584 }
585 
586 void CSS2PlayDuring::setPlayDuringIdentifier( const DOMString &value )
587 {
588  if(impl) ((ElementImpl *)impl)->setAttribute("playDuringIdentifier", value);
589 }
590 
591 DOMString CSS2PlayDuring::uri() const
592 {
593  if(!impl) return 0;
594  return ((ElementImpl *)impl)->getAttribute("uri");
595 }
596 
597 void CSS2PlayDuring::setUri( const DOMString &value )
598 {
599  if(impl) ((ElementImpl *)impl)->setAttribute("uri", value);
600 }
601 
602 bool CSS2PlayDuring::mix() const
603 {
604  if(!impl) return 0;
605  return ((CSS2PlayDuringImpl *)impl)->mix();
606 }
607 
608 void CSS2PlayDuring::setMix( const bool _mix )
609 {
610 
611  if(impl)
612  ((CSS2PlayDuringImpl *)impl)->setMix( _mix );
613 }
614 
615 bool CSS2PlayDuring::repeat() const
616 {
617  if(!impl) return 0;
618  return ((CSS2PlayDuringImpl *)impl)->repeat();
619 }
620 
621 void CSS2PlayDuring::setRepeat( const bool _repeat )
622 {
623 
624  if(impl)
625  ((CSS2PlayDuringImpl *)impl)->setRepeat( _repeat );
626 }
627 
628 
629 
630 CSS2Properties::CSS2Properties()
631 {
632 }
633 
634 CSS2Properties::CSS2Properties(const CSS2Properties &other)
635 {
636 }
637 
638 CSS2Properties::CSS2Properties(CSS2PropertiesImpl *impl)
639 {
640 }
641 
642 CSS2Properties &CSS2Properties::operator = (const CSS2Properties &other)
643 {
644  ::operator = (other);
645  return *this;
646 }
647 
648 CSS2Properties::~CSS2Properties()
649 {
650 }
651 
652 DOMString CSS2Properties::azimuth() const
653 {
654  if(!impl) return 0;
655  return ((ElementImpl *)impl)->getAttribute("azimuth");
656 }
657 
658 void CSS2Properties::setAzimuth( const DOMString &value )
659 {
660  if(impl) ((ElementImpl *)impl)->setAttribute("azimuth", value);
661 }
662 
663 DOMString CSS2Properties::background() const
664 {
665  if(!impl) return 0;
666  return ((ElementImpl *)impl)->getAttribute("background");
667 }
668 
669 void CSS2Properties::setBackground( const DOMString &value )
670 {
671  if(impl) ((ElementImpl *)impl)->setAttribute("background", value);
672 }
673 
674 DOMString CSS2Properties::backgroundAttachment() const
675 {
676  if(!impl) return 0;
677  return ((ElementImpl *)impl)->getAttribute("backgroundAttachment");
678 }
679 
680 void CSS2Properties::setBackgroundAttachment( const DOMString &value )
681 {
682  if(impl) ((ElementImpl *)impl)->setAttribute("backgroundAttachment", value);
683 }
684 
685 DOMString CSS2Properties::backgroundColor() const
686 {
687  if(!impl) return 0;
688  return ((ElementImpl *)impl)->getAttribute("backgroundColor");
689 }
690 
691 void CSS2Properties::setBackgroundColor( const DOMString &value )
692 {
693  if(impl) ((ElementImpl *)impl)->setAttribute("backgroundColor", value);
694 }
695 
696 DOMString CSS2Properties::backgroundImage() const
697 {
698  if(!impl) return 0;
699  return ((ElementImpl *)impl)->getAttribute("backgroundImage");
700 }
701 
702 void CSS2Properties::setBackgroundImage( const DOMString &value )
703 {
704  if(impl) ((ElementImpl *)impl)->setAttribute("backgroundImage", value);
705 }
706 
707 DOMString CSS2Properties::backgroundPosition() const
708 {
709  if(!impl) return 0;
710  return ((ElementImpl *)impl)->getAttribute("backgroundPosition");
711 }
712 
713 void CSS2Properties::setBackgroundPosition( const DOMString &value )
714 {
715  if(impl) ((ElementImpl *)impl)->setAttribute("backgroundPosition", value);
716 }
717 
718 DOMString CSS2Properties::backgroundRepeat() const
719 {
720  if(!impl) return 0;
721  return ((ElementImpl *)impl)->getAttribute("backgroundRepeat");
722 }
723 
724 void CSS2Properties::setBackgroundRepeat( const DOMString &value )
725 {
726  if(impl) ((ElementImpl *)impl)->setAttribute("backgroundRepeat", value);
727 }
728 
729 DOMString CSS2Properties::border() const
730 {
731  if(!impl) return 0;
732  return ((ElementImpl *)impl)->getAttribute("border");
733 }
734 
735 void CSS2Properties::setBorder( const DOMString &value )
736 {
737  if(impl) ((ElementImpl *)impl)->setAttribute("border", value);
738 }
739 
740 DOMString CSS2Properties::borderCollapse() const
741 {
742  if(!impl) return 0;
743  return ((ElementImpl *)impl)->getAttribute("borderCollapse");
744 }
745 
746 void CSS2Properties::setBorderCollapse( const DOMString &value )
747 {
748  if(impl) ((ElementImpl *)impl)->setAttribute("borderCollapse", value);
749 }
750 
751 DOMString CSS2Properties::borderColor() const
752 {
753  if(!impl) return 0;
754  return ((ElementImpl *)impl)->getAttribute("borderColor");
755 }
756 
757 void CSS2Properties::setBorderColor( const DOMString &value )
758 {
759  if(impl) ((ElementImpl *)impl)->setAttribute("borderColor", value);
760 }
761 
762 DOMString CSS2Properties::borderSpacing() const
763 {
764  if(!impl) return 0;
765  return ((ElementImpl *)impl)->getAttribute("borderSpacing");
766 }
767 
768 void CSS2Properties::setBorderSpacing( const DOMString &value )
769 {
770  if(impl) ((ElementImpl *)impl)->setAttribute("borderSpacing", value);
771 }
772 
773 DOMString CSS2Properties::borderStyle() const
774 {
775  if(!impl) return 0;
776  return ((ElementImpl *)impl)->getAttribute("borderStyle");
777 }
778 
779 void CSS2Properties::setBorderStyle( const DOMString &value )
780 {
781  if(impl) ((ElementImpl *)impl)->setAttribute("borderStyle", value);
782 }
783 
784 DOMString CSS2Properties::borderTop() const
785 {
786  if(!impl) return 0;
787  return ((ElementImpl *)impl)->getAttribute("borderTop");
788 }
789 
790 void CSS2Properties::setBorderTop( const DOMString &value )
791 {
792  if(impl) ((ElementImpl *)impl)->setAttribute("borderTop", value);
793 }
794 
795 DOMString CSS2Properties::borderRight() const
796 {
797  if(!impl) return 0;
798  return ((ElementImpl *)impl)->getAttribute("borderRight");
799 }
800 
801 void CSS2Properties::setBorderRight( const DOMString &value )
802 {
803  if(impl) ((ElementImpl *)impl)->setAttribute("borderRight", value);
804 }
805 
806 DOMString CSS2Properties::borderBottom() const
807 {
808  if(!impl) return 0;
809  return ((ElementImpl *)impl)->getAttribute("borderBottom");
810 }
811 
812 void CSS2Properties::setBorderBottom( const DOMString &value )
813 {
814  if(impl) ((ElementImpl *)impl)->setAttribute("borderBottom", value);
815 }
816 
817 DOMString CSS2Properties::borderLeft() const
818 {
819  if(!impl) return 0;
820  return ((ElementImpl *)impl)->getAttribute("borderLeft");
821 }
822 
823 void CSS2Properties::setBorderLeft( const DOMString &value )
824 {
825  if(impl) ((ElementImpl *)impl)->setAttribute("borderLeft", value);
826 }
827 
828 DOMString CSS2Properties::borderTopColor() const
829 {
830  if(!impl) return 0;
831  return ((ElementImpl *)impl)->getAttribute("borderTopColor");
832 }
833 
834 void CSS2Properties::setBorderTopColor( const DOMString &value )
835 {
836  if(impl) ((ElementImpl *)impl)->setAttribute("borderTopColor", value);
837 }
838 
839 DOMString CSS2Properties::borderRightColor() const
840 {
841  if(!impl) return 0;
842  return ((ElementImpl *)impl)->getAttribute("borderRightColor");
843 }
844 
845 void CSS2Properties::setBorderRightColor( const DOMString &value )
846 {
847  if(impl) ((ElementImpl *)impl)->setAttribute("borderRightColor", value);
848 }
849 
850 DOMString CSS2Properties::borderBottomColor() const
851 {
852  if(!impl) return 0;
853  return ((ElementImpl *)impl)->getAttribute("borderBottomColor");
854 }
855 
856 void CSS2Properties::setBorderBottomColor( const DOMString &value )
857 {
858  if(impl) ((ElementImpl *)impl)->setAttribute("borderBottomColor", value);
859 }
860 
861 DOMString CSS2Properties::borderLeftColor() const
862 {
863  if(!impl) return 0;
864  return ((ElementImpl *)impl)->getAttribute("borderLeftColor");
865 }
866 
867 void CSS2Properties::setBorderLeftColor( const DOMString &value )
868 {
869  if(impl) ((ElementImpl *)impl)->setAttribute("borderLeftColor", value);
870 }
871 
872 DOMString CSS2Properties::borderTopStyle() const
873 {
874  if(!impl) return 0;
875  return ((ElementImpl *)impl)->getAttribute("borderTopStyle");
876 }
877 
878 void CSS2Properties::setBorderTopStyle( const DOMString &value )
879 {
880  if(impl) ((ElementImpl *)impl)->setAttribute("borderTopStyle", value);
881 }
882 
883 DOMString CSS2Properties::borderRightStyle() const
884 {
885  if(!impl) return 0;
886  return ((ElementImpl *)impl)->getAttribute("borderRightStyle");
887 }
888 
889 void CSS2Properties::setBorderRightStyle( const DOMString &value )
890 {
891  if(impl) ((ElementImpl *)impl)->setAttribute("borderRightStyle", value);
892 }
893 
894 DOMString CSS2Properties::borderBottomStyle() const
895 {
896  if(!impl) return 0;
897  return ((ElementImpl *)impl)->getAttribute("borderBottomStyle");
898 }
899 
900 void CSS2Properties::setBorderBottomStyle( const DOMString &value )
901 {
902  if(impl) ((ElementImpl *)impl)->setAttribute("borderBottomStyle", value);
903 }
904 
905 DOMString CSS2Properties::borderLeftStyle() const
906 {
907  if(!impl) return 0;
908  return ((ElementImpl *)impl)->getAttribute("borderLeftStyle");
909 }
910 
911 void CSS2Properties::setBorderLeftStyle( const DOMString &value )
912 {
913  if(impl) ((ElementImpl *)impl)->setAttribute("borderLeftStyle", value);
914 }
915 
916 DOMString CSS2Properties::borderTopWidth() const
917 {
918  if(!impl) return 0;
919  return ((ElementImpl *)impl)->getAttribute("borderTopWidth");
920 }
921 
922 void CSS2Properties::setBorderTopWidth( const DOMString &value )
923 {
924  if(impl) ((ElementImpl *)impl)->setAttribute("borderTopWidth", value);
925 }
926 
927 DOMString CSS2Properties::borderRightWidth() const
928 {
929  if(!impl) return 0;
930  return ((ElementImpl *)impl)->getAttribute("borderRightWidth");
931 }
932 
933 void CSS2Properties::setBorderRightWidth( const DOMString &value )
934 {
935  if(impl) ((ElementImpl *)impl)->setAttribute("borderRightWidth", value);
936 }
937 
938 DOMString CSS2Properties::borderBottomWidth() const
939 {
940  if(!impl) return 0;
941  return ((ElementImpl *)impl)->getAttribute("borderBottomWidth");
942 }
943 
944 void CSS2Properties::setBorderBottomWidth( const DOMString &value )
945 {
946  if(impl) ((ElementImpl *)impl)->setAttribute("borderBottomWidth", value);
947 }
948 
949 DOMString CSS2Properties::borderLeftWidth() const
950 {
951  if(!impl) return 0;
952  return ((ElementImpl *)impl)->getAttribute("borderLeftWidth");
953 }
954 
955 void CSS2Properties::setBorderLeftWidth( const DOMString &value )
956 {
957  if(impl) ((ElementImpl *)impl)->setAttribute("borderLeftWidth", value);
958 }
959 
960 DOMString CSS2Properties::borderWidth() const
961 {
962  if(!impl) return 0;
963  return ((ElementImpl *)impl)->getAttribute("borderWidth");
964 }
965 
966 void CSS2Properties::setBorderWidth( const DOMString &value )
967 {
968  if(impl) ((ElementImpl *)impl)->setAttribute("borderWidth", value);
969 }
970 
971 DOMString CSS2Properties::bottom() const
972 {
973  if(!impl) return 0;
974  return ((ElementImpl *)impl)->getAttribute("bottom");
975 }
976 
977 void CSS2Properties::setBottom( const DOMString &value )
978 {
979  if(impl) ((ElementImpl *)impl)->setAttribute("bottom", value);
980 }
981 
982 DOMString CSS2Properties::captionSide() const
983 {
984  if(!impl) return 0;
985  return ((ElementImpl *)impl)->getAttribute("captionSide");
986 }
987 
988 void CSS2Properties::setCaptionSide( const DOMString &value )
989 {
990  if(impl) ((ElementImpl *)impl)->setAttribute("captionSide", value);
991 }
992 
993 DOMString CSS2Properties::clear() const
994 {
995  if(!impl) return 0;
996  return ((ElementImpl *)impl)->getAttribute("clear");
997 }
998 
999 void CSS2Properties::setClear( const DOMString &value )
1000 {
1001  if(impl) ((ElementImpl *)impl)->setAttribute("clear", value);
1002 }
1003 
1004 DOMString CSS2Properties::clip() const
1005 {
1006  if(!impl) return 0;
1007  return ((ElementImpl *)impl)->getAttribute("clip");
1008 }
1009 
1010 void CSS2Properties::setClip( const DOMString &value )
1011 {
1012  if(impl) ((ElementImpl *)impl)->setAttribute("clip", value);
1013 }
1014 
1015 DOMString CSS2Properties::color() const
1016 {
1017  if(!impl) return 0;
1018  return ((ElementImpl *)impl)->getAttribute("color");
1019 }
1020 
1021 void CSS2Properties::setColor( const DOMString &value )
1022 {
1023  if(impl) ((ElementImpl *)impl)->setAttribute("color", value);
1024 }
1025 
1026 DOMString CSS2Properties::content() const
1027 {
1028  if(!impl) return 0;
1029  return ((ElementImpl *)impl)->getAttribute("content");
1030 }
1031 
1032 void CSS2Properties::setContent( const DOMString &value )
1033 {
1034  if(impl) ((ElementImpl *)impl)->setAttribute("content", value);
1035 }
1036 
1037 DOMString CSS2Properties::counterIncrement() const
1038 {
1039  if(!impl) return 0;
1040  return ((ElementImpl *)impl)->getAttribute("counterIncrement");
1041 }
1042 
1043 void CSS2Properties::setCounterIncrement( const DOMString &value )
1044 {
1045  if(impl) ((ElementImpl *)impl)->setAttribute("counterIncrement", value);
1046 }
1047 
1048 DOMString CSS2Properties::counterReset() const
1049 {
1050  if(!impl) return 0;
1051  return ((ElementImpl *)impl)->getAttribute("counterReset");
1052 }
1053 
1054 void CSS2Properties::setCounterReset( const DOMString &value )
1055 {
1056  if(impl) ((ElementImpl *)impl)->setAttribute("counterReset", value);
1057 }
1058 
1059 DOMString CSS2Properties::cue() const
1060 {
1061  if(!impl) return 0;
1062  return ((ElementImpl *)impl)->getAttribute("cue");
1063 }
1064 
1065 void CSS2Properties::setCue( const DOMString &value )
1066 {
1067  if(impl) ((ElementImpl *)impl)->setAttribute("cue", value);
1068 }
1069 
1070 DOMString CSS2Properties::cueAfter() const
1071 {
1072  if(!impl) return 0;
1073  return ((ElementImpl *)impl)->getAttribute("cueAfter");
1074 }
1075 
1076 void CSS2Properties::setCueAfter( const DOMString &value )
1077 {
1078  if(impl) ((ElementImpl *)impl)->setAttribute("cueAfter", value);
1079 }
1080 
1081 DOMString CSS2Properties::cueBefore() const
1082 {
1083  if(!impl) return 0;
1084  return ((ElementImpl *)impl)->getAttribute("cueBefore");
1085 }
1086 
1087 void CSS2Properties::setCueBefore( const DOMString &value )
1088 {
1089  if(impl) ((ElementImpl *)impl)->setAttribute("cueBefore", value);
1090 }
1091 
1092 DOMString CSS2Properties::cursor() const
1093 {
1094  if(!impl) return 0;
1095  return ((ElementImpl *)impl)->getAttribute("cursor");
1096 }
1097 
1098 void CSS2Properties::setCursor( const DOMString &value )
1099 {
1100  if(impl) ((ElementImpl *)impl)->setAttribute("cursor", value);
1101 }
1102 
1103 DOMString CSS2Properties::direction() const
1104 {
1105  if(!impl) return 0;
1106  return ((ElementImpl *)impl)->getAttribute("direction");
1107 }
1108 
1109 void CSS2Properties::setDirection( const DOMString &value )
1110 {
1111  if(impl) ((ElementImpl *)impl)->setAttribute("direction", value);
1112 }
1113 
1114 DOMString CSS2Properties::display() const
1115 {
1116  if(!impl) return 0;
1117  return ((ElementImpl *)impl)->getAttribute("display");
1118 }
1119 
1120 void CSS2Properties::setDisplay( const DOMString &value )
1121 {
1122  if(impl) ((ElementImpl *)impl)->setAttribute("display", value);
1123 }
1124 
1125 DOMString CSS2Properties::elevation() const
1126 {
1127  if(!impl) return 0;
1128  return ((ElementImpl *)impl)->getAttribute("elevation");
1129 }
1130 
1131 void CSS2Properties::setElevation( const DOMString &value )
1132 {
1133  if(impl) ((ElementImpl *)impl)->setAttribute("elevation", value);
1134 }
1135 
1136 DOMString CSS2Properties::emptyCells() const
1137 {
1138  if(!impl) return 0;
1139  return ((ElementImpl *)impl)->getAttribute("emptyCells");
1140 }
1141 
1142 void CSS2Properties::setEmptyCells( const DOMString &value )
1143 {
1144  if(impl) ((ElementImpl *)impl)->setAttribute("emptyCells", value);
1145 }
1146 
1147 DOMString CSS2Properties::cssFloat() const
1148 {
1149  if(!impl) return 0;
1150  return ((ElementImpl *)impl)->getAttribute("cssFloat");
1151 }
1152 
1153 void CSS2Properties::setCssFloat( const DOMString &value )
1154 {
1155  if(impl) ((ElementImpl *)impl)->setAttribute("cssFloat", value);
1156 }
1157 
1158 DOMString CSS2Properties::font() const
1159 {
1160  if(!impl) return 0;
1161  return ((ElementImpl *)impl)->getAttribute("font");
1162 }
1163 
1164 void CSS2Properties::setFont( const DOMString &value )
1165 {
1166  if(impl) ((ElementImpl *)impl)->setAttribute("font", value);
1167 }
1168 
1169 DOMString CSS2Properties::fontFamily() const
1170 {
1171  if(!impl) return 0;
1172  return ((ElementImpl *)impl)->getAttribute("fontFamily");
1173 }
1174 
1175 void CSS2Properties::setFontFamily( const DOMString &value )
1176 {
1177  if(impl) ((ElementImpl *)impl)->setAttribute("fontFamily", value);
1178 }
1179 
1180 DOMString CSS2Properties::fontSize() const
1181 {
1182  if(!impl) return 0;
1183  return ((ElementImpl *)impl)->getAttribute("fontSize");
1184 }
1185 
1186 void CSS2Properties::setFontSize( const DOMString &value )
1187 {
1188  if(impl) ((ElementImpl *)impl)->setAttribute("fontSize", value);
1189 }
1190 
1191 DOMString CSS2Properties::fontSizeAdjust() const
1192 {
1193  if(!impl) return 0;
1194  return ((ElementImpl *)impl)->getAttribute("fontSizeAdjust");
1195 }
1196 
1197 void CSS2Properties::setFontSizeAdjust( const DOMString &value )
1198 {
1199  if(impl) ((ElementImpl *)impl)->setAttribute("fontSizeAdjust", value);
1200 }
1201 
1202 DOMString CSS2Properties::fontStretch() const
1203 {
1204  if(!impl) return 0;
1205  return ((ElementImpl *)impl)->getAttribute("fontStretch");
1206 }
1207 
1208 void CSS2Properties::setFontStretch( const DOMString &value )
1209 {
1210  if(impl) ((ElementImpl *)impl)->setAttribute("fontStretch", value);
1211 }
1212 
1213 DOMString CSS2Properties::fontStyle() const
1214 {
1215  if(!impl) return 0;
1216  return ((ElementImpl *)impl)->getAttribute("fontStyle");
1217 }
1218 
1219 void CSS2Properties::setFontStyle( const DOMString &value )
1220 {
1221  if(impl) ((ElementImpl *)impl)->setAttribute("fontStyle", value);
1222 }
1223 
1224 DOMString CSS2Properties::fontVariant() const
1225 {
1226  if(!impl) return 0;
1227  return ((ElementImpl *)impl)->getAttribute("fontVariant");
1228 }
1229 
1230 void CSS2Properties::setFontVariant( const DOMString &value )
1231 {
1232  if(impl) ((ElementImpl *)impl)->setAttribute("fontVariant", value);
1233 }
1234 
1235 DOMString CSS2Properties::fontWeight() const
1236 {
1237  if(!impl) return 0;
1238  return ((ElementImpl *)impl)->getAttribute("fontWeight");
1239 }
1240 
1241 void CSS2Properties::setFontWeight( const DOMString &value )
1242 {
1243  if(impl) ((ElementImpl *)impl)->setAttribute("fontWeight", value);
1244 }
1245 
1246 DOMString CSS2Properties::height() const
1247 {
1248  if(!impl) return 0;
1249  return ((ElementImpl *)impl)->getAttribute("height");
1250 }
1251 
1252 void CSS2Properties::setHeight( const DOMString &value )
1253 {
1254  if(impl) ((ElementImpl *)impl)->setAttribute("height", value);
1255 }
1256 
1257 DOMString CSS2Properties::left() const
1258 {
1259  if(!impl) return 0;
1260  return ((ElementImpl *)impl)->getAttribute("left");
1261 }
1262 
1263 void CSS2Properties::setLeft( const DOMString &value )
1264 {
1265  if(impl) ((ElementImpl *)impl)->setAttribute("left", value);
1266 }
1267 
1268 DOMString CSS2Properties::letterSpacing() const
1269 {
1270  if(!impl) return 0;
1271  return ((ElementImpl *)impl)->getAttribute("letterSpacing");
1272 }
1273 
1274 void CSS2Properties::setLetterSpacing( const DOMString &value )
1275 {
1276  if(impl) ((ElementImpl *)impl)->setAttribute("letterSpacing", value);
1277 }
1278 
1279 DOMString CSS2Properties::lineHeight() const
1280 {
1281  if(!impl) return 0;
1282  return ((ElementImpl *)impl)->getAttribute("lineHeight");
1283 }
1284 
1285 void CSS2Properties::setLineHeight( const DOMString &value )
1286 {
1287  if(impl) ((ElementImpl *)impl)->setAttribute("lineHeight", value);
1288 }
1289 
1290 DOMString CSS2Properties::listStyle() const
1291 {
1292  if(!impl) return 0;
1293  return ((ElementImpl *)impl)->getAttribute("listStyle");
1294 }
1295 
1296 void CSS2Properties::setListStyle( const DOMString &value )
1297 {
1298  if(impl) ((ElementImpl *)impl)->setAttribute("listStyle", value);
1299 }
1300 
1301 DOMString CSS2Properties::listStyleImage() const
1302 {
1303  if(!impl) return 0;
1304  return ((ElementImpl *)impl)->getAttribute("listStyleImage");
1305 }
1306 
1307 void CSS2Properties::setListStyleImage( const DOMString &value )
1308 {
1309  if(impl) ((ElementImpl *)impl)->setAttribute("listStyleImage", value);
1310 }
1311 
1312 DOMString CSS2Properties::listStylePosition() const
1313 {
1314  if(!impl) return 0;
1315  return ((ElementImpl *)impl)->getAttribute("listStylePosition");
1316 }
1317 
1318 void CSS2Properties::setListStylePosition( const DOMString &value )
1319 {
1320  if(impl) ((ElementImpl *)impl)->setAttribute("listStylePosition", value);
1321 }
1322 
1323 DOMString CSS2Properties::listStyleType() const
1324 {
1325  if(!impl) return 0;
1326  return ((ElementImpl *)impl)->getAttribute("listStyleType");
1327 }
1328 
1329 void CSS2Properties::setListStyleType( const DOMString &value )
1330 {
1331  if(impl) ((ElementImpl *)impl)->setAttribute("listStyleType", value);
1332 }
1333 
1334 DOMString CSS2Properties::margin() const
1335 {
1336  if(!impl) return 0;
1337  return ((ElementImpl *)impl)->getAttribute("margin");
1338 }
1339 
1340 void CSS2Properties::setMargin( const DOMString &value )
1341 {
1342  if(impl) ((ElementImpl *)impl)->setAttribute("margin", value);
1343 }
1344 
1345 DOMString CSS2Properties::marginTop() const
1346 {
1347  if(!impl) return 0;
1348  return ((ElementImpl *)impl)->getAttribute("marginTop");
1349 }
1350 
1351 void CSS2Properties::setMarginTop( const DOMString &value )
1352 {
1353  if(impl) ((ElementImpl *)impl)->setAttribute("marginTop", value);
1354 }
1355 
1356 DOMString CSS2Properties::marginRight() const
1357 {
1358  if(!impl) return 0;
1359  return ((ElementImpl *)impl)->getAttribute("marginRight");
1360 }
1361 
1362 void CSS2Properties::setMarginRight( const DOMString &value )
1363 {
1364  if(impl) ((ElementImpl *)impl)->setAttribute("marginRight", value);
1365 }
1366 
1367 DOMString CSS2Properties::marginBottom() const
1368 {
1369  if(!impl) return 0;
1370  return ((ElementImpl *)impl)->getAttribute("marginBottom");
1371 }
1372 
1373 void CSS2Properties::setMarginBottom( const DOMString &value )
1374 {
1375  if(impl) ((ElementImpl *)impl)->setAttribute("marginBottom", value);
1376 }
1377 
1378 DOMString CSS2Properties::marginLeft() const
1379 {
1380  if(!impl) return 0;
1381  return ((ElementImpl *)impl)->getAttribute("marginLeft");
1382 }
1383 
1384 void CSS2Properties::setMarginLeft( const DOMString &value )
1385 {
1386  if(impl) ((ElementImpl *)impl)->setAttribute("marginLeft", value);
1387 }
1388 
1389 DOMString CSS2Properties::markerOffset() const
1390 {
1391  if(!impl) return 0;
1392  return ((ElementImpl *)impl)->getAttribute("markerOffset");
1393 }
1394 
1395 void CSS2Properties::setMarkerOffset( const DOMString &value )
1396 {
1397  if(impl) ((ElementImpl *)impl)->setAttribute("markerOffset", value);
1398 }
1399 
1400 DOMString CSS2Properties::marks() const
1401 {
1402  if(!impl) return 0;
1403  return ((ElementImpl *)impl)->getAttribute("marks");
1404 }
1405 
1406 void CSS2Properties::setMarks( const DOMString &value )
1407 {
1408  if(impl) ((ElementImpl *)impl)->setAttribute("marks", value);
1409 }
1410 
1411 DOMString CSS2Properties::maxHeight() const
1412 {
1413  if(!impl) return 0;
1414  return ((ElementImpl *)impl)->getAttribute("maxHeight");
1415 }
1416 
1417 void CSS2Properties::setMaxHeight( const DOMString &value )
1418 {
1419  if(impl) ((ElementImpl *)impl)->setAttribute("maxHeight", value);
1420 }
1421 
1422 DOMString CSS2Properties::maxWidth() const
1423 {
1424  if(!impl) return 0;
1425  return ((ElementImpl *)impl)->getAttribute("maxWidth");
1426 }
1427 
1428 void CSS2Properties::setMaxWidth( const DOMString &value )
1429 {
1430  if(impl) ((ElementImpl *)impl)->setAttribute("maxWidth", value);
1431 }
1432 
1433 DOMString CSS2Properties::minHeight() const
1434 {
1435  if(!impl) return 0;
1436  return ((ElementImpl *)impl)->getAttribute("minHeight");
1437 }
1438 
1439 void CSS2Properties::setMinHeight( const DOMString &value )
1440 {
1441  if(impl) ((ElementImpl *)impl)->setAttribute("minHeight", value);
1442 }
1443 
1444 DOMString CSS2Properties::minWidth() const
1445 {
1446  if(!impl) return 0;
1447  return ((ElementImpl *)impl)->getAttribute("minWidth");
1448 }
1449 
1450 void CSS2Properties::setMinWidth( const DOMString &value )
1451 {
1452  if(impl) ((ElementImpl *)impl)->setAttribute("minWidth", value);
1453 }
1454 
1455 DOMString CSS2Properties::orphans() const
1456 {
1457  if(!impl) return 0;
1458  return ((ElementImpl *)impl)->getAttribute("orphans");
1459 }
1460 
1461 void CSS2Properties::setOrphans( const DOMString &value )
1462 {
1463  if(impl) ((ElementImpl *)impl)->setAttribute("orphans", value);
1464 }
1465 
1466 DOMString CSS2Properties::outline() const
1467 {
1468  if(!impl) return 0;
1469  return ((ElementImpl *)impl)->getAttribute("outline");
1470 }
1471 
1472 void CSS2Properties::setOutline( const DOMString &value )
1473 {
1474  if(impl) ((ElementImpl *)impl)->setAttribute("outline", value);
1475 }
1476 
1477 DOMString CSS2Properties::outlineColor() const
1478 {
1479  if(!impl) return 0;
1480  return ((ElementImpl *)impl)->getAttribute("outlineColor");
1481 }
1482 
1483 void CSS2Properties::setOutlineColor( const DOMString &value )
1484 {
1485  if(impl) ((ElementImpl *)impl)->setAttribute("outlineColor", value);
1486 }
1487 
1488 DOMString CSS2Properties::outlineStyle() const
1489 {
1490  if(!impl) return 0;
1491  return ((ElementImpl *)impl)->getAttribute("outlineStyle");
1492 }
1493 
1494 void CSS2Properties::setOutlineStyle( const DOMString &value )
1495 {
1496  if(impl) ((ElementImpl *)impl)->setAttribute("outlineStyle", value);
1497 }
1498 
1499 DOMString CSS2Properties::outlineWidth() const
1500 {
1501  if(!impl) return 0;
1502  return ((ElementImpl *)impl)->getAttribute("outlineWidth");
1503 }
1504 
1505 void CSS2Properties::setOutlineWidth( const DOMString &value )
1506 {
1507  if(impl) ((ElementImpl *)impl)->setAttribute("outlineWidth", value);
1508 }
1509 
1510 DOMString CSS2Properties::overflow() const
1511 {
1512  if(!impl) return 0;
1513  return ((ElementImpl *)impl)->getAttribute("overflow");
1514 }
1515 
1516 void CSS2Properties::setOverflow( const DOMString &value )
1517 {
1518  if(impl) ((ElementImpl *)impl)->setAttribute("overflow", value);
1519 }
1520 
1521 DOMString CSS2Properties::padding() const
1522 {
1523  if(!impl) return 0;
1524  return ((ElementImpl *)impl)->getAttribute("padding");
1525 }
1526 
1527 void CSS2Properties::setPadding( const DOMString &value )
1528 {
1529  if(impl) ((ElementImpl *)impl)->setAttribute("padding", value);
1530 }
1531 
1532 DOMString CSS2Properties::paddingTop() const
1533 {
1534  if(!impl) return 0;
1535  return ((ElementImpl *)impl)->getAttribute("paddingTop");
1536 }
1537 
1538 void CSS2Properties::setPaddingTop( const DOMString &value )
1539 {
1540  if(impl) ((ElementImpl *)impl)->setAttribute("paddingTop", value);
1541 }
1542 
1543 DOMString CSS2Properties::paddingRight() const
1544 {
1545  if(!impl) return 0;
1546  return ((ElementImpl *)impl)->getAttribute("paddingRight");
1547 }
1548 
1549 void CSS2Properties::setPaddingRight( const DOMString &value )
1550 {
1551  if(impl) ((ElementImpl *)impl)->setAttribute("paddingRight", value);
1552 }
1553 
1554 DOMString CSS2Properties::paddingBottom() const
1555 {
1556  if(!impl) return 0;
1557  return ((ElementImpl *)impl)->getAttribute("paddingBottom");
1558 }
1559 
1560 void CSS2Properties::setPaddingBottom( const DOMString &value )
1561 {
1562  if(impl) ((ElementImpl *)impl)->setAttribute("paddingBottom", value);
1563 }
1564 
1565 DOMString CSS2Properties::paddingLeft() const
1566 {
1567  if(!impl) return 0;
1568  return ((ElementImpl *)impl)->getAttribute("paddingLeft");
1569 }
1570 
1571 void CSS2Properties::setPaddingLeft( const DOMString &value )
1572 {
1573  if(impl) ((ElementImpl *)impl)->setAttribute("paddingLeft", value);
1574 }
1575 
1576 DOMString CSS2Properties::page() const
1577 {
1578  if(!impl) return 0;
1579  return ((ElementImpl *)impl)->getAttribute("page");
1580 }
1581 
1582 void CSS2Properties::setPage( const DOMString &value )
1583 {
1584  if(impl) ((ElementImpl *)impl)->setAttribute("page", value);
1585 }
1586 
1587 DOMString CSS2Properties::pageBreakAfter() const
1588 {
1589  if(!impl) return 0;
1590  return ((ElementImpl *)impl)->getAttribute("pageBreakAfter");
1591 }
1592 
1593 void CSS2Properties::setPageBreakAfter( const DOMString &value )
1594 {
1595  if(impl) ((ElementImpl *)impl)->setAttribute("pageBreakAfter", value);
1596 }
1597 
1598 DOMString CSS2Properties::pageBreakBefore() const
1599 {
1600  if(!impl) return 0;
1601  return ((ElementImpl *)impl)->getAttribute("pageBreakBefore");
1602 }
1603 
1604 void CSS2Properties::setPageBreakBefore( const DOMString &value )
1605 {
1606  if(impl) ((ElementImpl *)impl)->setAttribute("pageBreakBefore", value);
1607 }
1608 
1609 DOMString CSS2Properties::pageBreakInside() const
1610 {
1611  if(!impl) return 0;
1612  return ((ElementImpl *)impl)->getAttribute("pageBreakInside");
1613 }
1614 
1615 void CSS2Properties::setPageBreakInside( const DOMString &value )
1616 {
1617  if(impl) ((ElementImpl *)impl)->setAttribute("pageBreakInside", value);
1618 }
1619 
1620 DOMString CSS2Properties::pause() const
1621 {
1622  if(!impl) return 0;
1623  return ((ElementImpl *)impl)->getAttribute("pause");
1624 }
1625 
1626 void CSS2Properties::setPause( const DOMString &value )
1627 {
1628  if(impl) ((ElementImpl *)impl)->setAttribute("pause", value);
1629 }
1630 
1631 DOMString CSS2Properties::pauseAfter() const
1632 {
1633  if(!impl) return 0;
1634  return ((ElementImpl *)impl)->getAttribute("pauseAfter");
1635 }
1636 
1637 void CSS2Properties::setPauseAfter( const DOMString &value )
1638 {
1639  if(impl) ((ElementImpl *)impl)->setAttribute("pauseAfter", value);
1640 }
1641 
1642 DOMString CSS2Properties::pauseBefore() const
1643 {
1644  if(!impl) return 0;
1645  return ((ElementImpl *)impl)->getAttribute("pauseBefore");
1646 }
1647 
1648 void CSS2Properties::setPauseBefore( const DOMString &value )
1649 {
1650  if(impl) ((ElementImpl *)impl)->setAttribute("pauseBefore", value);
1651 }
1652 
1653 DOMString CSS2Properties::pitch() const
1654 {
1655  if(!impl) return 0;
1656  return ((ElementImpl *)impl)->getAttribute("pitch");
1657 }
1658 
1659 void CSS2Properties::setPitch( const DOMString &value )
1660 {
1661  if(impl) ((ElementImpl *)impl)->setAttribute("pitch", value);
1662 }
1663 
1664 DOMString CSS2Properties::pitchRange() const
1665 {
1666  if(!impl) return 0;
1667  return ((ElementImpl *)impl)->getAttribute("pitchRange");
1668 }
1669 
1670 void CSS2Properties::setPitchRange( const DOMString &value )
1671 {
1672  if(impl) ((ElementImpl *)impl)->setAttribute("pitchRange", value);
1673 }
1674 
1675 DOMString CSS2Properties::playDuring() const
1676 {
1677  if(!impl) return 0;
1678  return ((ElementImpl *)impl)->getAttribute("playDuring");
1679 }
1680 
1681 void CSS2Properties::setPlayDuring( const DOMString &value )
1682 {
1683  if(impl) ((ElementImpl *)impl)->setAttribute("playDuring", value);
1684 }
1685 
1686 DOMString CSS2Properties::position() const
1687 {
1688  if(!impl) return 0;
1689  return ((ElementImpl *)impl)->getAttribute("position");
1690 }
1691 
1692 void CSS2Properties::setPosition( const DOMString &value )
1693 {
1694  if(impl) ((ElementImpl *)impl)->setAttribute("position", value);
1695 }
1696 
1697 DOMString CSS2Properties::quotes() const
1698 {
1699  if(!impl) return 0;
1700  return ((ElementImpl *)impl)->getAttribute("quotes");
1701 }
1702 
1703 void CSS2Properties::setQuotes( const DOMString &value )
1704 {
1705  if(impl) ((ElementImpl *)impl)->setAttribute("quotes", value);
1706 }
1707 
1708 DOMString CSS2Properties::richness() const
1709 {
1710  if(!impl) return 0;
1711  return ((ElementImpl *)impl)->getAttribute("richness");
1712 }
1713 
1714 void CSS2Properties::setRichness( const DOMString &value )
1715 {
1716  if(impl) ((ElementImpl *)impl)->setAttribute("richness", value);
1717 }
1718 
1719 DOMString CSS2Properties::right() const
1720 {
1721  if(!impl) return 0;
1722  return ((ElementImpl *)impl)->getAttribute("right");
1723 }
1724 
1725 void CSS2Properties::setRight( const DOMString &value )
1726 {
1727  if(impl) ((ElementImpl *)impl)->setAttribute("right", value);
1728 }
1729 
1730 DOMString CSS2Properties::size() const
1731 {
1732  if(!impl) return 0;
1733  return ((ElementImpl *)impl)->getAttribute("size");
1734 }
1735 
1736 void CSS2Properties::setSize( const DOMString &value )
1737 {
1738  if(impl) ((ElementImpl *)impl)->setAttribute("size", value);
1739 }
1740 
1741 DOMString CSS2Properties::speak() const
1742 {
1743  if(!impl) return 0;
1744  return ((ElementImpl *)impl)->getAttribute("speak");
1745 }
1746 
1747 void CSS2Properties::setSpeak( const DOMString &value )
1748 {
1749  if(impl) ((ElementImpl *)impl)->setAttribute("speak", value);
1750 }
1751 
1752 DOMString CSS2Properties::speakHeader() const
1753 {
1754  if(!impl) return 0;
1755  return ((ElementImpl *)impl)->getAttribute("speakHeader");
1756 }
1757 
1758 void CSS2Properties::setSpeakHeader( const DOMString &value )
1759 {
1760  if(impl) ((ElementImpl *)impl)->setAttribute("speakHeader", value);
1761 }
1762 
1763 DOMString CSS2Properties::speakNumeral() const
1764 {
1765  if(!impl) return 0;
1766  return ((ElementImpl *)impl)->getAttribute("speakNumeral");
1767 }
1768 
1769 void CSS2Properties::setSpeakNumeral( const DOMString &value )
1770 {
1771  if(impl) ((ElementImpl *)impl)->setAttribute("speakNumeral", value);
1772 }
1773 
1774 DOMString CSS2Properties::speakPunctuation() const
1775 {
1776  if(!impl) return 0;
1777  return ((ElementImpl *)impl)->getAttribute("speakPunctuation");
1778 }
1779 
1780 void CSS2Properties::setSpeakPunctuation( const DOMString &value )
1781 {
1782  if(impl) ((ElementImpl *)impl)->setAttribute("speakPunctuation", value);
1783 }
1784 
1785 DOMString CSS2Properties::speechRate() const
1786 {
1787  if(!impl) return 0;
1788  return ((ElementImpl *)impl)->getAttribute("speechRate");
1789 }
1790 
1791 void CSS2Properties::setSpeechRate( const DOMString &value )
1792 {
1793  if(impl) ((ElementImpl *)impl)->setAttribute("speechRate", value);
1794 }
1795 
1796 DOMString CSS2Properties::stress() const
1797 {
1798  if(!impl) return 0;
1799  return ((ElementImpl *)impl)->getAttribute("stress");
1800 }
1801 
1802 void CSS2Properties::setStress( const DOMString &value )
1803 {
1804  if(impl) ((ElementImpl *)impl)->setAttribute("stress", value);
1805 }
1806 
1807 DOMString CSS2Properties::tableLayout() const
1808 {
1809  if(!impl) return 0;
1810  return ((ElementImpl *)impl)->getAttribute("tableLayout");
1811 }
1812 
1813 void CSS2Properties::setTableLayout( const DOMString &value )
1814 {
1815  if(impl) ((ElementImpl *)impl)->setAttribute("tableLayout", value);
1816 }
1817 
1818 DOMString CSS2Properties::textAlign() const
1819 {
1820  if(!impl) return 0;
1821  return ((ElementImpl *)impl)->getAttribute("textAlign");
1822 }
1823 
1824 void CSS2Properties::setTextAlign( const DOMString &value )
1825 {
1826  if(impl) ((ElementImpl *)impl)->setAttribute("textAlign", value);
1827 }
1828 
1829 DOMString CSS2Properties::textDecoration() const
1830 {
1831  if(!impl) return 0;
1832  return ((ElementImpl *)impl)->getAttribute("textDecoration");
1833 }
1834 
1835 void CSS2Properties::setTextDecoration( const DOMString &value )
1836 {
1837  if(impl) ((ElementImpl *)impl)->setAttribute("textDecoration", value);
1838 }
1839 
1840 DOMString CSS2Properties::textIndent() const
1841 {
1842  if(!impl) return 0;
1843  return ((ElementImpl *)impl)->getAttribute("textIndent");
1844 }
1845 
1846 void CSS2Properties::setTextIndent( const DOMString &value )
1847 {
1848  if(impl) ((ElementImpl *)impl)->setAttribute("textIndent", value);
1849 }
1850 
1851 DOMString CSS2Properties::textShadow() const
1852 {
1853  if(!impl) return 0;
1854  return ((ElementImpl *)impl)->getAttribute("textShadow");
1855 }
1856 
1857 void CSS2Properties::setTextShadow( const DOMString &value )
1858 {
1859  if(impl) ((ElementImpl *)impl)->setAttribute("textShadow", value);
1860 }
1861 
1862 DOMString CSS2Properties::textTransform() const
1863 {
1864  if(!impl) return 0;
1865  return ((ElementImpl *)impl)->getAttribute("textTransform");
1866 }
1867 
1868 void CSS2Properties::setTextTransform( const DOMString &value )
1869 {
1870  if(impl) ((ElementImpl *)impl)->setAttribute("textTransform", value);
1871 }
1872 
1873 DOMString CSS2Properties::top() const
1874 {
1875  if(!impl) return 0;
1876  return ((ElementImpl *)impl)->getAttribute("top");
1877 }
1878 
1879 void CSS2Properties::setTop( const DOMString &value )
1880 {
1881  if(impl) ((ElementImpl *)impl)->setAttribute("top", value);
1882 }
1883 
1884 DOMString CSS2Properties::unicodeBidi() const
1885 {
1886  if(!impl) return 0;
1887  return ((ElementImpl *)impl)->getAttribute("unicodeBidi");
1888 }
1889 
1890 void CSS2Properties::setUnicodeBidi( const DOMString &value )
1891 {
1892  if(impl) ((ElementImpl *)impl)->setAttribute("unicodeBidi", value);
1893 }
1894 
1895 DOMString CSS2Properties::verticalAlign() const
1896 {
1897  if(!impl) return 0;
1898  return ((ElementImpl *)impl)->getAttribute("verticalAlign");
1899 }
1900 
1901 void CSS2Properties::setVerticalAlign( const DOMString &value )
1902 {
1903  if(impl) ((ElementImpl *)impl)->setAttribute("verticalAlign", value);
1904 }
1905 
1906 DOMString CSS2Properties::visibility() const
1907 {
1908  if(!impl) return 0;
1909  return ((ElementImpl *)impl)->getAttribute("visibility");
1910 }
1911 
1912 void CSS2Properties::setVisibility( const DOMString &value )
1913 {
1914  if(impl) ((ElementImpl *)impl)->setAttribute("visibility", value);
1915 }
1916 
1917 DOMString CSS2Properties::voiceFamily() const
1918 {
1919  if(!impl) return 0;
1920  return ((ElementImpl *)impl)->getAttribute("voiceFamily");
1921 }
1922 
1923 void CSS2Properties::setVoiceFamily( const DOMString &value )
1924 {
1925  if(impl) ((ElementImpl *)impl)->setAttribute("voiceFamily", value);
1926 }
1927 
1928 DOMString CSS2Properties::volume() const
1929 {
1930  if(!impl) return 0;
1931  return ((ElementImpl *)impl)->getAttribute("volume");
1932 }
1933 
1934 void CSS2Properties::setVolume( const DOMString &value )
1935 {
1936  if(impl) ((ElementImpl *)impl)->setAttribute("volume", value);
1937 }
1938 
1939 DOMString CSS2Properties::whiteSpace() const
1940 {
1941  if(!impl) return 0;
1942  return ((ElementImpl *)impl)->getAttribute("whiteSpace");
1943 }
1944 
1945 void CSS2Properties::setWhiteSpace( const DOMString &value )
1946 {
1947  if(impl) ((ElementImpl *)impl)->setAttribute("whiteSpace", value);
1948 }
1949 
1950 DOMString CSS2Properties::widows() const
1951 {
1952  if(!impl) return 0;
1953  return ((ElementImpl *)impl)->getAttribute("widows");
1954 }
1955 
1956 void CSS2Properties::setWidows( const DOMString &value )
1957 {
1958  if(impl) ((ElementImpl *)impl)->setAttribute("widows", value);
1959 }
1960 
1961 DOMString CSS2Properties::width() const
1962 {
1963  if(!impl) return 0;
1964  return ((ElementImpl *)impl)->getAttribute("width");
1965 }
1966 
1967 void CSS2Properties::setWidth( const DOMString &value )
1968 {
1969  if(impl) ((ElementImpl *)impl)->setAttribute("width", value);
1970 }
1971 
1972 DOMString CSS2Properties::wordSpacing() const
1973 {
1974  if(!impl) return 0;
1975  return ((ElementImpl *)impl)->getAttribute("wordSpacing");
1976 }
1977 
1978 void CSS2Properties::setWordSpacing( const DOMString &value )
1979 {
1980  if(impl) ((ElementImpl *)impl)->setAttribute("wordSpacing", value);
1981 }
1982 
1983 DOMString CSS2Properties::zIndex() const
1984 {
1985  if(!impl) return 0;
1986  return ((ElementImpl *)impl)->getAttribute("zIndex");
1987 }
1988 
1989 void CSS2Properties::setZIndex( const DOMString &value )
1990 {
1991  if(impl) ((ElementImpl *)impl)->setAttribute("zIndex", value);
1992 }
1993 
1994 
1995 
1996 CSS2TextShadow::CSS2TextShadow()
1997 {
1998 }
1999 
2000 CSS2TextShadow::CSS2TextShadow(const CSS2TextShadow &other)
2001 {
2002 }
2003 
2004 CSS2TextShadow::CSS2TextShadow(CSS2TextShadowImpl *impl)
2005 {
2006 }
2007 
2008 CSS2TextShadow &CSS2TextShadow::operator = (const CSS2TextShadow &other)
2009 {
2010  ::operator = (other);
2011  return *this;
2012 }
2013 
2014 CSS2TextShadow::~CSS2TextShadow()
2015 {
2016 }
2017 
2018 CSSValue CSS2TextShadow::color() const
2019 {
2020  if(!impl) return 0;
2021  return ((CSS2TextShadowImpl *)impl)->color();
2022 }
2023 
2024 CSSValue CSS2TextShadow::horizontal() const
2025 {
2026  if(!impl) return 0;
2027  return ((CSS2TextShadowImpl *)impl)->horizontal();
2028 }
2029 
2030 CSSValue CSS2TextShadow::vertical() const
2031 {
2032  if(!impl) return 0;
2033  return ((CSS2TextShadowImpl *)impl)->vertical();
2034 }
2035 
2036 CSSValue CSS2TextShadow::blur() const
2037 {
2038  if(!impl) return 0;
2039  return ((CSS2TextShadowImpl *)impl)->blur();
2040 }
2041 
2042 
2043 
DOM::CSS2Properties::borderStyle
DOM::DOMString borderStyle() const
See the border-style property definition in CSS2.
Definition: css_extensions.cpp:773
dom_string.h
DOM::CSS2BackgroundPosition::getHorizontalPosition
float getHorizontalPosition(const float horizontalType)
This method is used to get the float value in a specified unit if the horizontalPosition represents a...
Definition: css_extensions.cpp:136
DOM::CSS2BackgroundPosition::~CSS2BackgroundPosition
~CSS2BackgroundPosition()
Definition: css_extensions.cpp:108
DOM::CSS2CounterReset::reset
short reset() const
The reset (default value is 0).
Definition: css_extensions.cpp:316
DOM::CSS2Properties::textTransform
DOM::DOMString textTransform() const
See the text-transform property definition in CSS2.
Definition: css_extensions.cpp:1862
DOM::CSS2Properties::setMaxWidth
void setMaxWidth(const DOM::DOMString &)
see maxWidth
Definition: css_extensions.cpp:1428
DOM::CSS2Properties::setPaddingBottom
void setPaddingBottom(const DOM::DOMString &)
see paddingBottom
Definition: css_extensions.cpp:1560
DOM::CSS2PageSize::operator=
CSS2PageSize & operator=(const CSS2PageSize &other)
Definition: css_extensions.cpp:492
DOM::CSS2Properties::setBorderLeftStyle
void setBorderLeftStyle(const DOM::DOMString &)
see borderLeftStyle
Definition: css_extensions.cpp:911
DOM::CSS2TextShadow::color
CSSValue color() const
Specified the color of the text shadow.
Definition: css_extensions.cpp:2018
DOM::CSS2Properties::pause
DOM::DOMString pause() const
See the pause property definition in CSS2.
Definition: css_extensions.cpp:1620
DOM::CSS2Properties::borderTopStyle
DOM::DOMString borderTopStyle() const
See the border-top-style property definition in CSS2.
Definition: css_extensions.cpp:872
DOM::CSS2FontFaceSrc::setUri
void setUri(const DOM::DOMString &)
see uri SYNTAX_ERR: Raised if the specified CSS string value has a syntax error and is unparsable...
Definition: css_extensions.cpp:414
DOM::CSS2Properties::setMaxHeight
void setMaxHeight(const DOM::DOMString &)
see maxHeight
Definition: css_extensions.cpp:1417
DOM::CSS2Properties::setBorderTopWidth
void setBorderTopWidth(const DOM::DOMString &)
see borderTopWidth
Definition: css_extensions.cpp:922
DOM::CSS2Properties::setBorderRightStyle
void setBorderRightStyle(const DOM::DOMString &)
see borderRightStyle
Definition: css_extensions.cpp:889
DOM::CSS2Properties::setMarginTop
void setMarginTop(const DOM::DOMString &)
see marginTop
Definition: css_extensions.cpp:1351
DOM::CSS2Properties::whiteSpace
DOM::DOMString whiteSpace() const
See the white-space property definition in CSS2.
Definition: css_extensions.cpp:1939
DOM::CSS2FontFaceSrc::CSS2FontFaceSrc
CSS2FontFaceSrc()
Definition: css_extensions.cpp:386
DOM::CSS2CounterIncrement::identifier
DOM::DOMString identifier() const
The element name.
Definition: css_extensions.cpp:256
DOM::CSS2Properties::setOverflow
void setOverflow(const DOM::DOMString &)
see overflow
Definition: css_extensions.cpp:1516
DOM::CSS2Properties::setListStylePosition
void setListStylePosition(const DOM::DOMString &)
see listStylePosition
Definition: css_extensions.cpp:1318
DOM::CSS2Properties::paddingRight
DOM::DOMString paddingRight() const
See the padding-right property definition in CSS2.
Definition: css_extensions.cpp:1543
DOM::CSS2Properties::setPaddingTop
void setPaddingTop(const DOM::DOMString &)
see paddingTop
Definition: css_extensions.cpp:1538
DOM::CSS2Properties::setCounterIncrement
void setCounterIncrement(const DOM::DOMString &)
see counterIncrement
Definition: css_extensions.cpp:1043
DOM::CSS2Properties::setUnicodeBidi
void setUnicodeBidi(const DOM::DOMString &)
see unicodeBidi
Definition: css_extensions.cpp:1890
DOM::CSS2PageSize::CSS2PageSize
CSS2PageSize()
Definition: css_extensions.cpp:480
DOM::CSS2Properties::setMarks
void setMarks(const DOM::DOMString &)
see marks
Definition: css_extensions.cpp:1406
DOM::CSS2Properties::setContent
void setContent(const DOM::DOMString &)
see content
Definition: css_extensions.cpp:1032
DOM::CSS2Properties::outlineColor
DOM::DOMString outlineColor() const
See the outline-color property definition in CSS2.
Definition: css_extensions.cpp:1477
DOM::CSS2Properties::setPlayDuring
void setPlayDuring(const DOM::DOMString &)
see playDuring
Definition: css_extensions.cpp:1681
DOM::CSS2Properties::setCursor
void setCursor(const DOM::DOMString &)
see cursor
Definition: css_extensions.cpp:1098
DOM::CSS2Properties::letterSpacing
DOM::DOMString letterSpacing() const
See the letter-spacing property definition in CSS2.
Definition: css_extensions.cpp:1268
DOM::CSS2Cursor::setCursorType
void setCursorType(const unsigned short)
see cursorType
Definition: css_extensions.cpp:360
DOM::CSS2BorderSpacing::CSS2BorderSpacing
CSS2BorderSpacing()
Definition: css_extensions.cpp:168
DOM::CSS2Properties::font
DOM::DOMString font() const
See the font property definition in CSS2.
Definition: css_extensions.cpp:1158
DOM::CSS2Properties::setSpeechRate
void setSpeechRate(const DOM::DOMString &)
see speechRate
Definition: css_extensions.cpp:1791
DOM::CSS2Properties::textShadow
DOM::DOMString textShadow() const
See the text-shadow property definition in CSS2.
Definition: css_extensions.cpp:1851
DOM::CSS2Properties::setFontSizeAdjust
void setFontSizeAdjust(const DOM::DOMString &)
see fontSizeAdjust
Definition: css_extensions.cpp:1197
DOM::CSS2Properties::setCaptionSide
void setCaptionSide(const DOM::DOMString &)
see captionSide
Definition: css_extensions.cpp:988
DOM::CSS2BackgroundPosition::CSS2BackgroundPosition
CSS2BackgroundPosition()
Definition: css_extensions.cpp:90
DOM::CSS2Properties::marginTop
DOM::DOMString marginTop() const
See the margin-top property definition in CSS2.
Definition: css_extensions.cpp:1345
DOM::CSS2Properties::setTableLayout
void setTableLayout(const DOM::DOMString &)
see tableLayout
Definition: css_extensions.cpp:1813
DOM::CSS2Properties::setTextShadow
void setTextShadow(const DOM::DOMString &)
see textShadow
Definition: css_extensions.cpp:1857
DOM::CSS2FontFaceWidths::CSS2FontFaceWidths
CSS2FontFaceWidths()
Definition: css_extensions.cpp:438
DOM::CSS2Properties::paddingBottom
DOM::DOMString paddingBottom() const
See the padding-bottom property definition in CSS2.
Definition: css_extensions.cpp:1554
DOM::CSS2Properties::borderRightColor
DOM::DOMString borderRightColor() const
See the border-right-color property definition in CSS2.
Definition: css_extensions.cpp:839
DOM::CSS2TextShadow::vertical
CSSValue vertical() const
The vertical position of the text shadow.
Definition: css_extensions.cpp:2030
DOM::CSS2Properties::setFontVariant
void setFontVariant(const DOM::DOMString &)
see fontVariant
Definition: css_extensions.cpp:1230
DOM::CSS2Properties::setHeight
void setHeight(const DOM::DOMString &)
see height
Definition: css_extensions.cpp:1252
DOM::CSS2Properties::setStress
void setStress(const DOM::DOMString &)
see stress
Definition: css_extensions.cpp:1802
DOM::CSS2CounterIncrement::increment
short increment() const
The increment (default value is 1).
Definition: css_extensions.cpp:267
DOM::CSS2Properties::minWidth
DOM::DOMString minWidth() const
See the min-width property definition in CSS2.
Definition: css_extensions.cpp:1444
DOM::CSS2Properties::clip
DOM::DOMString clip() const
See the clip property definition in CSS2.
Definition: css_extensions.cpp:1004
DOM::CSS2Properties::direction
DOM::DOMString direction() const
See the direction property definition in CSS2.
Definition: css_extensions.cpp:1103
DOM::CSS2Properties::setBorderSpacing
void setBorderSpacing(const DOM::DOMString &)
see borderSpacing
Definition: css_extensions.cpp:768
DOM::CSS2PageSize::identifier
DOM::DOMString identifier() const
If width is CSS_IDENT or CSS_INHERIT , this attribute contains the string representation of the ident...
Definition: css_extensions.cpp:514
DOM::CSS2Properties::borderBottomColor
DOM::DOMString borderBottomColor() const
See the border-bottom-color property definition in CSS2.
Definition: css_extensions.cpp:850
DOM::CSS2Properties::azimuth
DOM::DOMString azimuth() const
See the azimuth property definition in CSS2.
Definition: css_extensions.cpp:652
DOM::CSS2Properties::marginBottom
DOM::DOMString marginBottom() const
See the margin-bottom property definition in CSS2.
Definition: css_extensions.cpp:1367
DOM::CSS2FontFaceWidths::operator=
CSS2FontFaceWidths & operator=(const CSS2FontFaceWidths &other)
Definition: css_extensions.cpp:450
DOM::CSS2BackgroundPosition::horizontalType
unsigned short horizontalType() const
A code defining the type of the horizontal value.
Definition: css_extensions.cpp:112
DOM::CSS2Properties::right
DOM::DOMString right() const
See the right property definition in CSS2.
Definition: css_extensions.cpp:1719
DOM::CSS2Properties::overflow
DOM::DOMString overflow() const
See the overflow property definition in CSS2.
Definition: css_extensions.cpp:1510
DOM::CSS2Properties::setMarginBottom
void setMarginBottom(const DOM::DOMString &)
see marginBottom
Definition: css_extensions.cpp:1373
DOM::CSS2FontFaceWidths
The CSS2Cursor interface represents a simple value for the widths CSS Level 2 descriptor.
Definition: css_extensions.h:693
DOM::CSS2Properties::fontSizeAdjust
DOM::DOMString fontSizeAdjust() const
See the font-size-adjust property definition in CSS2.
Definition: css_extensions.cpp:1191
DOM::CSS2Properties::setPageBreakAfter
void setPageBreakAfter(const DOM::DOMString &)
see pageBreakAfter
Definition: css_extensions.cpp:1593
DOM::CSS2PlayDuring::setUri
void setUri(const DOM::DOMString &)
see uri SYNTAX_ERR: Raised if the specified CSS string value has a syntax error and is unparsable...
Definition: css_extensions.cpp:597
DOM::CSS2Properties::setClear
void setClear(const DOM::DOMString &)
see clear
Definition: css_extensions.cpp:999
DOM::CSS2PlayDuring::CSS2PlayDuring
CSS2PlayDuring()
Definition: css_extensions.cpp:552
DOM::CSS2Properties::setBackgroundImage
void setBackgroundImage(const DOM::DOMString &)
see backgroundImage
Definition: css_extensions.cpp:702
DOM::CSS2Properties::textAlign
DOM::DOMString textAlign() const
See the text-align property definition in CSS2.
Definition: css_extensions.cpp:1818
DOM::CSS2Properties::zIndex
DOM::DOMString zIndex() const
See the z-index property definition in CSS2.
Definition: css_extensions.cpp:1983
DOM::CSS2Properties::setListStyleImage
void setListStyleImage(const DOM::DOMString &)
see listStyleImage
Definition: css_extensions.cpp:1307
DOM::CSS2FontFaceSrc::fontFaceName
DOM::DOMString fontFaceName() const
Specifies the full font name of a locally installed font.
Definition: css_extensions.cpp:425
DOM::CSS2PlayDuring::uri
DOM::DOMString uri() const
The sound specified by the uri .
Definition: css_extensions.cpp:591
DOM::CSS2Azimuth::~CSS2Azimuth
~CSS2Azimuth()
Definition: css_extensions.cpp:48
DOM::CSS2Properties::playDuring
DOM::DOMString playDuring() const
See the play-during property definition in CSS2.
Definition: css_extensions.cpp:1675
DOM::CSS2Properties::setBackgroundRepeat
void setBackgroundRepeat(const DOM::DOMString &)
see backgroundRepeat
Definition: css_extensions.cpp:724
DOM::CSS2TextShadow::blur
CSSValue blur() const
The blur radius of the text shadow.
Definition: css_extensions.cpp:2036
DOM::CSS2Properties::setBorderTopColor
void setBorderTopColor(const DOM::DOMString &)
see borderTopColor
Definition: css_extensions.cpp:834
DOM::CSS2Properties::maxWidth
DOM::DOMString maxWidth() const
See the max-width property definition in CSS2.
Definition: css_extensions.cpp:1422
DOM::CSS2Properties::setLetterSpacing
void setLetterSpacing(const DOM::DOMString &)
see letterSpacing
Definition: css_extensions.cpp:1274
DOM::CSS2Properties::setPageBreakInside
void setPageBreakInside(const DOM::DOMString &)
see pageBreakInside
Definition: css_extensions.cpp:1615
DOM::CSS2Properties::richness
DOM::DOMString richness() const
See the richness property definition in CSS2.
Definition: css_extensions.cpp:1708
DOM::CSS2Properties::backgroundAttachment
DOM::DOMString backgroundAttachment() const
See the background-attachment property definition in CSS2.
Definition: css_extensions.cpp:674
DOM::CSS2Properties::pageBreakAfter
DOM::DOMString pageBreakAfter() const
See the page-break-after property definition in CSS2.
Definition: css_extensions.cpp:1587
DOM::CSS2Properties::speakPunctuation
DOM::DOMString speakPunctuation() const
See the speak-punctuation property definition in CSS2.
Definition: css_extensions.cpp:1774
DOM::CSS2BackgroundPosition::operator=
CSS2BackgroundPosition & operator=(const CSS2BackgroundPosition &other)
Definition: css_extensions.cpp:102
DOM::CSS2Properties::setFontSize
void setFontSize(const DOM::DOMString &)
see fontSize
Definition: css_extensions.cpp:1186
DOM::CSS2CounterReset::setReset
void setReset(const short)
see reset NO_MODIFICATION_ALLOWED_ERR: Raised if this identifier is readonly.
Definition: css_extensions.cpp:322
DOM::CSS2BackgroundPosition::setHorizontalPosition
void setHorizontalPosition(const unsigned short horizontalType, const float value)
This method is used to set the horizontal position with a specified unit.
Definition: css_extensions.cpp:148
DOM::CSS2Properties::setZIndex
void setZIndex(const DOM::DOMString &)
see zIndex
Definition: css_extensions.cpp:1989
DOM::CSS2Properties::lineHeight
DOM::DOMString lineHeight() const
See the line-height property definition in CSS2.
Definition: css_extensions.cpp:1279
DOM::CSS2PlayDuring::playDuringType
unsigned short playDuringType() const
A code defining the type of the value as define in CSSvalue .
Definition: css_extensions.cpp:574
DOM::CSS2Azimuth::identifier
DOM::DOMString identifier() const
If azimuthType is CSS_IDENT , identifier contains one of left-side, far-left, left, center-left, center, center-right, right, far-right, right-side, leftwards, rightwards.
Definition: css_extensions.cpp:58
DOM::CSS2Properties::visibility
DOM::DOMString visibility() const
See the visibility property definition in CSS2.
Definition: css_extensions.cpp:1906
DOM::CSS2Properties::setOutlineColor
void setOutlineColor(const DOM::DOMString &)
see outlineColor
Definition: css_extensions.cpp:1483
DOM::CSS2Properties::setMarkerOffset
void setMarkerOffset(const DOM::DOMString &)
see markerOffset
Definition: css_extensions.cpp:1395
DOM::CSS2Properties::setBorderLeftWidth
void setBorderLeftWidth(const DOM::DOMString &)
see borderLeftWidth
Definition: css_extensions.cpp:955
DOM::CSS2Properties::borderSpacing
DOM::DOMString borderSpacing() const
See the border-spacing property definition in CSS2.
Definition: css_extensions.cpp:762
DOM::CSS2Properties::setBackground
void setBackground(const DOM::DOMString &)
see background
Definition: css_extensions.cpp:669
DOM::CSS2Properties::outlineStyle
DOM::DOMString outlineStyle() const
See the outline-style property definition in CSS2.
Definition: css_extensions.cpp:1488
DOM::CSS2FontFaceSrc
The CSS2Cursor interface represents the src CSS Level 2 descriptor.
Definition: css_extensions.h:626
DOM::CSS2Properties::elevation
DOM::DOMString elevation() const
See the elevation property definition in CSS2.
Definition: css_extensions.cpp:1125
DOM::CSS2Properties::fontWeight
DOM::DOMString fontWeight() const
See the font-weight property definition in CSS2.
Definition: css_extensions.cpp:1235
DOM::CSS2Properties::setPageBreakBefore
void setPageBreakBefore(const DOM::DOMString &)
see pageBreakBefore
Definition: css_extensions.cpp:1604
DOM::CSS2BorderSpacing::~CSS2BorderSpacing
~CSS2BorderSpacing()
Definition: css_extensions.cpp:186
DOM::CSS2Properties::volume
DOM::DOMString volume() const
See the volume property definition in CSS2.
Definition: css_extensions.cpp:1928
DOM::CSS2Properties::speak
DOM::DOMString speak() const
See the speak property definition in CSS2.
Definition: css_extensions.cpp:1741
DOM::CSS2FontFaceSrc::uri
DOM::DOMString uri() const
Specifies the source of the font, empty string otherwise.
Definition: css_extensions.cpp:408
DOM::CSS2Cursor::CSS2Cursor
CSS2Cursor()
Definition: css_extensions.cpp:332
DOM::CSS2Properties::quotes
DOM::DOMString quotes() const
See the quotes property definition in CSS2.
Definition: css_extensions.cpp:1697
DOM::CSS2CounterReset
The CSS2CounterReset interface represents a simple value for the counter-reset CSS Level 2 property...
Definition: css_extensions.h:503
DOM::CSS2PageSize::setIdentifier
void setIdentifier(const DOM::DOMString &identifier)
Sets the identifier.
Definition: css_extensions.cpp:544
DOM::CSS2CounterIncrement::~CSS2CounterIncrement
~CSS2CounterIncrement()
Definition: css_extensions.cpp:252
DOM::CSS2BorderSpacing::getVerticalSpacing
float getVerticalSpacing(const float verticalType)
This method is used to get the float value in a specified unit if the verticalSpacing represents a le...
Definition: css_extensions.cpp:208
DOM::CSS2Properties::setWordSpacing
void setWordSpacing(const DOM::DOMString &)
see wordSpacing
Definition: css_extensions.cpp:1978
DOM::CSS2Properties::setBorderCollapse
void setBorderCollapse(const DOM::DOMString &)
see borderCollapse
Definition: css_extensions.cpp:746
DOM::CSSValueList
The CSSValueList interface provides the absraction of an ordered collection of CSS values...
Definition: css_value.h:315
DOM::CSS2Properties::fontSize
DOM::DOMString fontSize() const
See the font-size property definition in CSS2.
Definition: css_extensions.cpp:1180
DOM::CSS2Properties::textIndent
DOM::DOMString textIndent() const
See the text-indent property definition in CSS2.
Definition: css_extensions.cpp:1840
DOM::CSS2Properties::setCueAfter
void setCueAfter(const DOM::DOMString &)
see cueAfter
Definition: css_extensions.cpp:1076
DOM::CSS2Properties::tableLayout
DOM::DOMString tableLayout() const
See the table-layout property definition in CSS2.
Definition: css_extensions.cpp:1807
DOM::CSS2Properties::setClip
void setClip(const DOM::DOMString &)
see clip
Definition: css_extensions.cpp:1010
DOM::CSS2Azimuth::CSS2Azimuth
CSS2Azimuth()
Definition: css_extensions.cpp:30
DOM::CSS2Properties::setBorderRight
void setBorderRight(const DOM::DOMString &)
see borderRight
Definition: css_extensions.cpp:801
DOM::CSS2Properties::setCue
void setCue(const DOM::DOMString &)
see cue
Definition: css_extensions.cpp:1065
DOM::CSS2Properties::setTextTransform
void setTextTransform(const DOM::DOMString &)
see textTransform
Definition: css_extensions.cpp:1868
DOM::CSS2Properties::setWidth
void setWidth(const DOM::DOMString &)
see width
Definition: css_extensions.cpp:1967
DOM::CSS2Properties::position
DOM::DOMString position() const
See the position property definition in CSS2.
Definition: css_extensions.cpp:1686
DOM::CSS2Properties::emptyCells
DOM::DOMString emptyCells() const
See the empty-cells property definition in CSS2.
Definition: css_extensions.cpp:1136
DOM::CSS2CounterReset::operator=
CSS2CounterReset & operator=(const CSS2CounterReset &other)
Definition: css_extensions.cpp:295
DOM::CSS2Azimuth::azimuthType
unsigned short azimuthType() const
A code defining the type of the value as defined in CSSValue .
Definition: css_extensions.cpp:52
DOM::CSS2Properties::size
DOM::DOMString size() const
See the size property definition in CSS2.
Definition: css_extensions.cpp:1730
DOM::CSS2CounterReset::setIdentifier
void setIdentifier(const DOM::DOMString &)
see identifier SYNTAX_ERR: Raised if the specified identifier has a syntax error and is unparsable...
Definition: css_extensions.cpp:311
DOM::CSS2PlayDuring::operator=
CSS2PlayDuring & operator=(const CSS2PlayDuring &other)
Definition: css_extensions.cpp:564
DOM::CSS2CounterIncrement::CSS2CounterIncrement
CSS2CounterIncrement()
Definition: css_extensions.cpp:234
DOM::CSS2Properties::setPitch
void setPitch(const DOM::DOMString &)
see pitch
Definition: css_extensions.cpp:1659
DOM::CSS2CounterReset::identifier
DOM::DOMString identifier() const
The element name.
Definition: css_extensions.cpp:305
DOM::CSS2FontFaceSrc::format
CSSValueList format() const
This attribute contains a list of strings for the format CSS function.
Definition: css_extensions.cpp:419
DOM::CSS2Properties::fontStretch
DOM::DOMString fontStretch() const
See the font-stretch property definition in CSS2.
Definition: css_extensions.cpp:1202
DOM::CSS2Properties::borderColor
DOM::DOMString borderColor() const
See the border-color property definition in CSS2.
Definition: css_extensions.cpp:751
DOM::CSS2Properties::setOutlineStyle
void setOutlineStyle(const DOM::DOMString &)
see outlineStyle
Definition: css_extensions.cpp:1494
DOM::CSS2Properties::cssFloat
DOM::DOMString cssFloat() const
See the float property definition in CSS2.
Definition: css_extensions.cpp:1147
DOM::CSS2Properties
The CSS2Properties interface represents a convenience mechanism for retrieving and setting properties...
Definition: css_extensions.h:1048
DOM::CSS2Properties::borderTopColor
DOM::DOMString borderTopColor() const
See the border-top-color property definition in CSS2.
Definition: css_extensions.cpp:828
DOM::CSS2Properties::textDecoration
DOM::DOMString textDecoration() const
See the text-decoration property definition in CSS2.
Definition: css_extensions.cpp:1829
DOM::CSS2Properties::setPause
void setPause(const DOM::DOMString &)
see pause
Definition: css_extensions.cpp:1626
DOM::CSS2Properties::page
DOM::DOMString page() const
See the page property definition in CSS2.
Definition: css_extensions.cpp:1576
DOM::CSS2Cursor::operator=
CSS2Cursor & operator=(const CSS2Cursor &other)
Definition: css_extensions.cpp:344
DOM::CSS2BorderSpacing::operator=
CSS2BorderSpacing & operator=(const CSS2BorderSpacing &other)
Definition: css_extensions.cpp:180
DOM::CSS2Cursor::uris
CSSValueList uris() const
uris represents the list of URIs ( CSS_URI ) on the cursor property.
Definition: css_extensions.cpp:367
DOM::CSS2Properties::bottom
DOM::DOMString bottom() const
See the bottom property definition in CSS2.
Definition: css_extensions.cpp:971
DOM::CSS2Properties::setTextDecoration
void setTextDecoration(const DOM::DOMString &)
see textDecoration
Definition: css_extensions.cpp:1835
DOM::CSS2Properties::setLeft
void setLeft(const DOM::DOMString &)
see left
Definition: css_extensions.cpp:1263
DOM::CSS2Properties::setFontStretch
void setFontStretch(const DOM::DOMString &)
see fontStretch
Definition: css_extensions.cpp:1208
DOM::CSS2Properties::setPauseBefore
void setPauseBefore(const DOM::DOMString &)
see pauseBefore
Definition: css_extensions.cpp:1648
DOM::CSS2Properties::counterIncrement
DOM::DOMString counterIncrement() const
See the counter-increment property definition in CSS2.
Definition: css_extensions.cpp:1037
DOM::CSS2Properties::setBorder
void setBorder(const DOM::DOMString &)
see border
Definition: css_extensions.cpp:735
DOM::CSS2Properties::pitch
DOM::DOMString pitch() const
See the pitch property definition in CSS2.
Definition: css_extensions.cpp:1653
DOM::CSS2Properties::setBorderBottomStyle
void setBorderBottomStyle(const DOM::DOMString &)
see borderBottomStyle
Definition: css_extensions.cpp:900
DOM::CSS2Properties::stress
DOM::DOMString stress() const
See the stress property definition in CSS2.
Definition: css_extensions.cpp:1796
DOM::CSS2Properties::setSpeakPunctuation
void setSpeakPunctuation(const DOM::DOMString &)
see speakPunctuation
Definition: css_extensions.cpp:1780
DOM::CSS2Properties::fontVariant
DOM::DOMString fontVariant() const
See the font-variant property definition in CSS2.
Definition: css_extensions.cpp:1224
DOM::CSS2Properties::setSpeakHeader
void setSpeakHeader(const DOM::DOMString &)
see speakHeader
Definition: css_extensions.cpp:1758
DOM::CSS2Properties::setBorderBottom
void setBorderBottom(const DOM::DOMString &)
see borderBottom
Definition: css_extensions.cpp:812
DOM::CSS2Properties::unicodeBidi
DOM::DOMString unicodeBidi() const
See the unicode-bidi property definition in CSS2.
Definition: css_extensions.cpp:1884
DOM::CSS2Properties::setBackgroundPosition
void setBackgroundPosition(const DOM::DOMString &)
see backgroundPosition
Definition: css_extensions.cpp:713
DOM::CSS2Properties::setPitchRange
void setPitchRange(const DOM::DOMString &)
see pitchRange
Definition: css_extensions.cpp:1670
DOM::CSS2Properties::setPaddingRight
void setPaddingRight(const DOM::DOMString &)
see paddingRight
Definition: css_extensions.cpp:1549
DOM::CSS2Properties::setCssFloat
void setCssFloat(const DOM::DOMString &)
see cssFloat
Definition: css_extensions.cpp:1153
DOM::CSS2Properties::height
DOM::DOMString height() const
See the height property definition in CSS2.
Definition: css_extensions.cpp:1246
DOM::CSS2BorderSpacing::verticalType
unsigned short verticalType() const
The A code defining the type of the value as defined in CSSValue .
Definition: css_extensions.cpp:196
DOM::CSS2Properties::paddingTop
DOM::DOMString paddingTop() const
See the padding-top property definition in CSS2.
Definition: css_extensions.cpp:1532
DOM::CSS2Properties::setPadding
void setPadding(const DOM::DOMString &)
see padding
Definition: css_extensions.cpp:1527
DOM::CSS2Cursor::predefinedCursor
DOM::DOMString predefinedCursor() const
This identifier represents a generic cursor name or an empty string.
Definition: css_extensions.cpp:373
DOM::CSS2Properties::width
DOM::DOMString width() const
See the width property definition in CSS2.
Definition: css_extensions.cpp:1961
DOM::CSS2Properties::voiceFamily
DOM::DOMString voiceFamily() const
See the voice-family property definition in CSS2.
Definition: css_extensions.cpp:1917
DOM::CSS2Properties::setTextIndent
void setTextIndent(const DOM::DOMString &)
see textIndent
Definition: css_extensions.cpp:1846
DOM::DOMString
This class implements the basic string we use in the DOM.
Definition: dom_string.h:43
DOM::CSS2CounterIncrement::setIdentifier
void setIdentifier(const DOM::DOMString &)
see identifier SYNTAX_ERR: Raised if the specified identifier has a syntax error and is unparsable...
Definition: css_extensions.cpp:262
DOM::CSS2Properties::CSS2Properties
CSS2Properties()
Definition: css_extensions.cpp:630
DOM::CSS2BackgroundPosition::verticalIdentifier
DOM::DOMString verticalIdentifier() const
If verticalType is CSS_IDENT or CSS_INHERIT , this attribute contains the string representation of th...
Definition: css_extensions.cpp:130
DOM::CSS2PageSize::setWidthSize
void setWidthSize(const unsigned short widthType, const float value)
This method is used to set the width position with a specified unit.
Definition: css_extensions.cpp:532
DOM::CSS2Properties::setBorderColor
void setBorderColor(const DOM::DOMString &)
see borderColor
Definition: css_extensions.cpp:757
DOM::CSS2Properties::color
DOM::DOMString color() const
See the color property definition in CSS2.
Definition: css_extensions.cpp:1015
dom_exception.h
DOM::CSS2Azimuth::behind
bool behind() const
behind indicates whether the behind identifier has been set.
Definition: css_extensions.cpp:64
DOM::CSS2Properties::borderBottom
DOM::DOMString borderBottom() const
See the border-bottom property definition in CSS2.
Definition: css_extensions.cpp:806
DOM::CSS2Azimuth
The CSS2Azimuth interface represents the azimuth CSS Level 2 property.
Definition: css_extensions.h:41
DOM::CSS2CounterIncrement
The CSS2CounterIncrement interface represents a imple value for the counter-increment CSS Level 2 pr...
Definition: css_extensions.h:447
DOM::CSS2BorderSpacing
The CSS2BorderSpacing interface represents the border-spacing CSS Level 2 property.
Definition: css_extensions.h:317
DOM::CSS2Properties::setFontFamily
void setFontFamily(const DOM::DOMString &)
see fontFamily
Definition: css_extensions.cpp:1175
DOM::CSS2Properties::cueBefore
DOM::DOMString cueBefore() const
See the cue-before property definition in CSS2.
Definition: css_extensions.cpp:1081
DOM::CSS2Properties::cue
DOM::DOMString cue() const
See the cue property definition in CSS2.
Definition: css_extensions.cpp:1059
DOM::CSS2Properties::borderCollapse
DOM::DOMString borderCollapse() const
See the border-collapse property definition in CSS2.
Definition: css_extensions.cpp:740
DOM::CSS2Properties::content
DOM::DOMString content() const
See the content property definition in CSS2.
Definition: css_extensions.cpp:1026
DOM::CSS2Properties::setMargin
void setMargin(const DOM::DOMString &)
see margin
Definition: css_extensions.cpp:1340
DOM::CSS2Azimuth::setIdentifier
void setIdentifier(const DOM::DOMString &identifier, const bool behind)
Setting the identifier for the azimuth property will unset any previously set angle value...
Definition: css_extensions.cpp:82
DOM::CSS2BackgroundPosition::setPositionIdentifier
void setPositionIdentifier(const DOM::DOMString &horizontalIdentifier, const DOM::DOMString &verticalIdentifier)
Sets the identifiers.
Definition: css_extensions.cpp:160
DOM::CSS2Properties::setRight
void setRight(const DOM::DOMString &)
see right
Definition: css_extensions.cpp:1725
DOM::CSS2Properties::setFontStyle
void setFontStyle(const DOM::DOMString &)
see fontStyle
Definition: css_extensions.cpp:1219
DOM::CSS2CounterIncrement::setIncrement
void setIncrement(const short)
see increment NO_MODIFICATION_ALLOWED_ERR: Raised if this identifier is readonly. ...
Definition: css_extensions.cpp:273
DOM::CSS2Properties::backgroundImage
DOM::DOMString backgroundImage() const
See the background-image property definition in CSS2.
Definition: css_extensions.cpp:696
DOM::CSS2Properties::setBorderBottomWidth
void setBorderBottomWidth(const DOM::DOMString &)
see borderBottomWidth
Definition: css_extensions.cpp:944
DOM::CSS2PageSize::getHeightSize
float getHeightSize(const float heightType)
This method is used to get the float value in a specified unit if the heightType represents a length...
Definition: css_extensions.cpp:526
DOM::CSS2Properties::orphans
DOM::DOMString orphans() const
See the orphans property definition in CSS2.
Definition: css_extensions.cpp:1455
DOM::CSS2CounterIncrement::operator=
CSS2CounterIncrement & operator=(const CSS2CounterIncrement &other)
Definition: css_extensions.cpp:246
DOM::CSS2Properties::setVolume
void setVolume(const DOM::DOMString &)
see volume
Definition: css_extensions.cpp:1934
DOM::CSS2Properties::setQuotes
void setQuotes(const DOM::DOMString &)
see quotes
Definition: css_extensions.cpp:1703
DOM::CSS2Properties::paddingLeft
DOM::DOMString paddingLeft() const
See the padding-left property definition in CSS2.
Definition: css_extensions.cpp:1565
DOM::CSS2Properties::borderLeftStyle
DOM::DOMString borderLeftStyle() const
See the border-left-style property definition in CSS2.
Definition: css_extensions.cpp:905
DOM::CSS2Properties::setAzimuth
void setAzimuth(const DOM::DOMString &)
see azimuth
Definition: css_extensions.cpp:658
DOM::CSS2Properties::borderLeftWidth
DOM::DOMString borderLeftWidth() const
See the border-left-width property definition in CSS2.
Definition: css_extensions.cpp:949
DOM::CSS2Properties::backgroundRepeat
DOM::DOMString backgroundRepeat() const
See the background-repeat property definition in CSS2.
Definition: css_extensions.cpp:718
DOM::CSS2FontFaceWidths::setUrange
void setUrange(const DOM::DOMString &)
see urange SYNTAX_ERR: Raised if the specified CSS string value has a syntax error and is unparsable...
Definition: css_extensions.cpp:466
DOM::CSS2Properties::setBorderStyle
void setBorderStyle(const DOM::DOMString &)
see borderStyle
Definition: css_extensions.cpp:779
DOM::CSS2Properties::setPaddingLeft
void setPaddingLeft(const DOM::DOMString &)
see paddingLeft
Definition: css_extensions.cpp:1571
DOM::CSS2Properties::markerOffset
DOM::DOMString markerOffset() const
See the marker-offset property definition in CSS2.
Definition: css_extensions.cpp:1389
DOM::CSS2Properties::setRichness
void setRichness(const DOM::DOMString &)
see richness
Definition: css_extensions.cpp:1714
DOM::CSS2Properties::setBackgroundColor
void setBackgroundColor(const DOM::DOMString &)
see backgroundColor
Definition: css_extensions.cpp:691
DOM::CSS2Properties::speakNumeral
DOM::DOMString speakNumeral() const
See the speak-numeral property definition in CSS2.
Definition: css_extensions.cpp:1763
DOM::CSS2Properties::pauseBefore
DOM::DOMString pauseBefore() const
See the pause-before property definition in CSS2.
Definition: css_extensions.cpp:1642
DOM::CSS2FontFaceWidths::numbers
CSSValueList numbers() const
A list of numbers representing the glyph widths.
Definition: css_extensions.cpp:471
DOM::CSS2BorderSpacing::getHorizontalSpacing
float getHorizontalSpacing(const float horizontalType)
This method is used to get the float value in a specified unit if the horizontalSpacing represents a ...
Definition: css_extensions.cpp:202
DOM::CSS2Properties::borderBottomStyle
DOM::DOMString borderBottomStyle() const
See the border-bottom-style property definition in CSS2.
Definition: css_extensions.cpp:894
DOM::CSS2Properties::outline
DOM::DOMString outline() const
See the outline property definition in CSS2.
Definition: css_extensions.cpp:1466
DOM::CSS2Properties::setPosition
void setPosition(const DOM::DOMString &)
see position
Definition: css_extensions.cpp:1692
DOM::CSS2PageSize
The CSS2Cursor interface represents the size CSS Level 2 descriptor.
Definition: css_extensions.h:739
DOM::CSS2FontFaceSrc::operator=
CSS2FontFaceSrc & operator=(const CSS2FontFaceSrc &other)
Definition: css_extensions.cpp:398
DOM::CSS2BackgroundPosition::horizontalIdentifier
DOM::DOMString horizontalIdentifier() const
If horizontalType is CSS_IDENT or CSS_INHERIT , this attribute contains the string representation of ...
Definition: css_extensions.cpp:124
DOM::CSS2Properties::setBorderTop
void setBorderTop(const DOM::DOMString &)
see borderTop
Definition: css_extensions.cpp:790
DOM::CSS2Properties::pitchRange
DOM::DOMString pitchRange() const
See the pitch-range property definition in CSS2.
Definition: css_extensions.cpp:1664
DOM::CSS2BackgroundPosition::setVerticalPosition
void setVerticalPosition(const unsigned short verticalType, const float value)
This method is used to set the vertical position with a specified unit.
Definition: css_extensions.cpp:154
DOM::CSS2Properties::listStylePosition
DOM::DOMString listStylePosition() const
See the list-style-position property definition in CSS2.
Definition: css_extensions.cpp:1312
DOM::CSS2Properties::setBorderWidth
void setBorderWidth(const DOM::DOMString &)
see borderWidth
Definition: css_extensions.cpp:966
DOM::CSS2BackgroundPosition::getVerticalPosition
float getVerticalPosition(const float verticalType)
This method is used to get the float value in a specified unit if the verticalPosition represents a l...
Definition: css_extensions.cpp:142
DOM::CSS2BorderSpacing::setHorizontalSpacing
void setHorizontalSpacing(const unsigned short horizontalType, const float value)
This method is used to set the horizontal spacing with a specified unit.
Definition: css_extensions.cpp:214
DOM::CSS2Properties::setPage
void setPage(const DOM::DOMString &)
see page
Definition: css_extensions.cpp:1582
DOM::CSS2Properties::backgroundColor
DOM::DOMString backgroundColor() const
See the background-color property definition in CSS2.
Definition: css_extensions.cpp:685
DOM::CSS2Properties::setBorderLeftColor
void setBorderLeftColor(const DOM::DOMString &)
see borderLeftColor
Definition: css_extensions.cpp:867
DOM::CSS2Properties::padding
DOM::DOMString padding() const
See the padding property definition in CSS2.
Definition: css_extensions.cpp:1521
DOM::CSS2Properties::listStyleImage
DOM::DOMString listStyleImage() const
See the list-style-image property definition in CSS2.
Definition: css_extensions.cpp:1301
DOM::CSS2Properties::borderTopWidth
DOM::DOMString borderTopWidth() const
See the border-top-width property definition in CSS2.
Definition: css_extensions.cpp:916
DOM::CSS2Properties::captionSide
DOM::DOMString captionSide() const
See the caption-side property definition in CSS2.
Definition: css_extensions.cpp:982
DOM::CSS2Properties::setBorderLeft
void setBorderLeft(const DOM::DOMString &)
see borderLeft
Definition: css_extensions.cpp:823
DOM::CSS2Cursor::setPredefinedCursor
void setPredefinedCursor(const DOM::DOMString &)
see predefinedCursor SYNTAX_ERR: Raised if the specified CSS string value has a syntax error and is u...
Definition: css_extensions.cpp:379
DOM::CSS2Properties::setWidows
void setWidows(const DOM::DOMString &)
see widows
Definition: css_extensions.cpp:1956
DOM::CSS2Cursor::cursorType
unsigned short cursorType() const
A code defining the type of the property.
Definition: css_extensions.cpp:354
DOM::CSS2Properties::listStyle
DOM::DOMString listStyle() const
See the list-style property definition in CSS2.
Definition: css_extensions.cpp:1290
DOM::CSS2Properties::pauseAfter
DOM::DOMString pauseAfter() const
See the pause-after property definition in CSS2.
Definition: css_extensions.cpp:1631
DOM::CSS2PlayDuring
The CSS2PlayDuring interface represents the play-during CSS Level 2 property.
Definition: css_extensions.h:888
DOM::CSS2Properties::borderLeftColor
DOM::DOMString borderLeftColor() const
See the border-left-color property definition in CSS2.
Definition: css_extensions.cpp:861
DOM::CSS2Properties::borderLeft
DOM::DOMString borderLeft() const
See the border-left property definition in CSS2.
Definition: css_extensions.cpp:817
DOM::CSS2Properties::setVisibility
void setVisibility(const DOM::DOMString &)
see visibility
Definition: css_extensions.cpp:1912
DOM::CSS2Properties::setSpeak
void setSpeak(const DOM::DOMString &)
see speak
Definition: css_extensions.cpp:1747
DOM::CSS2Properties::speakHeader
DOM::DOMString speakHeader() const
See the speak-header property definition in CSS2.
Definition: css_extensions.cpp:1752
DOM::CSS2Properties::setBorderTopStyle
void setBorderTopStyle(const DOM::DOMString &)
see borderTopStyle
Definition: css_extensions.cpp:878
DOM::CSS2Azimuth::setAngleValue
void setAngleValue(const unsigned short unitType, const float floatValue)
A method to set the angle value with a specified unit.
Definition: css_extensions.cpp:70
DOM::CSS2PlayDuring::setPlayDuringIdentifier
void setPlayDuringIdentifier(const DOM::DOMString &)
see playDuringIdentifier SYNTAX_ERR: Raised if the specified CSS string value has a syntax error and ...
Definition: css_extensions.cpp:586
DOM::CSS2Properties::setElevation
void setElevation(const DOM::DOMString &)
see elevation
Definition: css_extensions.cpp:1131
DOM::CSS2Properties::setDirection
void setDirection(const DOM::DOMString &)
see direction
Definition: css_extensions.cpp:1109
DOM::CSS2FontFaceSrc::setFontFaceName
void setFontFaceName(const DOM::DOMString &)
see fontFaceName SYNTAX_ERR: Raised if the specified CSS string value has a syntax error and is unpar...
Definition: css_extensions.cpp:431
DOM::CSS2Properties::cursor
DOM::DOMString cursor() const
See the cursor property definition in CSS2.
Definition: css_extensions.cpp:1092
DOM::CSS2PlayDuring::mix
bool mix() const
true if the sound should be mixed.
Definition: css_extensions.cpp:602
DOM::CSS2PlayDuring::~CSS2PlayDuring
~CSS2PlayDuring()
Definition: css_extensions.cpp:570
DOM::CSS2Properties::pageBreakBefore
DOM::DOMString pageBreakBefore() const
See the page-break-before property definition in CSS2.
Definition: css_extensions.cpp:1598
DOM::CSS2Properties::setEmptyCells
void setEmptyCells(const DOM::DOMString &)
see emptyCells
Definition: css_extensions.cpp:1142
DOM::CSS2Properties::borderRightWidth
DOM::DOMString borderRightWidth() const
See the border-right-width property definition in CSS2.
Definition: css_extensions.cpp:927
DOM::CSS2Properties::setFontWeight
void setFontWeight(const DOM::DOMString &)
see fontWeight
Definition: css_extensions.cpp:1241
DOM::CSS2PageSize::~CSS2PageSize
~CSS2PageSize()
Definition: css_extensions.cpp:498
DOM::CSS2PlayDuring::setMix
void setMix(const bool)
see mix NO_MODIFICATION_ALLOWED_ERR: Raised if this declaration is readonly.
Definition: css_extensions.cpp:608
DOM::CSS2Properties::listStyleType
DOM::DOMString listStyleType() const
See the list-style-type property definition in CSS2.
Definition: css_extensions.cpp:1323
DOM::CSS2Properties::setMinHeight
void setMinHeight(const DOM::DOMString &)
see minHeight
Definition: css_extensions.cpp:1439
DOM::CSS2Properties::setBorderRightColor
void setBorderRightColor(const DOM::DOMString &)
see borderRightColor
Definition: css_extensions.cpp:845
DOM::CSS2Properties::outlineWidth
DOM::DOMString outlineWidth() const
See the outline-width property definition in CSS2.
Definition: css_extensions.cpp:1499
DOM::CSS2Properties::fontStyle
DOM::DOMString fontStyle() const
See the font-style property definition in CSS2.
Definition: css_extensions.cpp:1213
DOM::CSS2Properties::setOutlineWidth
void setOutlineWidth(const DOM::DOMString &)
see outlineWidth
Definition: css_extensions.cpp:1505
DOM::CSS2Properties::marginRight
DOM::DOMString marginRight() const
See the margin-right property definition in CSS2.
Definition: css_extensions.cpp:1356
DOM::CSS2Properties::minHeight
DOM::DOMString minHeight() const
See the min-height property definition in CSS2.
Definition: css_extensions.cpp:1433
DOM::CSS2Properties::setMarginLeft
void setMarginLeft(const DOM::DOMString &)
see marginLeft
Definition: css_extensions.cpp:1384
DOM::CSS2Properties::setBottom
void setBottom(const DOM::DOMString &)
see bottom
Definition: css_extensions.cpp:977
DOM::CSS2FontFaceWidths::urange
DOM::DOMString urange() const
The range for the characters.
Definition: css_extensions.cpp:460
DOM::CSS2Properties::background
DOM::DOMString background() const
See the background property definition in CSS2.
Definition: css_extensions.cpp:663
DOM::CSS2Azimuth::getAngleValue
float getAngleValue(const unsigned short unitType)
Used to retrieved the float value of the azimuth property.
Definition: css_extensions.cpp:76
DOM::CSSValue::operator=
CSSValue & operator=(const CSSValue &other)
Definition: css_value.cpp:156
DOM::CSS2Properties::fontFamily
DOM::DOMString fontFamily() const
See the font-family property definition in CSS2.
Definition: css_extensions.cpp:1169
DOM::CSS2BorderSpacing::setVerticalSpacing
void setVerticalSpacing(const unsigned short verticalType, const float value)
This method is used to set the vertical spacing with a specified unit.
Definition: css_extensions.cpp:220
DOM::CSS2Properties::speechRate
DOM::DOMString speechRate() const
See the speech-rate property definition in CSS2.
Definition: css_extensions.cpp:1785
DOM::CSS2Properties::widows
DOM::DOMString widows() const
See the widows property definition in CSS2.
Definition: css_extensions.cpp:1950
DOM::CSS2Azimuth::operator=
CSS2Azimuth & operator=(const CSS2Azimuth &other)
Definition: css_extensions.cpp:42
DOM::CSS2Properties::setSpeakNumeral
void setSpeakNumeral(const DOM::DOMString &)
see speakNumeral
Definition: css_extensions.cpp:1769
DOM::CSS2Properties::borderRightStyle
DOM::DOMString borderRightStyle() const
See the border-right-style property definition in CSS2.
Definition: css_extensions.cpp:883
DOM::CSS2Properties::setPauseAfter
void setPauseAfter(const DOM::DOMString &)
see pauseAfter
Definition: css_extensions.cpp:1637
DOM::CSS2TextShadow
The CSS2TextShadow interface represents a simple value for the text-shadow CSS Level 2 property...
Definition: css_extensions.h:2658
DOM::CSS2Properties::setListStyleType
void setListStyleType(const DOM::DOMString &)
see listStyleType
Definition: css_extensions.cpp:1329
DOM::CSS2Properties::setCueBefore
void setCueBefore(const DOM::DOMString &)
see cueBefore
Definition: css_extensions.cpp:1087
DOM::CSS2Properties::setOrphans
void setOrphans(const DOM::DOMString &)
see orphans
Definition: css_extensions.cpp:1461
DOM::CSS2Properties::setFont
void setFont(const DOM::DOMString &)
see font
Definition: css_extensions.cpp:1164
DOM::CSS2Properties::setDisplay
void setDisplay(const DOM::DOMString &)
see display
Definition: css_extensions.cpp:1120
DOM::CSS2Properties::marks
DOM::DOMString marks() const
See the marks property definition in CSS2.
Definition: css_extensions.cpp:1400
DOM::CSS2Properties::borderTop
DOM::DOMString borderTop() const
See the border-top property definition in CSS2.
Definition: css_extensions.cpp:784
DOM::CSS2Properties::setLineHeight
void setLineHeight(const DOM::DOMString &)
see lineHeight
Definition: css_extensions.cpp:1285
DOM::CSS2PlayDuring::repeat
bool repeat() const
true if the sound should be repeated.
Definition: css_extensions.cpp:615
DOM::CSSValue::impl
CSSValueImpl * impl
Definition: css_value.h:303
DOM::CSS2Cursor::~CSS2Cursor
~CSS2Cursor()
Definition: css_extensions.cpp:350
DOM::CSS2PageSize::setHeightSize
void setHeightSize(const unsigned short heightType, const float value)
This method is used to set the height position with a specified unit.
Definition: css_extensions.cpp:538
DOM::CSS2Properties::display
DOM::DOMString display() const
See the display property definition in CSS2.
Definition: css_extensions.cpp:1114
DOM::CSS2Properties::setBackgroundAttachment
void setBackgroundAttachment(const DOM::DOMString &)
see backgroundAttachment
Definition: css_extensions.cpp:680
DOM::CSS2Properties::setTop
void setTop(const DOM::DOMString &)
see top
Definition: css_extensions.cpp:1879
DOM::CSS2Properties::setColor
void setColor(const DOM::DOMString &)
see color
Definition: css_extensions.cpp:1021
DOM::CSS2Properties::marginLeft
DOM::DOMString marginLeft() const
See the margin-left property definition in CSS2.
Definition: css_extensions.cpp:1378
DOM::CSS2FontFaceWidths::~CSS2FontFaceWidths
~CSS2FontFaceWidths()
Definition: css_extensions.cpp:456
DOM::CSS2BackgroundPosition::verticalType
unsigned short verticalType() const
A code defining the type of the horizontal value.
Definition: css_extensions.cpp:118
DOM::CSS2Properties::setBorderBottomColor
void setBorderBottomColor(const DOM::DOMString &)
see borderBottomColor
Definition: css_extensions.cpp:856
DOM::CSS2BorderSpacing::setInherit
void setInherit()
Set this property as inherit.
Definition: css_extensions.cpp:226
DOM::CSS2Properties::borderRight
DOM::DOMString borderRight() const
See the border-right property definition in CSS2.
Definition: css_extensions.cpp:795
DOM::CSS2Properties::clear
DOM::DOMString clear() const
See the clear property definition in CSS2.
Definition: css_extensions.cpp:993
DOM::CSS2Properties::border
DOM::DOMString border() const
See the border property definition in CSS2.
Definition: css_extensions.cpp:729
DOM::CSS2Properties::borderWidth
DOM::DOMString borderWidth() const
See the border-width property definition in CSS2.
Definition: css_extensions.cpp:960
DOM::CSS2Properties::setBorderRightWidth
void setBorderRightWidth(const DOM::DOMString &)
see borderRightWidth
Definition: css_extensions.cpp:933
DOM::CSS2TextShadow::horizontal
CSSValue horizontal() const
The horizontal position of the text shadow.
Definition: css_extensions.cpp:2024
DOM::CSS2PlayDuring::playDuringIdentifier
DOM::DOMString playDuringIdentifier() const
One of "inherit" , "auto" , "none" or the empty string if the playDuringType is CSS_UNKNOWN ...
Definition: css_extensions.cpp:580
DOM::CSS2PageSize::heightType
unsigned short heightType() const
A code defining the type of the height of the page.
Definition: css_extensions.cpp:508
DOM::CSS2Properties::pageBreakInside
DOM::DOMString pageBreakInside() const
See the page-break-inside property definition in CSS2.
Definition: css_extensions.cpp:1609
DOM::CSS2TextShadow::CSS2TextShadow
CSS2TextShadow()
Definition: css_extensions.cpp:1996
DOM::CSS2Properties::left
DOM::DOMString left() const
See the left property definition in CSS2.
Definition: css_extensions.cpp:1257
DOM::CSS2Cursor
The CSS2Cursor interface represents the cursor CSS Level 2 property.
Definition: css_extensions.h:559
DOM::CSS2Properties::operator=
CSS2Properties & operator=(const CSS2Properties &other)
Definition: css_extensions.cpp:642
DOM::CSS2TextShadow::~CSS2TextShadow
~CSS2TextShadow()
Definition: css_extensions.cpp:2014
DOM::CSS2Properties::maxHeight
DOM::DOMString maxHeight() const
See the max-height property definition in CSS2.
Definition: css_extensions.cpp:1411
DOM::CSS2Properties::setOutline
void setOutline(const DOM::DOMString &)
see outline
Definition: css_extensions.cpp:1472
DOM::CSS2PageSize::widthType
unsigned short widthType() const
A code defining the type of the width of the page.
Definition: css_extensions.cpp:502
DOM::CSS2Properties::~CSS2Properties
~CSS2Properties()
Definition: css_extensions.cpp:648
DOM::CSSValue
The CSSValue interface represents a simple or a complexe value.
Definition: css_value.h:240
DOM::CSS2Properties::counterReset
DOM::DOMString counterReset() const
See the counter-reset property definition in CSS2.
Definition: css_extensions.cpp:1048
DOM::CSS2Properties::setVerticalAlign
void setVerticalAlign(const DOM::DOMString &)
see verticalAlign
Definition: css_extensions.cpp:1901
DOM::CSS2BackgroundPosition
The CSS2BackgroundPosition interface represents the background-position CSS Level 2 property...
Definition: css_extensions.h:145
DOM::CSS2Properties::top
DOM::DOMString top() const
See the top property definition in CSS2.
Definition: css_extensions.cpp:1873
DOM::CSS2Properties::backgroundPosition
DOM::DOMString backgroundPosition() const
See the background-position property definition in CSS2.
Definition: css_extensions.cpp:707
DOM::CSS2Properties::setTextAlign
void setTextAlign(const DOM::DOMString &)
see textAlign
Definition: css_extensions.cpp:1824
DOM::CSS2Properties::setWhiteSpace
void setWhiteSpace(const DOM::DOMString &)
see whiteSpace
Definition: css_extensions.cpp:1945
DOM::CSS2TextShadow::operator=
CSS2TextShadow & operator=(const CSS2TextShadow &other)
Definition: css_extensions.cpp:2008
DOM::CSS2Properties::setMarginRight
void setMarginRight(const DOM::DOMString &)
see marginRight
Definition: css_extensions.cpp:1362
DOM::CSS2Properties::setSize
void setSize(const DOM::DOMString &)
see size
Definition: css_extensions.cpp:1736
DOM::CSS2Properties::verticalAlign
DOM::DOMString verticalAlign() const
See the vertical-align property definition in CSS2.
Definition: css_extensions.cpp:1895
DOM::CSS2PlayDuring::setRepeat
void setRepeat(const bool)
see repeat NO_MODIFICATION_ALLOWED_ERR: Raised if this declaration is readonly.
Definition: css_extensions.cpp:621
DOM::CSS2CounterReset::CSS2CounterReset
CSS2CounterReset()
Definition: css_extensions.cpp:283
DOM::CSS2Properties::setListStyle
void setListStyle(const DOM::DOMString &)
see listStyle
Definition: css_extensions.cpp:1296
DOM::CSS2BorderSpacing::horizontalType
unsigned short horizontalType() const
The A code defining the type of the value as defined in CSSValue .
Definition: css_extensions.cpp:190
DOM::CSS2Properties::cueAfter
DOM::DOMString cueAfter() const
See the cue-after property definition in CSS2.
Definition: css_extensions.cpp:1070
DOM::CSS2CounterReset::~CSS2CounterReset
~CSS2CounterReset()
Definition: css_extensions.cpp:301
DOM::CSS2PageSize::getWidth
float getWidth(const float widthType)
This method is used to get the float value in a specified unit if the widthType represents a length...
Definition: css_extensions.cpp:520
css_extensions.h
DOM::CSS2Properties::setVoiceFamily
void setVoiceFamily(const DOM::DOMString &)
see voiceFamily
Definition: css_extensions.cpp:1923
DOM::CSS2FontFaceSrc::~CSS2FontFaceSrc
~CSS2FontFaceSrc()
Definition: css_extensions.cpp:404
DOM::CSS2Properties::setCounterReset
void setCounterReset(const DOM::DOMString &)
see counterReset
Definition: css_extensions.cpp:1054
DOM::CSS2Properties::wordSpacing
DOM::DOMString wordSpacing() const
See the word-spacing property definition in CSS2.
Definition: css_extensions.cpp:1972
DOM::CSS2Properties::margin
DOM::DOMString margin() const
See the margin property definition in CSS2.
Definition: css_extensions.cpp:1334
DOM::CSS2Properties::borderBottomWidth
DOM::DOMString borderBottomWidth() const
See the border-bottom-width property definition in CSS2.
Definition: css_extensions.cpp:938
DOM::CSS2Properties::setMinWidth
void setMinWidth(const DOM::DOMString &)
see minWidth
Definition: css_extensions.cpp:1450
This file is part of the KDE documentation.
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 22:51:20 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.

KHTML

Skip menu "KHTML"
  • Main Page
  • Namespace List
  • Namespace Members
  • Alphabetical List
  • Class List
  • Class Hierarchy
  • Class Members
  • File List
  • File Members
  • Related Pages

kdelibs API Reference

Skip menu "kdelibs API Reference"
  • DNSSD
  • Interfaces
  •   KHexEdit
  •   KMediaPlayer
  •   KSpeech
  •   KTextEditor
  • kconf_update
  • KDE3Support
  •   KUnitTest
  • KDECore
  • KDED
  • KDEsu
  • KDEUI
  • KDEWebKit
  • KDocTools
  • KFile
  • KHTML
  • KImgIO
  • KInit
  • kio
  • KIOSlave
  • KJS
  •   KJS-API
  • kjsembed
  •   WTF
  • KNewStuff
  • KParts
  • KPty
  • Kross
  • KUnitConversion
  • KUtils
  • Nepomuk
  • Nepomuk-Core
  • Nepomuk
  • Plasma
  • Solid
  • Sonnet
  • ThreadWeaver

Search



Report problems with this website to our bug tracking system.
Contact the specific authors with questions and comments about the page contents.

KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal