1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28 #ifndef X2C_CR_HTML_HXX 29 #define X2C_CR_HTML_HXX 30 31 32 #include <string.h> 33 #include <fstream> 34 #include "../support/sistr.hxx" 35 #include "../support/syshelp.hxx" 36 37 38 class XmlElement; 39 class SglTextElement; 40 class MultipleTextElement; 41 42 43 class HtmlCreator 44 { 45 public: 46 HtmlCreator( 47 const char * i_pOutputFileName, 48 const XmlElement & i_rDocument, 49 const Simstr & i_sIDL_BaseDirectory ); 50 ~HtmlCreator(); 51 52 void Run(); 53 54 void StartTable(); 55 void FinishTable(); 56 void StartBigCell( 57 const char * i_sTitle ); 58 void FinishBigCell(); 59 60 void Write_SglTextElement( 61 const SglTextElement & 62 i_rElement, 63 bool i_bStrong = false ); 64 void Write_MultiTextElement( 65 const MultipleTextElement & 66 i_rElement ); 67 void Write_SglText( 68 const Simstr & i_sName, 69 const Simstr & i_sValue ); 70 void Write_ReferenceDocu( 71 const Simstr & i_sName, 72 const Simstr & i_sRef, 73 const Simstr & i_sRole, 74 const Simstr & i_sTitle ); 75 private: 76 void StartRow(); 77 void FinishRow(); 78 void StartCell( 79 const char * i_pWidth ); 80 void FinishCell(); 81 82 void WriteElementName( 83 const Simstr & i_sName, 84 bool i_bStrong ); 85 void WriteStr( 86 const char * i_sStr ) 87 { aFile.write( i_sStr, (int) strlen(i_sStr) ); } 88 // DATA 89 std::ofstream aFile; 90 const XmlElement & rDocument; 91 Simstr sIdl_BaseDirectory; 92 }; 93 94 95 96 97 #endif 98 99 100