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_TEXT_AREA__
00027 #define _MPCL_TEXT_HTML_TEXT_AREA__
00028
00029 #include "tag.hh"
00030
00031
00033 namespace mpcl
00034 {
00035
00037 namespace text
00038 {
00039
00041 namespace html
00042 {
00043
00045 class TTextArea;
00046
00048 typedef
00049 TSmartPointer<TTextArea>
00050 QTTextArea;
00051
00053 typedef
00054 TSmartPointer<const TTextArea>
00055 QKTTextArea;
00056
00058 class TTextArea : public TTag
00059 {
00060
00061 public:
00062
00063 TTextArea ( const char* pkcIDENTIFIER ,
00064 size_t zCOLS ,
00065 size_t zROWS ,
00066 const char* pkcVALUE = "" ) :
00067 TTag (pkcIDENTIFIER, pkcVALUE)
00068 {
00069 tAttributeMap ["class-identifier"] = "textarea";
00070 tAttributeMap.bind ("cols", Format ("%u", zCOLS));
00071 tAttributeMap.bind ("rows", Format ("%u", zROWS));
00072 gIsQualified = true;
00073 }
00074
00075 };
00076
00077 }
00078
00079 }
00080
00081 }
00082
00083
00084 #endif // not _MPCL_TEXT_HTML_TEXT_AREA__