Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members  

table_cell.cc

00001 /*
00002 *  Name:      table_cell.cc
00003 *  Author:    Rafael Jesus Alcantara Perez
00004 *  Summary:   HTML table cell
00005 *  Date:      $Date: 2003/04/14 00:18:35 $
00006 *  Revision:  $Revision: 1.1 $
00007 *
00008 *  Copyright (C) 1994-2002  Rafael Jesus Alcantara Perez <rafa@dedalo-ing.com>
00009 *
00010 *  This program is free software; you can redistribute it and/or modify
00011 *  it under the terms of the GNU General Public License as published by
00012 *  the Free Software Foundation; either version 2 of the License, or
00013 *  (at your option) any later version.
00014 *
00015 *  This program is distributed in the hope that it will be useful,
00016 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00017 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018 *  GNU General Public License for more details.
00019 *
00020 *  You should have received a copy of the GNU General Public License
00021 *  along with this program; if not, write to the Free Software
00022 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
00023 *  MA 02111-1307, USA.
00024 */
00025 
00026 #include <mpcl/text/html/table_cell.hh>
00027 #include <mpcl/text/string.hh>
00028 
00029 
00030 //
00031 //  C O N S T R U C T O R S
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 }  // TTableCell()
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 }  // TTableCell()

Generated on Mon Oct 13 02:35:24 2003 for MPCL by doxygen1.2.18