1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #ifndef ADC_DISPLAY_HFI_GLOBALINDEX_HXX
30 #define ADC_DISPLAY_HFI_GLOBALINDEX_HXX
36 #include "hi_factory.hxx"
39 #include <ary/idl/i_gate.hxx>
44 class HF_IdlGlobalIndex
: public HtmlFactory_Idl
47 typedef std::vector
<ary::idl::Ce_id
> PageData
;
50 Environment
& io_rEnv
,
51 Xml::Element
& o_rOut
);
52 virtual ~HF_IdlGlobalIndex();
55 ary::idl::alphabetical_index::E_Letter
58 void make_Navibar() const; /// Called by @->Produce_Page()
59 void produce_Line( /// Called by @->Produce_Page()
60 PageData::const_iterator
62 const HF_IdlTypeText
&
63 i_typeLinkWriter
) const;
65 void write_EntryItself( /// Called by @->produceLine()
66 Xml::Element
& o_destination
,
67 const ary::idl::CodeEntity
&
69 const HF_IdlTypeText
&
70 i_typeLinkWriter
) const;
72 void write_OwnerOfEntry( /// Called by @->produceLine()
73 Xml::Element
& o_destination
,
74 const ary::idl::CodeEntity
&
76 const HF_IdlTypeText
&
77 i_typeLinkWriter
) const;
79 void write_EntrySecondTime( /// Called by @->produceLine()
80 Xml::Element
& o_destination
,
81 const ary::idl::CodeEntity
&
83 const HF_IdlTypeText
&
84 i_typeLinkWriter
) const;
91 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */