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 #include <mpcl/text/html/table_cell.hh>
00027 #include <mpcl/text/string.hh>
00028
00029
00030
00031
00032
00033
00034 mpcl::text::html::TTableCell::
00035 TTableCell ( const QTTag& rkqtSOURCE_TAG ,
00036 const char* pkcTYPE ,
00037 const char* pkcALIGN ,
00038 const char* pkcVALIGN ) :
00039 mpcl::text::html::TContainer()
00040 {
00041
00042 tAttributeMap ["class-identifier"] = "table-cell-";
00043 tAttributeMap ["class-identifier"] += TString (pkcTYPE).lowercase();
00044 tAttributeMap.bind ("rowspan", "");
00045 tAttributeMap.bind ("colspan", "");
00046 tAttributeMap.bind ("nowrap", "false");
00047 tAttributeMap.bind ("halign", pkcALIGN);
00048 tAttributeMap.bind ("valign", pkcVALIGN);
00049 tAttributeMap.bind ("width", "");
00050 tAttributeMap.bind ("height", "");
00051 tAttributeMap.bind ("bgcolor", "");
00052 insert (rkqtSOURCE_TAG);
00053
00054 }
00055
00056
00057 mpcl::text::html::TTableCell::
00058 TTableCell ( const char* pkcTYPE ,
00059 const char* pkcALIGN ,
00060 const char* pkcVALIGN ) :
00061 mpcl::text::html::TContainer()
00062 {
00063
00064 tAttributeMap ["class-identifier"] = "table-cell-";
00065 tAttributeMap ["class-identifier"] += TString (pkcTYPE).lowercase();
00066 tAttributeMap.bind ("rowspan", "");
00067 tAttributeMap.bind ("colspan", "");
00068 tAttributeMap.bind ("nowrap", "false");
00069 tAttributeMap.bind ("halign", pkcALIGN);
00070 tAttributeMap.bind ("valign", pkcVALIGN);
00071 tAttributeMap.bind ("width", "");
00072 tAttributeMap.bind ("height", "");
00073 tAttributeMap.bind ("bgcolor", "");
00074
00075 }