1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: pm_index.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef ADC_DISPLAY_HTML_PM_INDEX_HXX
32 #define ADC_DISPLAY_HTML_PM_INDEX_HXX
35 #include "pm_base.hxx"
36 #include <ary/ary_disp.hxx>
37 #include <cosv/tpl/processor.hxx>
64 class PageMaker_Index
: public SpecializedPageMaker
,
66 public csv::ConstProcessor
<ary::cpp::Namespace
>,
67 public csv::ConstProcessor
<ary::cpp::Class
>,
68 public csv::ConstProcessor
<ary::cpp::Enum
>,
69 public csv::ConstProcessor
<ary::cpp::Typedef
>,
70 public csv::ConstProcessor
<ary::cpp::Function
>,
71 public csv::ConstProcessor
<ary::cpp::Variable
>,
72 public csv::ConstProcessor
<ary::cpp::EnumValue
>,
73 public csv::ConstProcessor
<ary::cpp::Define
>,
74 public csv::ConstProcessor
<ary::cpp::Macro
>
78 PageDisplay
& io_rPage
,
81 virtual ~PageMaker_Index();
83 virtual void MakePage();
86 // Interface csv::ConstProcessor<>
87 virtual void do_Process(
88 const ary::cpp::Namespace
&
90 virtual void do_Process(
91 const ary::cpp::Class
&
93 virtual void do_Process(
94 const ary::cpp::Enum
&
96 virtual void do_Process(
97 const ary::cpp::Typedef
&
99 virtual void do_Process(
100 const ary::cpp::Function
&
102 virtual void do_Process(
103 const ary::cpp::Variable
&
105 virtual void do_Process(
106 const ary::cpp::EnumValue
&
108 virtual void do_Process(
109 const ary::cpp::Define
&
111 virtual void do_Process(
112 const ary::cpp::Macro
&
114 // Interface ary::cpp::Display:
115 virtual const ary::cpp::Gate
*
116 inq_Get_ReFinder() const;
118 virtual void Write_NavBar();
119 virtual void Write_TopArea();
120 virtual void Write_CompleteAlphabeticalList();
122 void Write_CeIndexEntry(
123 const ary::cpp::CodeEntity
&
125 const char * i_sType
,
126 const char * i_sOwnerType
);
129 Dyn
<NavigationBar
> pNavi
;