2010-10-14 08:30:07 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2001-03-09 14:23:00 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 17:49:26 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2001-03-09 14:23:00 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2001-03-09 14:23:00 +00:00
|
|
|
*
|
2008-04-10 17:49:26 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2001-03-09 14:23:00 +00:00
|
|
|
*
|
2008-04-10 17:49:26 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2001-03-09 14:23:00 +00:00
|
|
|
*
|
2008-04-10 17:49:26 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2001-03-09 14:23:00 +00:00
|
|
|
*
|
2008-04-10 17:49:26 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2001-03-09 14:23:00 +00:00
|
|
|
*
|
2008-04-10 17:49:26 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2001-03-09 14:23:00 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef X2C_CR_HTML_HXX
|
|
|
|
#define X2C_CR_HTML_HXX
|
|
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
2001-10-02 07:49:26 +00:00
|
|
|
#include <fstream>
|
2001-03-09 14:23:00 +00:00
|
|
|
#include "../support/sistr.hxx"
|
|
|
|
#include "../support/syshelp.hxx"
|
|
|
|
|
|
|
|
|
2001-03-23 12:24:04 +00:00
|
|
|
class XmlElement;
|
|
|
|
class SglTextElement;
|
|
|
|
class MultipleTextElement;
|
2001-03-09 14:23:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
class HtmlCreator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
HtmlCreator(
|
|
|
|
const char * i_pOutputFileName,
|
2001-03-23 12:24:04 +00:00
|
|
|
const XmlElement & i_rDocument,
|
2001-03-09 14:23:00 +00:00
|
|
|
const Simstr & i_sIDL_BaseDirectory );
|
|
|
|
~HtmlCreator();
|
|
|
|
|
|
|
|
void Run();
|
|
|
|
|
2001-03-23 12:24:04 +00:00
|
|
|
void StartTable();
|
|
|
|
void FinishTable();
|
|
|
|
void StartBigCell(
|
|
|
|
const char * i_sTitle );
|
|
|
|
void FinishBigCell();
|
|
|
|
|
|
|
|
void Write_SglTextElement(
|
|
|
|
const SglTextElement &
|
|
|
|
i_rElement,
|
|
|
|
bool i_bStrong = false );
|
|
|
|
void Write_MultiTextElement(
|
|
|
|
const MultipleTextElement &
|
|
|
|
i_rElement );
|
|
|
|
void Write_SglText(
|
|
|
|
const Simstr & i_sName,
|
|
|
|
const Simstr & i_sValue );
|
|
|
|
void Write_ReferenceDocu(
|
|
|
|
const Simstr & i_sName,
|
|
|
|
const Simstr & i_sRef,
|
|
|
|
const Simstr & i_sRole,
|
|
|
|
const Simstr & i_sTitle );
|
2001-03-09 14:23:00 +00:00
|
|
|
private:
|
|
|
|
void StartRow();
|
|
|
|
void FinishRow();
|
|
|
|
void StartCell(
|
2006-06-19 19:04:59 +00:00
|
|
|
const char * i_pWidth );
|
2001-03-09 14:23:00 +00:00
|
|
|
void FinishCell();
|
|
|
|
|
|
|
|
void WriteElementName(
|
2001-03-23 12:24:04 +00:00
|
|
|
const Simstr & i_sName,
|
|
|
|
bool i_bStrong );
|
2001-03-09 14:23:00 +00:00
|
|
|
void WriteStr(
|
|
|
|
const char * i_sStr )
|
2006-09-25 12:26:23 +00:00
|
|
|
{ aFile.write( i_sStr, (int) strlen(i_sStr) ); }
|
2001-03-09 14:23:00 +00:00
|
|
|
// DATA
|
2001-10-02 07:49:26 +00:00
|
|
|
std::ofstream aFile;
|
2001-03-23 12:24:04 +00:00
|
|
|
const XmlElement & rDocument;
|
2001-03-09 14:23:00 +00:00
|
|
|
Simstr sIdl_BaseDirectory;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
2006-09-25 12:26:23 +00:00
|
|
|
|
|
|
|
|
2010-10-14 08:30:07 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|