1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef ADC_DISPLAY_HFI_GLOBALINDEX_HXX
21 #define ADC_DISPLAY_HFI_GLOBALINDEX_HXX
27 #include "hi_factory.hxx"
30 #include <ary/idl/i_gate.hxx>
35 class HF_IdlGlobalIndex
: public HtmlFactory_Idl
38 typedef std::vector
<ary::idl::Ce_id
> PageData
;
41 Environment
& io_rEnv
,
42 Xml::Element
& o_rOut
);
43 virtual ~HF_IdlGlobalIndex();
46 ary::idl::alphabetical_index::E_Letter
49 void make_Navibar() const; /// Called by @->Produce_Page()
50 void produce_Line( /// Called by @->Produce_Page()
51 PageData::const_iterator
53 const HF_IdlTypeText
&
54 i_typeLinkWriter
) const;
56 void write_EntryItself( /// Called by @->produceLine()
57 Xml::Element
& o_destination
,
58 const ary::idl::CodeEntity
&
60 const HF_IdlTypeText
&
61 i_typeLinkWriter
) const;
63 void write_OwnerOfEntry( /// Called by @->produceLine()
64 Xml::Element
& o_destination
,
65 const ary::idl::CodeEntity
&
67 const HF_IdlTypeText
&
68 i_typeLinkWriter
) const;
70 void write_EntrySecondTime( /// Called by @->produceLine()
71 Xml::Element
& o_destination
,
72 const ary::idl::CodeEntity
&
74 const HF_IdlTypeText
&
75 i_typeLinkWriter
) const;
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */