diff options
author | Nikolai Pretzell <np@openoffice.org> | 2002-11-14 17:02:06 +0000 |
---|---|---|
committer | Nikolai Pretzell <np@openoffice.org> | 2002-11-14 17:02:06 +0000 |
commit | d5d550be4281af0b678f5662787b2f186501a0cb (patch) | |
tree | 16c855c5c049fc44cc5c2f31e233ba62bbab3d72 /autodoc/source/display/html/cfrstd.cxx | |
parent | b9a59049ae75807446d3ffd2ee50f631bb2d420d (diff) |
Some features in IDL docu.
Diffstat (limited to 'autodoc/source/display/html/cfrstd.cxx')
-rw-r--r-- | autodoc/source/display/html/cfrstd.cxx | 41 |
1 files changed, 38 insertions, 3 deletions
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; +} |