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

text.cc

00001 /*
00002 *  Name:      text.cc
00003 *  Author:    Rafael Jesus Alcantara Perez
00004 *  Summary:   HTML text
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/text.hh>
00027 
00028 
00029 //
00030 //  C O N S T R U C T O R S
00031 //
00032 
00033 mpcl::text::html::TText::
00034 TText ( const char* pkcTEXT  ,
00035         size_t      zSIZE    ,
00036         const char* pkcALIGN ,
00037         const char* pkcCOLOR ) :
00038   mpcl::text::html::TTag ("", pkcTEXT)
00039 {
00040 
00041   tAttributeMap ["class-identifier"] = "text";
00042   tAttributeMap.bind ("text-size", Format ("%u", zSIZE));
00043   tAttributeMap.bind ("halign",    pkcALIGN);
00044   tAttributeMap.bind ("color",     pkcCOLOR);
00045 
00046 }  // TText()
00047 
00048 
00049 mpcl::text::html::TText::
00050 TText ( const char* pkcIDENTIFIER ,
00051         const char* pkcTEXT       ,
00052         size_t      zSIZE         ,
00053         const char* pkcALIGN      ,
00054         const char* pkcCOLOR      ) :
00055   mpcl::text::html::TTag (pkcIDENTIFIER, pkcTEXT)
00056 {
00057 
00058   tAttributeMap ["class-identifier"] = "text";
00059   tAttributeMap.bind ("text-size", Format ("%u", zSIZE));
00060   tAttributeMap.bind ("halign",    pkcALIGN);
00061   tAttributeMap.bind ("color",     pkcCOLOR);
00062 
00063 }  // TText()
00064 
00065 
00066 //
00067 //  S E L E C T O R S
00068 //
00069 
00070 void mpcl::text::html::TText::
00071 writeUsing ( std::basic_ostream<char>& rtTARGET_OSTREAM               ,
00072              const TString&            rkySOURCE_QUALIFIED_IDENTIFIER ) const
00073 {
00074 
00075   if ( isVisible() )
00076   {
00077     TStringToStringMap   tTargetVariableMap;
00078     TString              yQualifiedIdentifier = rkySOURCE_QUALIFIED_IDENTIFIER;
00079     const TString        kyHead               = "header.";
00080     const TString        kyFoot               = "foot.";
00081 
00082     expand (tTargetVariableMap);
00083     if ( gIsQualified && !qualifiedIdentifier().empty() )
00084     {
00085       if ( !yQualifiedIdentifier.empty() )
00086       {
00087         yQualifiedIdentifier += kcIdentifierSeparator;
00088       }
00089       yQualifiedIdentifier += qualifiedIdentifier();
00090     }
00091     tTargetVariableMap ["qualified-identifier"] = yQualifiedIdentifier;
00092     if ( !attribute ("color").empty() )
00093     {
00094       rtTARGET_OSTREAM << code ("font", "head", tTargetVariableMap);
00095     }
00096     rtTARGET_OSTREAM << code ("text", (kyHead + tAttributeMap ["text-size"]).c_str(), tTargetVariableMap);
00097     rtTARGET_OSTREAM << code ("text", "body",                                         tTargetVariableMap);
00098     rtTARGET_OSTREAM << code ("text", (kyFoot + tAttributeMap ["text-size"]).c_str(), tTargetVariableMap);
00099     if ( !attribute ("color").empty() )
00100     {
00101       rtTARGET_OSTREAM << code ("font", "foot", tTargetVariableMap);
00102     }
00103   }
00104 
00105 }  // writeUsing()

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