From d5d550be4281af0b678f5662787b2f186501a0cb Mon Sep 17 00:00:00 2001 From: Nikolai Pretzell Date: Thu, 14 Nov 2002 17:02:06 +0000 Subject: Some features in IDL docu. --- autodoc/source/display/html/cfrstd.cxx | 41 +++++++++++++++++++++++++++++++--- 1 file changed, 38 insertions(+), 3 deletions(-) (limited to 'autodoc/source/display/html/cfrstd.cxx') diff --git a/autodoc/source/display/html/cfrstd.cxx b/autodoc/source/display/html/cfrstd.cxx index d4d726e99531..2dc83042ed66 100644 --- a/autodoc/source/display/html/cfrstd.cxx +++ b/autodoc/source/display/html/cfrstd.cxx @@ -2,9 +2,9 @@ * * $RCSfile: cfrstd.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: np $ $Date: 2002-11-01 17:14:21 $ + * last change: $Author: np $ $Date: 2002-11-14 18:01:56 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -165,7 +165,11 @@ const char * const C_sStdStyle = } // anonymous namespace - +StdFrame::StdFrame() + : sDevelopersGuideHtmlRoot(), + bSimpleLinks(false) +{ +} DYN Html_Image * StdFrame::LogoSrc() const @@ -203,3 +207,34 @@ StdFrame::CssStyle() const return C_sStdStyle; } +const char * +StdFrame::DevelopersGuideHtmlRoot() const +{ + return sDevelopersGuideHtmlRoot; +} + +bool +StdFrame::SimpleLinks() const +{ + return bSimpleLinks; +} + +void +StdFrame::Set_DevelopersGuideHtmlRoot( const String & i_directory ) +{ + if (NOT i_directory.empty()) + { + if (i_directory.char_at(i_directory.length()-1) == '/') + { + sDevelopersGuideHtmlRoot.assign(i_directory,i_directory.length()-1); + return; + } + } + sDevelopersGuideHtmlRoot = i_directory; +} + +void +StdFrame::Set_SimpleLinks() +{ + bSimpleLinks = true; +} -- cgit