diff options
Diffstat (limited to 'autodoc/source/display/inc')
-rw-r--r-- | autodoc/source/display/inc/idl/hi_display.hxx | 5 | ||||
-rw-r--r-- | autodoc/source/display/inc/toolkit/htmlfile.hxx | 24 |
2 files changed, 16 insertions, 13 deletions
diff --git a/autodoc/source/display/inc/idl/hi_display.hxx b/autodoc/source/display/inc/idl/hi_display.hxx index 4e3a292280f4..84b268ae4f8d 100644 --- a/autodoc/source/display/inc/idl/hi_display.hxx +++ b/autodoc/source/display/inc/idl/hi_display.hxx @@ -2,9 +2,9 @@ * * $RCSfile: hi_display.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: np $ $Date: 2002-11-01 17:15:13 $ + * last change: $Author: vg $ $Date: 2005-03-23 09:04:07 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -111,6 +111,7 @@ class HtmlDisplay_Idl : public autodoc::HtmlDisplay_Idl_Ifc void Create_FilesInProjectTree(); void Create_PackageList(); void Create_HelpFile(); + void Create_CssFile(); /** @descr - makes sure, the module's directory exists diff --git a/autodoc/source/display/inc/toolkit/htmlfile.hxx b/autodoc/source/display/inc/toolkit/htmlfile.hxx index 0973c928b834..a8c6986c3408 100644 --- a/autodoc/source/display/inc/toolkit/htmlfile.hxx +++ b/autodoc/source/display/inc/toolkit/htmlfile.hxx @@ -2,9 +2,9 @@ * * $RCSfile: htmlfile.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: np $ $Date: 2002-11-01 17:15:18 $ + * last change: $Author: vg $ $Date: 2005-03-23 09:04:33 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -74,6 +74,8 @@ namespace csv class File; } +/** Represents an HTML output file. +*/ class DocuFile_Html { public: @@ -85,11 +87,10 @@ class DocuFile_Html i_rFilePath ); void SetTitle( const char * i_sTitle ); - void SetStyle( + void SetInlineStyle( const char * i_sStyle ); - void SetBodyAttr( - const char * i_sAttrName, - const char * i_sAttrValue ); + void SetRelativeCssPath( + const char * i_sCssFile_relativePath ); void SetCopyright( const char * i_sCopyright ); void EmptyBody(); @@ -103,11 +104,12 @@ class DocuFile_Html void WriteBody( csv::File & io_aFile ); // DATA - udmstri sFilePath; - udmstri sTitle; - udmstri sLocation; - udmstri sStyle; - udmstri sCopyright; + String sFilePath; + String sTitle; + String sLocation; + String sStyle; + String sCssFile; + String sCopyright; Html::Body aBodyData; }; |