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 _MPCL_TEXT_HTML_FRAME__
00027 #define _MPCL_TEXT_HTML_FRAME__
00028
00029 #include "tag.hh"
00030
00031
00033 namespace mpcl
00034 {
00035
00037 namespace text
00038 {
00039
00041 namespace html
00042 {
00043
00045 class TFrame;
00046
00048 typedef
00049 TSmartPointer<TFrame>
00050 QTFrame;
00051
00053 typedef
00054 TSmartPointer<const TFrame>
00055 QKTFrame;
00056
00058 class TFrame : public TTag
00059 {
00060
00061 public:
00062
00063
00064
00065
00066
00067 TFrame ( const char* pkcIDENTIFIER ,
00068 const char* pkcSRC ,
00069 const char* pkcMARGINWIDTH ,
00070 const char* pkcMARGINHEIGHT ,
00071 bool gNORESIZE ,
00072 const char* pkcSCROLLING = "auto" ) :
00073 TTag (pkcIDENTIFIER)
00074 {
00075 tAttributeMap ["class-identifier"] = "frame";
00076 tAttributeMap.bind ("frameborder", "1");
00077 tAttributeMap.bind ("marginwidth", pkcMARGINWIDTH);
00078 tAttributeMap.bind ("marginheight", pkcMARGINHEIGHT);
00079 tAttributeMap.bind ("noresize", BoolToString (gNORESIZE));
00080 tAttributeMap.bind ("scrolling", pkcSCROLLING);
00081 tAttributeMap.bind ("src", pkcSRC);
00082 }
00083
00084 };
00085
00086 }
00087
00088 }
00089
00090 }
00091
00092
00093 #endif // not _MPCL_TEXT_HTML_FRAME__