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

KHTML

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