html_blockimpl.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef HTML_BLOCKIMPL_H
00027 #define HTML_BLOCKIMPL_H
00028
00029 #include "html_elementimpl.h"
00030 #include "dtd.h"
00031
00032 namespace DOM {
00033
00034
00035
00036 class HTMLDivElementImpl : public HTMLGenericElementImpl
00037 {
00038 public:
00039 HTMLDivElementImpl(DocumentPtr *doc, ushort _tagid)
00040 : HTMLGenericElementImpl(doc, _tagid) {}
00041
00042 virtual void parseAttribute(AttributeImpl *token);
00043 };
00044
00045
00046
00047 class HTMLHRElementImpl : public HTMLElementImpl
00048 {
00049 public:
00050 HTMLHRElementImpl(DocumentPtr *doc)
00051 : HTMLElementImpl(doc) {}
00052
00053 virtual NodeImpl::Id id() const;
00054 virtual void parseAttribute(AttributeImpl *);
00055 virtual void attach();
00056 };
00057
00058
00059
00060 class HTMLPreElementImpl : public HTMLGenericElementImpl
00061 {
00062 public:
00063 HTMLPreElementImpl(DocumentPtr *doc, ushort _tagid)
00064 : HTMLGenericElementImpl(doc, _tagid) {}
00065
00066 long width() const;
00067 void setWidth( long w );
00068 };
00069
00070 }
00071 #endif
This file is part of the documentation for kdelibs Version 3.1.4.