• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • tdehtml
 

tdehtml

  • tdehtml
  • dom
html_object.cpp
1 
23 #include "dom/dom_doc.h"
24 #include "dom/html_object.h"
25 #include "html/html_objectimpl.h"
26 #include "misc/htmlhashes.h"
27 
28 HTMLAppletElement::HTMLAppletElement() : HTMLElement()
29 {
30 }
31 
32 HTMLAppletElement::HTMLAppletElement(const HTMLAppletElement &other)
33  : HTMLElement(other)
34 {
35 }
36 
37 HTMLAppletElement::HTMLAppletElement(HTMLAppletElementImpl *impl)
38  : HTMLElement(impl)
39 {
40 }
41 
42 HTMLAppletElement &HTMLAppletElement::operator = (const Node &other)
43 {
44  assignOther( other, ID_APPLET );
45  return *this;
46 }
47 
48 HTMLAppletElement &HTMLAppletElement::operator = (const HTMLAppletElement &other)
49 {
50  HTMLElement::operator = (other);
51  return *this;
52 }
53 
54 HTMLAppletElement::~HTMLAppletElement()
55 {
56 }
57 
58 DOMString HTMLAppletElement::align() const
59 {
60  if(!impl) return DOMString();
61  return ((ElementImpl *)impl)->getAttribute(ATTR_ALIGN);
62 }
63 
64 void HTMLAppletElement::setAlign( const DOMString &value )
65 {
66  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_ALIGN, value);
67 }
68 
69 DOMString HTMLAppletElement::alt() const
70 {
71  if(!impl) return DOMString();
72  return ((ElementImpl *)impl)->getAttribute(ATTR_ALT);
73 }
74 
75 void HTMLAppletElement::setAlt( const DOMString &value )
76 {
77  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_ALT, value);
78 }
79 
80 DOMString HTMLAppletElement::archive() const
81 {
82  if(!impl) return DOMString();
83  return ((ElementImpl *)impl)->getAttribute(ATTR_ARCHIVE);
84 }
85 
86 void HTMLAppletElement::setArchive( const DOMString &value )
87 {
88  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_ARCHIVE, value);
89 }
90 
91 DOMString HTMLAppletElement::code() const
92 {
93  if(!impl) return DOMString();
94  return ((ElementImpl *)impl)->getAttribute(ATTR_CODE);
95 }
96 
97 void HTMLAppletElement::setCode( const DOMString &value )
98 {
99  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_CODE, value);
100 }
101 
102 DOMString HTMLAppletElement::codeBase() const
103 {
104  if(!impl) return DOMString();
105  return ((ElementImpl *)impl)->getAttribute(ATTR_CODEBASE);
106 }
107 
108 void HTMLAppletElement::setCodeBase( const DOMString &value )
109 {
110  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_CODEBASE, value);
111 }
112 
113 DOMString HTMLAppletElement::height() const
114 {
115  if(!impl) return DOMString();
116  return ((ElementImpl *)impl)->getAttribute(ATTR_HEIGHT);
117 }
118 
119 void HTMLAppletElement::setHeight( const DOMString &value )
120 {
121  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_HEIGHT, value);
122 }
123 
124 DOMString HTMLAppletElement::hspace() const
125 {
126  if(!impl) return DOMString();
127  return ((ElementImpl *)impl)->getAttribute(ATTR_HSPACE);
128 }
129 
130 void HTMLAppletElement::setHspace( const DOMString &value )
131 {
132  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_HSPACE, value);
133 }
134 
135 long HTMLAppletElement::getHspace() const
136 {
137  if(!impl) return 0;
138  return ((ElementImpl *)impl)->getAttribute(ATTR_HSPACE).toInt();
139 }
140 
141 void HTMLAppletElement::setHspace( long value )
142 {
143  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_HSPACE, TQString::number(value));
144 }
145 
146 DOMString HTMLAppletElement::name() const
147 {
148  if(!impl) return DOMString();
149  return ((ElementImpl *)impl)->getAttribute(ATTR_NAME);
150 }
151 
152 void HTMLAppletElement::setName( const DOMString &value )
153 {
154  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_NAME, value);
155 }
156 
157 DOMString HTMLAppletElement::object() const
158 {
159  if(!impl) return DOMString();
160  return ((ElementImpl *)impl)->getAttribute(ATTR_OBJECT);
161 }
162 
163 void HTMLAppletElement::setObject( const DOMString &value )
164 {
165  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_OBJECT, value);
166 }
167 
168 DOMString HTMLAppletElement::vspace() const
169 {
170  if(!impl) return DOMString();
171  return ((ElementImpl *)impl)->getAttribute(ATTR_VSPACE);
172 }
173 
174 void HTMLAppletElement::setVspace( const DOMString &value )
175 {
176  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_VSPACE, value);
177 }
178 
179 long HTMLAppletElement::getVspace() const
180 {
181  if(!impl) return 0;
182  return ((ElementImpl *)impl)->getAttribute(ATTR_VSPACE).toInt();
183 }
184 
185 void HTMLAppletElement::setVspace( long value )
186 {
187  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_VSPACE, TQString::number(value));
188 }
189 
190 
191 DOMString HTMLAppletElement::width() const
192 {
193  if(!impl) return DOMString();
194  return ((ElementImpl *)impl)->getAttribute(ATTR_WIDTH);
195 }
196 
197 void HTMLAppletElement::setWidth( const DOMString &value )
198 {
199  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_WIDTH, value);
200 }
201 
202 // --------------------------------------------------------------------------
203 
204 HTMLObjectElement::HTMLObjectElement() : HTMLElement()
205 {
206 }
207 
208 HTMLObjectElement::HTMLObjectElement(const HTMLObjectElement &other) : HTMLElement(other)
209 {
210 }
211 
212 HTMLObjectElement::HTMLObjectElement(HTMLObjectElementImpl *impl) : HTMLElement(impl)
213 {
214 }
215 
216 HTMLObjectElement &HTMLObjectElement::operator = (const Node &other)
217 {
218  assignOther( other, ID_OBJECT );
219  return *this;
220 }
221 
222 HTMLObjectElement &HTMLObjectElement::operator = (const HTMLObjectElement &other)
223 {
224  HTMLElement::operator = (other);
225  return *this;
226 }
227 
228 HTMLObjectElement::~HTMLObjectElement()
229 {
230 }
231 
232 HTMLFormElement HTMLObjectElement::form() const
233 {
234  if(!impl) return 0;
235  return ((HTMLObjectElementImpl *)impl)->form();
236 }
237 
238 DOMString HTMLObjectElement::code() const
239 {
240  if(!impl) return DOMString();
241  return ((ElementImpl *)impl)->getAttribute(ATTR_CODE);
242 }
243 
244 void HTMLObjectElement::setCode( const DOMString &value )
245 {
246  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_CODE, value);
247 }
248 
249 DOMString HTMLObjectElement::align() const
250 {
251  if(!impl) return DOMString();
252  return ((ElementImpl *)impl)->getAttribute(ATTR_ALIGN);
253 }
254 
255 void HTMLObjectElement::setAlign( const DOMString &value )
256 {
257  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_ALIGN, value);
258 }
259 
260 DOMString HTMLObjectElement::archive() const
261 {
262  if(!impl) return DOMString();
263  return ((ElementImpl *)impl)->getAttribute(ATTR_ARCHIVE);
264 }
265 
266 void HTMLObjectElement::setArchive( const DOMString &value )
267 {
268  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_ARCHIVE, value);
269 }
270 
271 DOMString HTMLObjectElement::border() const
272 {
273  if(!impl) return DOMString();
274  return ((ElementImpl *)impl)->getAttribute(ATTR_BORDER);
275 }
276 
277 void HTMLObjectElement::setBorder( const DOMString &value )
278 {
279  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_BORDER, value);
280 }
281 
282 DOMString HTMLObjectElement::codeBase() const
283 {
284  if(!impl) return DOMString();
285  return ((ElementImpl *)impl)->getAttribute(ATTR_CODEBASE);
286 }
287 
288 void HTMLObjectElement::setCodeBase( const DOMString &value )
289 {
290  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_CODEBASE, value);
291 }
292 
293 DOMString HTMLObjectElement::codeType() const
294 {
295  if(!impl) return DOMString();
296  return ((ElementImpl *)impl)->getAttribute(ATTR_CODETYPE);
297 }
298 
299 void HTMLObjectElement::setCodeType( const DOMString &value )
300 {
301  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_CODETYPE, value);
302 }
303 
304 DOMString HTMLObjectElement::data() const
305 {
306  if(!impl) return DOMString();
307  return ((ElementImpl *)impl)->getAttribute(ATTR_DATA);
308 }
309 
310 void HTMLObjectElement::setData( const DOMString &value )
311 {
312  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_DATA, value);
313 }
314 
315 bool HTMLObjectElement::declare() const
316 {
317  if(!impl) return 0;
318  return !((ElementImpl *)impl)->getAttribute(ATTR_DECLARE).isNull();
319 }
320 
321 void HTMLObjectElement::setDeclare( bool _declare )
322 {
323  if(impl)
324  {
325  DOMString str;
326  if( _declare )
327  str = "";
328  ((ElementImpl *)impl)->setAttribute(ATTR_DECLARE, str);
329  }
330 }
331 
332 DOMString HTMLObjectElement::height() const
333 {
334  if(!impl) return DOMString();
335  return ((ElementImpl *)impl)->getAttribute(ATTR_HEIGHT);
336 }
337 
338 void HTMLObjectElement::setHeight( const DOMString &value )
339 {
340  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_HEIGHT, value);
341 }
342 
343 DOMString HTMLObjectElement::hspace() const
344 {
345  if(!impl) return DOMString();
346  return ((ElementImpl *)impl)->getAttribute(ATTR_HSPACE);
347 }
348 
349 void HTMLObjectElement::setHspace( const DOMString &value )
350 {
351  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_HSPACE, value);
352 }
353 
354 long HTMLObjectElement::getHspace() const
355 {
356  if(!impl) return 0;
357  return ((ElementImpl *)impl)->getAttribute(ATTR_HSPACE).toInt();
358 }
359 
360 void HTMLObjectElement::setHspace( long value )
361 {
362  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_HSPACE, TQString::number(value));
363 }
364 
365 DOMString HTMLObjectElement::name() const
366 {
367  if(!impl) return DOMString();
368  return ((ElementImpl *)impl)->getAttribute(ATTR_NAME);
369 }
370 
371 void HTMLObjectElement::setName( const DOMString &value )
372 {
373  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_NAME, value);
374 }
375 
376 DOMString HTMLObjectElement::standby() const
377 {
378  if(!impl) return DOMString();
379  return ((ElementImpl *)impl)->getAttribute(ATTR_STANDBY);
380 }
381 
382 void HTMLObjectElement::setStandby( const DOMString &value )
383 {
384  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_STANDBY, value);
385 }
386 
387 long HTMLObjectElement::tabIndex() const
388 {
389  if(!impl) return 0;
390  return ((ElementImpl *)impl)->getAttribute(ATTR_TABINDEX).toInt();
391 }
392 
393 void HTMLObjectElement::setTabIndex( long _tabIndex )
394 {
395  if(impl) {
396  DOMString value(TQString::number(_tabIndex));
397  ((ElementImpl *)impl)->setAttribute(ATTR_TABINDEX,value);
398  }
399 }
400 
401 DOMString HTMLObjectElement::type() const
402 {
403  if(!impl) return DOMString();
404  return ((ElementImpl *)impl)->getAttribute(ATTR_TYPE);
405 }
406 
407 void HTMLObjectElement::setType( const DOMString &value )
408 {
409  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_TYPE, value);
410 }
411 
412 DOMString HTMLObjectElement::useMap() const
413 {
414  if(!impl) return DOMString();
415  return ((ElementImpl *)impl)->getAttribute(ATTR_USEMAP);
416 }
417 
418 void HTMLObjectElement::setUseMap( const DOMString &value )
419 {
420  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_USEMAP, value);
421 }
422 
423 DOMString HTMLObjectElement::vspace() const
424 {
425  if(!impl) return DOMString();
426  return ((ElementImpl *)impl)->getAttribute(ATTR_VSPACE);
427 }
428 
429 void HTMLObjectElement::setVspace( const DOMString &value )
430 {
431  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_VSPACE, value);
432 }
433 
434 long HTMLObjectElement::getVspace() const
435 {
436  if(!impl) return 0;
437  return ((ElementImpl *)impl)->getAttribute(ATTR_VSPACE).toInt();
438 }
439 
440 void HTMLObjectElement::setVspace( long value )
441 {
442  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_VSPACE, TQString::number(value));
443 }
444 
445 DOMString HTMLObjectElement::width() const
446 {
447  if(!impl) return DOMString();
448  return ((ElementImpl *)impl)->getAttribute(ATTR_WIDTH);
449 }
450 
451 void HTMLObjectElement::setWidth( const DOMString &value )
452 {
453  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_WIDTH, value);
454 }
455 
456 Document HTMLObjectElement::contentDocument() const
457 {
458  if (impl) return static_cast<HTMLObjectElementImpl*>(impl)->contentDocument();
459  return Document();
460 }
461 
462 // --------------------------------------------------------------------------
463 
464 HTMLParamElement::HTMLParamElement() : HTMLElement()
465 {
466 }
467 
468 HTMLParamElement::HTMLParamElement(const HTMLParamElement &other) : HTMLElement(other)
469 {
470 }
471 
472 HTMLParamElement::HTMLParamElement(HTMLParamElementImpl *impl) : HTMLElement(impl)
473 {
474 }
475 
476 HTMLParamElement &HTMLParamElement::operator = (const Node &other)
477 {
478  assignOther( other, ID_PARAM );
479  return *this;
480 }
481 
482 HTMLParamElement &HTMLParamElement::operator = (const HTMLParamElement &other)
483 {
484  HTMLElement::operator = (other);
485  return *this;
486 }
487 
488 HTMLParamElement::~HTMLParamElement()
489 {
490 }
491 
492 DOMString HTMLParamElement::name() const
493 {
494  if(!impl) return DOMString();
495  return ((ElementImpl *)impl)->getAttribute(ATTR_NAME);
496 }
497 
498 void HTMLParamElement::setName( const DOMString &value )
499 {
500  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_NAME, value);
501 }
502 
503 DOMString HTMLParamElement::type() const
504 {
505  if(!impl) return DOMString();
506  return ((ElementImpl *)impl)->getAttribute(ATTR_TYPE);
507 }
508 
509 void HTMLParamElement::setType( const DOMString &value )
510 {
511  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_TYPE, value);
512 }
513 
514 DOMString HTMLParamElement::value() const
515 {
516  if(!impl) return DOMString();
517  return ((ElementImpl *)impl)->getAttribute(ATTR_VALUE);
518 }
519 
520 void HTMLParamElement::setValue( const DOMString &value )
521 {
522  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_VALUE, value);
523 }
524 
525 DOMString HTMLParamElement::valueType() const
526 {
527  if(!impl) return DOMString();
528  return ((ElementImpl *)impl)->getAttribute(ATTR_VALUETYPE);
529 }
530 
531 void HTMLParamElement::setValueType( const DOMString &value )
532 {
533  if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_VALUETYPE, value);
534 }
535 
DOM::HTMLAppletElement::object
DOMString object() const
Serialized applet file.
Definition: html_object.cpp:157
DOM::HTMLAppletElement::archive
DOMString archive() const
Comma-separated archive list.
Definition: html_object.cpp:80
DOM::HTMLAppletElement::width
DOMString width() const
Override width.
Definition: html_object.cpp:191
DOM::HTMLObjectElement::setBorder
void setBorder(const DOMString &)
see border
Definition: html_object.cpp:277
DOM::HTMLParamElement::name
DOMString name() const
The name of a run-time parameter.
Definition: html_object.cpp:492
DOM::HTMLAppletElement::getHspace
long getHspace() const
Horizontal space, in pixels, to the left and right of this image, applet, or object.
Definition: html_object.cpp:135
DOM::HTMLObjectElement::form
HTMLFormElement form() const
Returns the FORM element containing this control.
Definition: html_object.cpp:232
DOM::HTMLAppletElement::hspace
DOMString hspace() const KDE_DEPRECATED
Definition: html_object.cpp:124
DOM::HTMLAppletElement::setCode
void setCode(const DOMString &)
see code
Definition: html_object.cpp:97
DOM::HTMLAppletElement::setHspace
void setHspace(long)
see hspace
DOM::HTMLObjectElement::setName
void setName(const DOMString &)
see name
Definition: html_object.cpp:371
DOM::HTMLObjectElement::getVspace
long getVspace() const
Vertical space, in pixels, above and below this image, applet, or object.
Definition: html_object.cpp:434
DOM::HTMLObjectElement::declare
bool declare() const
Declare (for future reference), but do not instantiate, this object.
Definition: html_object.cpp:315
DOM::HTMLObjectElement::setHspace
void setHspace(long)
see hspace
DOM::HTMLObjectElement::setArchive
void setArchive(const DOMString &)
see archive
Definition: html_object.cpp:266
DOM::HTMLParamElement::valueType
DOMString valueType() const
Information about the meaning of the value attribute value.
Definition: html_object.cpp:525
DOM::HTMLParamElement::setType
void setType(const DOMString &)
see type
Definition: html_object.cpp:509
DOM::HTMLObjectElement::setCode
void setCode(const DOMString &)
see code
Definition: html_object.cpp:244
DOM::HTMLFormElement
The FORM element encompasses behavior similar to a collection and an element.
Definition: html_form.h:206
DOM::HTMLAppletElement::setAlign
void setAlign(const DOMString &)
see align
Definition: html_object.cpp:64
DOM::HTMLParamElement::value
DOMString value() const
The value of a run-time parameter.
Definition: html_object.cpp:514
DOM::HTMLObjectElement::setVspace
void setVspace(long)
see vspace
DOM::HTMLObjectElement::setHeight
void setHeight(const DOMString &)
see height
Definition: html_object.cpp:338
DOM::HTMLObjectElement::contentDocument
Document contentDocument() const
Introduced in DOM Level 2.
Definition: html_object.cpp:456
DOM::HTMLObjectElement::border
DOMString border() const
Width of border around the object.
Definition: html_object.cpp:271
DOM::HTMLObjectElement::setDeclare
void setDeclare(bool)
see declare
Definition: html_object.cpp:321
DOM::HTMLAppletElement::code
DOMString code() const
Applet class file.
Definition: html_object.cpp:91
DOM::HTMLObjectElement::archive
DOMString archive() const
Space-separated list of archives.
Definition: html_object.cpp:260
DOM::HTMLObjectElement::codeBase
DOMString codeBase() const
Base URI for classid , data , and archive attributes.
Definition: html_object.cpp:282
DOM::HTMLParamElement::setValue
void setValue(const DOMString &)
see value
Definition: html_object.cpp:520
DOM::HTMLObjectElement::setData
void setData(const DOMString &)
see data
Definition: html_object.cpp:310
DOM::HTMLObjectElement::getHspace
long getHspace() const
Horizontal space, in pixels, to the left and right of this image, applet, or object.
Definition: html_object.cpp:354
DOM::HTMLObjectElement::setCodeType
void setCodeType(const DOMString &)
see codeType
Definition: html_object.cpp:299
DOM::HTMLAppletElement
An embedded Java applet.
Definition: html_object.h:50
DOM::HTMLObjectElement::vspace
DOMString vspace() const KDE_DEPRECATED
Definition: html_object.cpp:423
DOM::HTMLObjectElement::tabIndex
long tabIndex() const
Index that represents the element's position in the tabbing order.
Definition: html_object.cpp:387
DOM::HTMLObjectElement::align
DOMString align() const
Aligns this object (vertically or horizontally) with respect to its surrounding text.
Definition: html_object.cpp:249
DOM::HTMLAppletElement::setArchive
void setArchive(const DOMString &)
see archive
Definition: html_object.cpp:86
DOM::HTMLAppletElement::HTMLAppletElement
HTMLAppletElement()
This file is part of the DOM implementation for KDE.
Definition: html_object.cpp:28
DOM::DOMString
This class implements the basic string we use in the DOM.
Definition: dom_string.h:43
DOM::Document
The Document interface represents the entire HTML or XML document.
Definition: dom_doc.h:245
DOM::HTMLObjectElement::name
DOMString name() const
Form control or object name when submitted with a form.
Definition: html_object.cpp:365
DOM::HTMLObjectElement::type
DOMString type() const
Content type for data downloaded via data attribute.
Definition: html_object.cpp:401
DOM::HTMLObjectElement::hspace
DOMString hspace() const KDE_DEPRECATED
Definition: html_object.cpp:343
DOM::HTMLObjectElement::setUseMap
void setUseMap(const DOMString &)
see useMap
Definition: html_object.cpp:418
DOM::HTMLObjectElement::data
DOMString data() const
A URI specifying the location of the object's data.
Definition: html_object.cpp:304
DOM::HTMLAppletElement::height
DOMString height() const
Override height.
Definition: html_object.cpp:113
DOM::HTMLParamElement::type
DOMString type() const
Content type for the value attribute when valuetype has the value "ref".
Definition: html_object.cpp:503
DOM::HTMLAppletElement::setVspace
void setVspace(long)
see vspace
DOM::HTMLParamElement::setName
void setName(const DOMString &)
see name
Definition: html_object.cpp:498
DOM::HTMLObjectElement::setWidth
void setWidth(const DOMString &)
see width
Definition: html_object.cpp:451
DOM::HTMLObjectElement::setType
void setType(const DOMString &)
see type
Definition: html_object.cpp:407
DOM::HTMLAppletElement::codeBase
DOMString codeBase() const
Optional base URI for applet.
Definition: html_object.cpp:102
DOM::HTMLAppletElement::setObject
void setObject(const DOMString &)
see object
Definition: html_object.cpp:163
DOM::HTMLAppletElement::name
DOMString name() const
The name of the applet.
Definition: html_object.cpp:146
DOM::HTMLObjectElement::code
DOMString code() const
Applet class file.
Definition: html_object.cpp:238
DOM::HTMLObjectElement::setAlign
void setAlign(const DOMString &)
see align
Definition: html_object.cpp:255
DOM::HTMLParamElement::setValueType
void setValueType(const DOMString &)
see valueType
Definition: html_object.cpp:531
DOM::Element::form
Element form() const
TDEHTML extension to DOM This method returns the associated form element.
Definition: dom_element.cpp:338
DOM::HTMLObjectElement::setTabIndex
void setTabIndex(long)
see tabIndex
Definition: html_object.cpp:393
DOM::HTMLAppletElement::setAlt
void setAlt(const DOMString &)
see alt
Definition: html_object.cpp:75
DOM::HTMLAppletElement::setHeight
void setHeight(const DOMString &)
see height
Definition: html_object.cpp:119
DOM::HTMLAppletElement::align
DOMString align() const
Aligns this object (vertically or horizontally) with respect to its surrounding text.
Definition: html_object.cpp:58
DOM::HTMLObjectElement::setStandby
void setStandby(const DOMString &)
see standby
Definition: html_object.cpp:382
DOM::HTMLAppletElement::vspace
DOMString vspace() const KDE_DEPRECATED
Definition: html_object.cpp:168
DOM::HTMLObjectElement::codeType
DOMString codeType() const
Content type for data downloaded via classid attribute.
Definition: html_object.cpp:293
DOM::HTMLAppletElement::getVspace
long getVspace() const
Vertical space, in pixels, above and below this image, applet, or object.
Definition: html_object.cpp:179
DOM::HTMLObjectElement::standby
DOMString standby() const
Message to render while loading the object.
Definition: html_object.cpp:376
DOM::HTMLObjectElement::setCodeBase
void setCodeBase(const DOMString &)
see codeBase
Definition: html_object.cpp:288
DOM::HTMLObjectElement::height
DOMString height() const
Override height.
Definition: html_object.cpp:332
DOM::HTMLObjectElement::width
DOMString width() const
Override width.
Definition: html_object.cpp:445
DOM::HTMLAppletElement::setWidth
void setWidth(const DOMString &)
see width
Definition: html_object.cpp:197
DOM::HTMLObjectElement::useMap
DOMString useMap() const
Use client-side image map.
Definition: html_object.cpp:412
DOM::HTMLAppletElement::setName
void setName(const DOMString &)
see name
Definition: html_object.cpp:152
DOM::HTMLElement
All HTML element interfaces derive from this class.
Definition: html_element.h:69
DOM::HTMLAppletElement::setCodeBase
void setCodeBase(const DOMString &value)
see codeBase
Definition: html_object.cpp:108
DOM::HTMLAppletElement::alt
DOMString alt() const
Alternate text for user agents not rendering the normal content of this element.
Definition: html_object.cpp:69

tdehtml

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

tdehtml

Skip menu "tdehtml"
  • arts
  • dcop
  • dnssd
  • interfaces
  •   kspeech
  •     interface
  •     library
  •   tdetexteditor
  • kate
  • kded
  • kdoctools
  • kimgio
  • kjs
  • libtdemid
  • libtdescreensaver
  •     tdecore
  • tdeabc
  • tdecmshell
  • tdecore
  • tdefx
  • tdehtml
  • tdeinit
  • tdeio
  •   bookmarks
  •   httpfilter
  •   kpasswdserver
  •   kssl
  • tdeioslave
  •   http
  •   tdefile
  •   tdeio
  •   tdeioexec
  • tdemdi
  •   tdemdi
  • tdenewstuff
  • tdeparts
  • tdeprint
  • tderandr
  • tderesources
  • tdespell2
  • tdesu
  • tdeui
  • tdeunittest
  • tdeutils
  • tdewallet
Generated for tdehtml by doxygen 1.8.8
This website is maintained by Timothy Pearson.