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

KHTML

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

Skip menu "kdelibs-4.14.38 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
  •   WTF
  • kjsembed
  • KNewStuff
  • KParts
  • KPty
  • Kross
  • KUnitConversion
  • KUtils
  • Nepomuk
  • Plasma
  • Solid
  • Sonnet
  • ThreadWeaver
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