summaryrefslogtreecommitdiff
path: root/autodoc/source/display/inc/toolkit
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-03-23 08:04:33 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-03-23 08:04:33 +0000
commit91dd4d66b5abf387786375e682d4d6469d33d02e (patch)
treea129499d30735e5a0ca5c9e4a44006cbce8800ca /autodoc/source/display/inc/toolkit
parent3521ed7f23a3da6c68a239e6d055bbcb0d4b19f9 (diff)
INTEGRATION: CWS adc11 (1.1.122); FILE MERGED
2005/02/18 18:28:46 np 1.1.122.1: #i39458#
Diffstat (limited to 'autodoc/source/display/inc/toolkit')
-rw-r--r--autodoc/source/display/inc/toolkit/htmlfile.hxx24
1 files changed, 13 insertions, 11 deletions
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;
};