diff options
Diffstat (limited to 'autodoc/source/display/idl/hfi_navibar.cxx')
-rw-r--r-- | autodoc/source/display/idl/hfi_navibar.cxx | 227 |
1 files changed, 0 insertions, 227 deletions
diff --git a/autodoc/source/display/idl/hfi_navibar.cxx b/autodoc/source/display/idl/hfi_navibar.cxx deleted file mode 100644 index 098361fe..00000000 --- a/autodoc/source/display/idl/hfi_navibar.cxx +++ /dev/null @@ -1,227 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * 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 - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ - -#include <precomp.h> -#include "hfi_navibar.hxx" - - -// NOT FULLY DEFINED SERVICES -#include <ary/idl/i_ce.hxx> -#include <toolkit/hf_navi_main.hxx> -#include <toolkit/hf_navi_sub.hxx> -#include "hfi_interface.hxx" -#include "hfi_module.hxx" -#include "hfi_service.hxx" -#include "hi_linkhelper.hxx" - - -extern const String - C_sLocalManualLinks("#devmanual"); - - -const String C_sTop = "Overview"; -const String C_sModule = "Module"; -const String C_sUse = "Use"; -const String C_sManual = "Devguide"; -const String C_sIndex = "Index"; - - - - -HF_IdlNavigationBar::HF_IdlNavigationBar( Environment & io_rEnv, - Xml::Element & o_rOut ) - : HtmlFactory_Idl(io_rEnv, &o_rOut) -{ -} - -HF_IdlNavigationBar::~HF_IdlNavigationBar() -{ -} - -void -HF_IdlNavigationBar::Produce_CeMainRow( const client & i_ce, - bool i_bNoUsePage ) -{ - HF_NaviMainRow - aNaviMain( CurOut() ); - - StreamLock aLink(500); - StreamStr & rLink = aLink(); - - Env().Get_LinkTo( rLink.reset(), - Env().OutputTree().Overview() ); - aNaviMain.Add_StdItem( C_sTop, rLink.c_str() ); - - Env().Get_LinkTo( rLink.reset(), - Env().Linker().PositionOf_CurModule() ); - aNaviMain.Add_StdItem( C_sModule, rLink.c_str() ); - - if (i_bNoUsePage) - { - aNaviMain.Add_NoneItem( C_sUse ); - } - else - { - Env().Get_LinkTo( rLink.reset(), - Env().Linker().PositionOf_CurXRefs(i_ce.LocalName()) ); - aNaviMain.Add_StdItem( C_sUse, rLink.c_str() ); - } - - const StringVector & - rManualDescrs = i_ce.Secondaries().Links2DescriptionInManual(); - if (rManualDescrs.size() == 2) - { - aNaviMain.Add_StdItem(C_sManual, Env().Link2Manual( rManualDescrs.front() )); - } - else if (rManualDescrs.size() > 2) - { - aNaviMain.Add_StdItem(C_sManual, C_sLocalManualLinks); - } - else - { - aNaviMain.Add_NoneItem( C_sManual ); - } - - Env().Get_LinkTo( rLink.reset(), - Env().Linker().PositionOf_Index() ); - aNaviMain.Add_StdItem( C_sIndex, rLink.c_str() ); - - aNaviMain.Produce_Row(); -} - -void -HF_IdlNavigationBar::Produce_CeXrefsMainRow( const client & i_ce ) -{ - HF_NaviMainRow - aNaviMain( CurOut() ); - - StreamLock aLink(500); - StreamStr & rLink = aLink(); - - Env().Get_LinkTo( rLink.reset(), - Env().OutputTree().Overview() ); - aNaviMain.Add_StdItem( C_sTop, rLink.c_str() ); - - Env().Get_LinkTo( rLink.reset(), - Env().Linker().PositionOf_CurModule() ); - aNaviMain.Add_StdItem( C_sModule, rLink.c_str() ); - - aNaviMain.Add_SelfItem( C_sUse ); - - const StringVector & - rManualDescrs = i_ce.Secondaries().Links2DescriptionInManual(); - if (rManualDescrs.size() == 2) - { - aNaviMain.Add_StdItem(C_sManual, Env().Link2Manual( rManualDescrs.front() )); - } - else if (rManualDescrs.size() > 2) - { - aNaviMain.Add_StdItem(C_sManual, C_sLocalManualLinks); - } - else - { - aNaviMain.Add_NoneItem( C_sManual ); - } - - Env().Get_LinkTo( rLink.reset(), - Env().Linker().PositionOf_Index() ); - aNaviMain.Add_StdItem( C_sIndex, rLink.c_str() ); - - aNaviMain.Produce_Row(); -} - -void -HF_IdlNavigationBar::Produce_ModuleMainRow( const client & i_ce ) -{ - HF_NaviMainRow - aNaviMain( CurOut() ); - - StreamLock aLink(500); - StreamStr & rLink = aLink(); - - Env().Get_LinkTo( rLink.reset(), - Env().OutputTree().Overview() ); - aNaviMain.Add_StdItem( C_sTop, rLink.c_str() ); - - aNaviMain.Add_SelfItem( C_sModule ); - - aNaviMain.Add_NoneItem( C_sUse ); - - const StringVector & - rManualDescrs = i_ce.Secondaries().Links2DescriptionInManual(); - if (rManualDescrs.size() == 1) - { - aNaviMain.Add_StdItem(C_sManual, Env().Link2Manual( rManualDescrs.front() )); - } - else if (rManualDescrs.size() > 1) - { - aNaviMain.Add_StdItem(C_sManual, C_sLocalManualLinks); - } - else - { - aNaviMain.Add_NoneItem( C_sManual ); - } - - Env().Get_LinkTo( rLink.reset(), - Env().Linker().PositionOf_Index() ); - aNaviMain.Add_StdItem( C_sIndex, rLink.c_str() ); - - aNaviMain.Produce_Row(); -} - -void -HF_IdlNavigationBar::Produce_IndexMainRow() -{ - HF_NaviMainRow - aNaviMain( CurOut() ); - - StreamLock aLink(500); - StreamStr & rLink = aLink(); - - Env().Get_LinkTo( rLink.reset(), - Env().OutputTree().Overview() ); - aNaviMain.Add_StdItem( C_sTop, rLink.c_str() ); - - aNaviMain.Add_NoneItem( C_sModule ); - aNaviMain.Add_NoneItem( C_sUse ); - aNaviMain.Add_NoneItem( C_sManual ); - - aNaviMain.Add_SelfItem( C_sIndex ); - - aNaviMain.Produce_Row(); - - CurOut() << new Html::HorizontalLine(); -} - -DYN HF_NaviSubRow & -HF_IdlNavigationBar::Add_SubRow() -{ - return *new HF_NaviSubRow( CurOut() ); -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |