merged tag ooo/OOO330_m14
[LibreOffice.git] / autodoc / inc / ary / ary_disp.hxx
blob5e8194d6d049709f71173e1e5eec8adb7727e214
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
28 #ifndef ARY_ARY_DISP_HXX
29 #define ARY_ARY_DISP_HXX
30 // KORR_DEPRECATED_3.0
33 // USED SERVICES
34 // BASE CLASSES
35 #include <cosv/tpl/processor.hxx>
36 // COMPONENTS
37 // PARAMETERS
38 #include <ary/types.hxx>
39 #include <ary/cpp/c_types4cpp.hxx>
41 namespace ary
43 namespace cpp
45 class Gate;
48 class Display : public csv::ProcessorIfc
50 public:
51 virtual ~Display() {}
53 // OPERATIONS
54 void StartSlot();
55 void FinishSlot();
57 /** This method depends on the result of Get_ReFinder().
58 If Get_ReFinder() != 0, then DisplayGate::Find_Re() is called
59 and if valid, cpp::CppEntity::Accept( *this ) is called.
60 If Get_ReFinder() == 0, simply do_DisplaySlot_Rid() is called
61 with just the id as parameter.
63 void DisplaySlot_Rid(
64 ary::Rid i_nId );
65 // void DisplaySlot_Lid(
66 // ary::Lid i_nId );
67 /** This method depends on the result of Get_ReFinder().
68 If Get_ReFinder() != 0, then DisplayGate::Find_Re() is called
69 and if valid, cpp::CppEntity::Accept( *this ) is called.
70 If Get_ReFinder() == 0, simply do_DisplaySlot_LocalCe() is called
71 with just the id as parameter.
73 void DisplaySlot_LocalCe(
74 ary::cpp::Ce_id i_nId,
75 const String & i_sName );
76 // INQUIRY
77 const cpp::Gate * Get_ReFinder() const;
79 private:
80 virtual void do_StartSlot();
81 virtual void do_FinishSlot();
84 virtual void do_DisplaySlot_Rid(
85 ary::Rid i_nId );
86 virtual void do_DisplaySlot_LocalCe(
87 ary::cpp::Ce_id i_nId,
88 const String & i_sName );
89 virtual const cpp::Gate *
90 inq_Get_ReFinder() const = 0;
94 // IMPLEMENTATION
97 inline void
98 Display::StartSlot()
99 { do_StartSlot(); }
100 inline void
101 Display::FinishSlot()
102 { do_FinishSlot(); }
103 inline const cpp::Gate *
104 Display::Get_ReFinder() const
105 { return inq_Get_ReFinder(); }
110 } // namespace ary
111 #endif