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

anchor.hh

00001 /*
00002 *  Name:      anchor.hh
00003 *  Author:    Rafael Jesus Alcantara Perez
00004 *  Summary:   HTML anchor
00005 *  Date:      $Date: 2003/04/14 00:18:34 $
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 #ifndef _MPCL_TEXT_HTML_ANCHOR__
00027 #define _MPCL_TEXT_HTML_ANCHOR__
00028 
00029 #include "../../net/url_encoder.hh"
00030 #include "container.hh"
00031 
00032 
00034 namespace mpcl
00035 {
00036 
00038   namespace text
00039   {
00040 
00042     namespace html
00043     {
00044 
00046       class TAnchor;
00047 
00049       typedef
00050         TSmartPointer<TAnchor>
00051         QTAnchor;
00052 
00054       typedef
00055         TSmartPointer<const TAnchor>
00056         QKTAnchor;
00057 
00067       class TAnchor : public TContainer
00068       {
00069 
00070         public:
00071 
00072           //
00073           //  C O N S T R U C T O R S
00074           //
00075 
00083           TAnchor ( const char* pkcHREF        ,
00084                     const char* pkcNAME        ,
00085                     const char* pkcTITLE       ,
00086                     const char* pkcTARGET = "" ) :
00087             TContainer (pkcNAME)
00088           {
00089             tAttributeMap ["class-identifier"] = "anchor";
00090             tAttributeMap.bind ("name",   pkcNAME);
00091             tAttributeMap.bind ("href",   pkcHREF);
00092             tAttributeMap.bind ("title",  pkcTITLE);
00093             tAttributeMap.bind ("target", pkcTARGET);
00094             gIsQualified = true;
00095           }
00096 
00105           TAnchor ( const char*  pkcHREF        ,
00106                     const char*  pkcNAME        ,
00107                     const char*  pkcTITLE       ,
00108                     const QTTag& rkqtTAG        ,
00109                     const char*  pkcTARGET = "" ) :
00110             TContainer (pkcNAME)
00111           {
00112             tAttributeMap ["class-identifier"] = "anchor";
00113             tAttributeMap.bind ("name",   pkcNAME);
00114             tAttributeMap.bind ("href",   pkcHREF);
00115             tAttributeMap.bind ("title",  pkcTITLE);
00116             tAttributeMap.bind ("target", pkcTARGET);
00117             insert (rkqtTAG);
00118             gIsQualified = true;
00119           }
00120 
00130           TAnchor ( const char*               pkcHREF                 ,
00131                     const char*               pkcNAME                 ,
00132                     const char*               pkcTITLE                ,
00133                     const QTTag&              rkqtTAG                 ,
00134                     const TStringToStringMap& rktSTRING_TO_STRING_MAP ,
00135                     const char*               pkcTARGET = ""          ) :
00136             TContainer (pkcNAME)
00137           {
00138             tAttributeMap ["class-identifier"] = "anchor";
00139             tAttributeMap.bind ("name",   pkcNAME);
00140             tAttributeMap.bind ("href",   pkcHREF);
00141             tAttributeMap.bind ("title",  pkcTITLE);
00142             tAttributeMap.bind ("target", pkcTARGET);
00143             insert (rkqtTAG);
00144             gIsQualified            = true;
00145             tAttributeMap ["href"] += "?";
00146             tAttributeMap ["href"] += net::TUrlEncoder::_encode (rktSTRING_TO_STRING_MAP, false);
00147           }
00148 
00149       };  // class TAnchor
00150 
00151     }  // namespace html
00152 
00153   }  // namespace text
00154 
00155 }  // namespace mpcl
00156 
00157 
00158 #endif  // not _MPCL_TEXT_HTML_ANCHOR__

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