/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * 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. * * 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). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #include #include "pm_aldef.hxx" // NOT FULLY DEFINED SERVICES #include #include #include #include #include #include #include #include #include "hd_docu.hxx" #include "html_kit.hxx" #include "navibar.hxx" #include "opageenv.hxx" #include "pagemake.hxx" #include "strconst.hxx" using namespace csi; using csi::html::HorizontalLine; using csi::html::Link; using csi::html::Label; using csi::html::AlignAttr; PageMaker_AllDefs::PageMaker_AllDefs( PageDisplay & io_rPage ) : SpecializedPageMaker(io_rPage), pDocuDisplay( new Docu_Display(io_rPage.Env()) ), pNavi(0) { } PageMaker_AllDefs::~PageMaker_AllDefs() { } void PageMaker_AllDefs::MakePage() { pNavi = new NavigationBar( Env(), NavigationBar::LOC_AllDefs ); Write_NavBar(); Write_TopArea(); Write_DefinesList(); Write_MacrosList(); pNavi->Write_SubRows(); } void PageMaker_AllDefs::Write_NavBar() { pNavi->MakeSubRow( "" ); pNavi->AddItem( "Defines", "defines", true ); pNavi->AddItem( "Macros", "macros", true ); pNavi->Write( CurOut() ); CurOut() << new HorizontalLine; } void PageMaker_AllDefs::Write_TopArea() { adcdisp::PageTitle_Std fTitle; fTitle( CurOut(), "Defines and ", "Macros" ); CurOut() << new HorizontalLine; } void PageMaker_AllDefs::Write_DocuArea() { // Not needed. } void PageMaker_AllDefs::Write_DefinesList() { CurOut() << new html::LineBreak << new html::LineBreak >> *new xml::AnElement("div") << new html::ClassAttr("define") >> *new html::Label("defines") >> *new html::Headline(3) << "Defines"; ary::cpp::DefsResultList aAllDefines = Env().Gate().Defs().AllDefines(); ary::cpp::DefsConstIterator itEnd = aAllDefines.end(); if (aAllDefines.begin() != itEnd) { for ( ary::cpp::DefsConstIterator it = aAllDefines.begin(); it != itEnd; ++it ) { Write_Define(*it); } } else { CurOut() << "None."; } CurOut() << new HorizontalLine; } void PageMaker_AllDefs::Write_MacrosList() { CurOut() << new html::LineBreak << new html::LineBreak >> *new xml::AnElement("div") << new html::ClassAttr("define") >> *new html::Label("macros") >> *new html::Headline(3) << "Macros"; ary::cpp::DefsResultList aAllMacros = Env().Gate().Defs().AllMacros(); ary::cpp::DefsConstIterator itEnd = aAllMacros.end(); if (aAllMacros.begin() != itEnd) { for ( ary::cpp::DefsConstIterator it = aAllMacros.begin(); it != itEnd; ++it ) { Write_Macro(*it); } } else { CurOut() << "None."; } CurOut() << new HorizontalLine; } void PageMaker_AllDefs::Write_Define(De_id i_nId) { csv_assert( ary::is_type( Env().Gate().Defs().Find_Def(i_nId)) ); const ary::cpp::Define & rDef = static_cast< const ary::cpp::Define& >( Env().Gate().Defs().Find_Def(i_nId) ); CurOut() << new html::HorizontalLine; adcdisp::ExplanationList aDocu( CurOut(), true ); aDocu.AddEntry(); aDocu.Term() >> *new html::Label( rDef.LocalName() ) << " "; aDocu.Term() << rDef.LocalName(); Write_DefsDocu( aDocu.Def(), rDef ); } void PageMaker_AllDefs::Write_Macro(De_id i_nId) { csv_assert( Env().Gate().Defs().Find_Def(i_nId).AryClass() == ary::cpp::Macro::class_id ); const ary::cpp::Macro & rDef = static_cast< const ary::cpp::Macro& >( Env().Gate().Defs().Find_Def(i_nId) ); CurOut() << new html::HorizontalLine; adcdisp::ExplanationList aDocu( CurOut(), true ); aDocu.AddEntry(); aDocu.Term() >> *new html::Label( rDef.LocalName() ) << " "; aDocu.Term() << rDef.LocalName() << "("; WriteOut_TokenList( aDocu.Term(), rDef.Params(), ", " ); aDocu.Term() << ")"; Write_DefsDocu( aDocu.Def(), rDef ); } void PageMaker_AllDefs::Write_DefsDocu( csi::xml::Element & o_rOut, const ary::cpp::DefineEntity & i_rTextReplacement ) { if ( i_rTextReplacement.DefinitionText().size() > 0 ) { EraseLeadingSpace( *const_cast< String * >( &(*i_rTextReplacement.DefinitionText().begin()) ) ); } adcdisp::ExplanationTable rList( o_rOut ); rList.AddEntry( "Defined As" ); WriteOut_TokenList( rList.Def(), i_rTextReplacement.DefinitionText(), " " ); const ary::loc::File & rFile = Env().Gate().Locations().Find_File( i_rTextReplacement.Location() ); rList.AddEntry( "In File" ); rList.Def() << rFile.LocalName(); ShowDocu_On( o_rOut, *pDocuDisplay, i_rTextReplacement ); }