1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir #ifndef ADC_DISPLAY_HFI_HIERARCHY_HXX
29*cdf0e10cSrcweir #define ADC_DISPLAY_HFI_HIERARCHY_HXX
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir // USED SERVICES
32*cdf0e10cSrcweir 	// BASE CLASSES
33*cdf0e10cSrcweir 	// COMPONENTS
34*cdf0e10cSrcweir 	// PARAMETERS
35*cdf0e10cSrcweir #include <ary/idl/i_comrela.hxx>
36*cdf0e10cSrcweir #include <ary/idl/i_types4idl.hxx>
37*cdf0e10cSrcweir 
38*cdf0e10cSrcweir 
39*cdf0e10cSrcweir namespace csi
40*cdf0e10cSrcweir {
41*cdf0e10cSrcweir namespace xml
42*cdf0e10cSrcweir {
43*cdf0e10cSrcweir     class Element;
44*cdf0e10cSrcweir }
45*cdf0e10cSrcweir }
46*cdf0e10cSrcweir 
47*cdf0e10cSrcweir 
48*cdf0e10cSrcweir class HF_IdlInterface;
49*cdf0e10cSrcweir class HtmlEnvironment_Idl;
50*cdf0e10cSrcweir 
51*cdf0e10cSrcweir 
52*cdf0e10cSrcweir 
53*cdf0e10cSrcweir /** Represents a node in an pyramidic inheritance hierarchy which shall be
54*cdf0e10cSrcweir     displayed in text mode.
55*cdf0e10cSrcweir */
56*cdf0e10cSrcweir class HF_IdlBaseNode
57*cdf0e10cSrcweir {
58*cdf0e10cSrcweir   public:
59*cdf0e10cSrcweir     typedef ary::idl::CodeEntity            CE;
60*cdf0e10cSrcweir     typedef ary::idl::Type                  TYPE;
61*cdf0e10cSrcweir     typedef ary::idl::Gate                  GATE;
62*cdf0e10cSrcweir     typedef ary::idl::Ce_id                 Ce_id;
63*cdf0e10cSrcweir     typedef ary::idl::Type_id               Type_id;
64*cdf0e10cSrcweir 
65*cdf0e10cSrcweir     /** @descr
66*cdf0e10cSrcweir         The constructor recursively calls further constructors of
67*cdf0e10cSrcweir         HF_IdlBaseNode for the bases of ->i_rType, if ->i_rType matches to a
68*cdf0e10cSrcweir         ->CE.
69*cdf0e10cSrcweir         So it builds up a complete hierarchy tree of all base classes
70*cdf0e10cSrcweir         of ->i_pEntity.
71*cdf0e10cSrcweir     */
72*cdf0e10cSrcweir                         HF_IdlBaseNode(
73*cdf0e10cSrcweir                             const TYPE &        i_rType,
74*cdf0e10cSrcweir                             const GATE &        i_rGate,
75*cdf0e10cSrcweir                             intt                i_nPositionOffset,
76*cdf0e10cSrcweir                             HF_IdlBaseNode &    io_rDerived );
77*cdf0e10cSrcweir                         ~HF_IdlBaseNode();
78*cdf0e10cSrcweir 
79*cdf0e10cSrcweir     /** Recursively fills ->o_rPositionList with the instances of base
80*cdf0e10cSrcweir         classes in the order in which they will be displayed.
81*cdf0e10cSrcweir     */
82*cdf0e10cSrcweir     void                FillPositionList(
83*cdf0e10cSrcweir                             std::vector< const HF_IdlBaseNode* > &
84*cdf0e10cSrcweir                                                 o_rPositionList ) const;
85*cdf0e10cSrcweir 
86*cdf0e10cSrcweir     Type_id             Type() const            { return nType; }
87*cdf0e10cSrcweir     intt                BaseCount() const       { return nCountBases; }
88*cdf0e10cSrcweir     intt                Position() const        { return nPosition; }
89*cdf0e10cSrcweir     int                 Xpos() const            { return 3*Position(); }
90*cdf0e10cSrcweir     int                 Ypos() const            { return 2*Position(); }
91*cdf0e10cSrcweir     const HF_IdlBaseNode *        Derived() const         { return pDerived; }
92*cdf0e10cSrcweir 
93*cdf0e10cSrcweir   private:
94*cdf0e10cSrcweir     typedef std::vector< DYN HF_IdlBaseNode* > BaseList;
95*cdf0e10cSrcweir 
96*cdf0e10cSrcweir     void                GatherBases(
97*cdf0e10cSrcweir                             const CE &          i_rCe,
98*cdf0e10cSrcweir                             const GATE &        i_rGate );
99*cdf0e10cSrcweir 
100*cdf0e10cSrcweir     // DATA
101*cdf0e10cSrcweir     Type_id             nType;
102*cdf0e10cSrcweir     BaseList            aBases;
103*cdf0e10cSrcweir     intt                nCountBases;
104*cdf0e10cSrcweir     intt                nPosition;
105*cdf0e10cSrcweir     HF_IdlBaseNode *    pDerived;
106*cdf0e10cSrcweir };
107*cdf0e10cSrcweir 
108*cdf0e10cSrcweir void                Write_BaseHierarchy(
109*cdf0e10cSrcweir                         csi::xml::Element & o_rOut,
110*cdf0e10cSrcweir                         HtmlEnvironment_Idl &
111*cdf0e10cSrcweir                                             i_env,
112*cdf0e10cSrcweir                         const ary::idl::CodeEntity &
113*cdf0e10cSrcweir                                             i_rCe );
114*cdf0e10cSrcweir 
115*cdf0e10cSrcweir void                Write_Bases(
116*cdf0e10cSrcweir                         csi::xml::Element & o_rOut,
117*cdf0e10cSrcweir                         HtmlEnvironment_Idl &
118*cdf0e10cSrcweir                                             i_env,
119*cdf0e10cSrcweir                         const ary::idl::CodeEntity &
120*cdf0e10cSrcweir                                             i_rCe,
121*cdf0e10cSrcweir                         std::vector<uintt> &
122*cdf0e10cSrcweir                                             io_setColumns );
123*cdf0e10cSrcweir 
124*cdf0e10cSrcweir #endif
125