Coverage Report

Created: 2026-03-31 11:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/include/sfx2/childwin.hxx
Line
Count
Source
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
/*
3
 * This file is part of the LibreOffice project.
4
 *
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/.
8
 *
9
 * This file incorporates work covered by the following license notice:
10
 *
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 .
18
 */
19
#ifndef INCLUDED_SFX2_CHILDWIN_HXX
20
#define INCLUDED_SFX2_CHILDWIN_HXX
21
22
#include <memory>
23
#include <sal/config.h>
24
25
#include <sfx2/dllapi.h>
26
#include <sal/types.h>
27
#include <o3tl/typed_flags_set.hxx>
28
#include <vcl/window.hxx>
29
30
#include <comphelper/lok.hxx>
31
32
namespace com::sun::star::frame { class XFrame; }
33
34
class SfxDialogController;
35
class SfxWorkWindow;
36
class SfxModule;
37
class SfxChildWindow;
38
class SfxBindings;
39
40
enum class SfxChildAlignment;
41
42
enum class SfxChildWindowFlags
43
{
44
    NONE            = 0x000,
45
    FORCEDOCK       = 0x004, // Float forbidden
46
    TASK            = 0x010, // ChildWindow inside the Task
47
    CANTGETFOCUS    = 0x020, // ChildWindow can not get focus
48
    ALWAYSAVAILABLE = 0x040, // ChildWindow is never disabled
49
    NEVERHIDE       = 0x080, // ChildWindow is always visible
50
    NEVERCLONE      = 0x100, // ChildWindow is not recreated in new view
51
};
52
53
namespace o3tl
54
{
55
    template<> struct typed_flags<SfxChildWindowFlags> : is_typed_flags<SfxChildWindowFlags, 0x1f4> {};
56
}
57
58
59
187
#define CHILDWIN_NOPOS            USHRT_MAX
60
61
// ChildWindow Configuration
62
struct SAL_DLLPUBLIC_RTTI SfxChildWinInfo
63
{
64
    OUString            aExtraString;
65
    OUString            aModule;
66
    OUString            aWinState;
67
    Point               aPos;
68
    Size                aSize;
69
    SfxChildWindowFlags nFlags;
70
    bool                bVisible;
71
72
                        SfxChildWinInfo()
73
131k
                        {
74
131k
                            bVisible = false;
75
131k
                            nFlags = SfxChildWindowFlags::NONE;
76
131k
                        }
77
    bool                GetExtraData_Impl( SfxChildAlignment    *pAlign ) const;
78
};
79
80
// ChildWindow factory methods
81
typedef std::unique_ptr<SfxChildWindow> (*SfxChildWinCtor)( vcl::Window *pParentWindow,
82
                                            sal_uInt16 nId,
83
                                            SfxBindings *pBindings,
84
                                            SfxChildWinInfo *pInfo);
85
86
struct SFX2_DLLPUBLIC SfxChildWinFactory
87
{
88
    SfxChildWinCtor             pCtor;  // Factory method
89
    SfxChildWinInfo             aInfo;  // Configuration
90
    sal_uInt16                  nId;    // ChildWindow-Id ( SlotId )
91
    sal_uInt16                  nPos;   // Position in UI
92
93
    SfxChildWinFactory( SfxChildWinCtor pTheCtor, sal_uInt16 nID, sal_uInt16 n );
94
};
95
96
struct SfxChildWindow_Impl;
97
98
extern SFX2_DLLPUBLIC bool ParentIsFloatingWindow(const vcl::Window *pParent);
99
100
class SFX2_DLLPUBLIC SfxChildWindow
101
{
102
    VclPtr<vcl::Window>        m_pParent;       // parent window (Topwindow)
103
    VclPtr<vcl::Window>        pWindow;         // actual contents
104
    std::unique_ptr< SfxChildWindow_Impl>       pImpl;            // Implementation data
105
    std::shared_ptr<SfxDialogController> xController;     // actual contents
106
    SfxChildAlignment          eChildAlignment; // Current css::drawing::Alignment
107
                                                 // Another window in pWindow
108
    sal_uInt16                 nType;           // ChildWindow-Id
109
    SAL_DLLPRIVATE void ClearWorkwin();
110
111
protected:
112
0
    void                SetWindow(const VclPtr<vcl::Window>& p) { pWindow = p; }
113
                        SfxChildWindow(vcl::Window *pParentWindow, sal_uInt16 nId);
114
115
public:
116
    virtual             ~SfxChildWindow();
117
    // subclasses can override this in case any initialization needs to happen after
118
    // the constructor was called (e.g. to avoid calling virtual methods in the constructor)
119
0
    virtual             void Initialize() {}
120
    void                Destroy();
121
    vcl::Window*        GetWindow() const
122
0
                        { return pWindow; }
123
0
    void                SetController(const std::shared_ptr<SfxDialogController>& controller) { xController = controller; }
124
0
    void                ClearController() { xController.reset(); }
125
0
    std::shared_ptr<SfxDialogController>& GetController() { return xController; }
126
0
    const std::shared_ptr<SfxDialogController>& GetController() const { return xController; }
127
    vcl::Window*        GetParent() const
128
0
                        { return m_pParent; }
129
    SfxChildAlignment   GetAlignment() const
130
0
                        { return eChildAlignment; }
131
    void                SetAlignment(SfxChildAlignment eAlign);
132
    virtual void        Hide();
133
    virtual void        Show( ShowFlags nFlags );
134
    sal_uInt16          GetPosition() const;
135
    sal_uInt16          GetType() const
136
0
                        { return nType; }
137
138
    virtual SfxChildWinInfo GetInfo() const;
139
    void                SaveStatus(const SfxChildWinInfo& rInfo);
140
141
    static void         RegisterChildWindow(SfxModule*, const SfxChildWinFactory&);
142
143
    static std::unique_ptr<SfxChildWindow> CreateChildWindow( sal_uInt16, vcl::Window*, SfxBindings*, SfxChildWinInfo &);
144
    void                SetHideNotDelete( bool bOn );
145
    bool                IsHideNotDelete() const;
146
    bool                IsVisible() const;
147
    void                SetWantsFocus( bool );
148
    bool                WantsFocus() const;
149
150
    virtual bool        QueryClose();
151
    const css::uno::Reference< css::frame::XFrame >&   GetFrame() const;
152
    void                SetFrame( const css::uno::Reference< css::frame::XFrame > & );
153
154
    SAL_DLLPRIVATE static void InitializeChildWinFactory_Impl(sal_uInt16, SfxChildWinInfo&);
155
    void                SetVisible_Impl( bool bVis );
156
    SAL_DLLPRIVATE void SetWorkWindow_Impl( SfxWorkWindow* );
157
    SAL_DLLPRIVATE void Activate_Impl();
158
159
    SAL_DLLPRIVATE void SetFactory_Impl( const SfxChildWinFactory* );
160
};
161
162
const int nCloseResponseToJustHide = -42;
163
164
#define SFX_DECL_CHILDWINDOW(Class) \
165
    public  :   \
166
        static  std::unique_ptr<SfxChildWindow> CreateImpl(vcl::Window *pParent, sal_uInt16 nId, \
167
                    SfxBindings *pBindings, SfxChildWinInfo* pInfo ); \
168
        static  void RegisterChildWindow (bool bVisible=false, SfxModule *pMod=nullptr, SfxChildWindowFlags nFlags=SfxChildWindowFlags::NONE); \
169
        virtual SfxChildWinInfo GetInfo() const override
170
171
#define SFX_DECL_CHILDWINDOW_WITHID(Class) \
172
        SFX_DECL_CHILDWINDOW(Class); \
173
        static  sal_uInt16 GetChildWindowId ()\
174
175
#define SFX_IMPL_CHILDWINDOW(Class, MyID) \
176
        SFX_IMPL_POS_CHILDWINDOW(Class, MyID, CHILDWIN_NOPOS)
177
178
#define SFX_IMPL_CHILDWINDOW_WITHID(Class, MyID) \
179
        SFX_IMPL_POS_CHILDWINDOW_WITHID(Class, MyID, CHILDWIN_NOPOS)
180
181
#define SFX_IMPL_POS_CHILDWINDOW(Class, MyID, Pos) \
182
        std::unique_ptr<SfxChildWindow> Class::CreateImpl( vcl::Window *pParent, \
183
                sal_uInt16 nId, SfxBindings *pBindings, SfxChildWinInfo* pInfo ) \
184
0
                {   \
185
0
                    return std::make_unique<Class>(pParent, nId, pBindings, pInfo);\
186
0
                } \
Unexecuted instantiation: sc::SearchResultsDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScNavigatorWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScNameDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScNameDefDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScSolverDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScOptSolverDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScXMLSourceDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScPivotLayoutWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScTabOpDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScFilterDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScSpecialFilterDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScDbNameDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScConsolidateDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScPrintAreasDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScColRowNameRangesDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScFormulaDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScAcceptChgDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScHighlightChgDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScSimpleRefDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScCondFormatDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScTableLayoutWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScValidityRefChildWin::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScSpellDialogChildWindow::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: ScInputWindowWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: avmedia::MediaPlayer::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: DevelopmentToolChildWindow::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SfxInfoBarContainerChild::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SfxPartChildWnd_Impl::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SfxRecordingFloatWrapper_Impl::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: sfx2::sidebar::SidebarChildWindow::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SvxFontWorkChildWindow::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SvxHlinkDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SvxIMapDlgChildWindow::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SvxSearchDialogWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: FmPropBrwMgr::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: FmFieldWinMgr::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: svxform::DataNavigatorManager::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: svxform::NavigatorFrameManager::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SmCmdBoxWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: Svx3DChildWindow::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SwSpellDialogChildWindow::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SwSyncChildWin::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SwFieldDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SwFieldDataOnlyDlgWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SwInsertIdxMarkWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SwInsertAuthMarkWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SwWordCountWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SwRedlineAcceptChild::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SwInputChild::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: sw::sidebar::QuickFindPanelWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SwNavigatorWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SvxContourDlgChildWindow::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SvxRubyChildWindow::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: sd::AnimationChildWindow::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: sd::LeftPaneImpressChildWindow::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: sd::BottomPaneImpressChildWindow::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: sd::LeftPaneDrawChildWindow::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: sd::SpellDialogChildWindow::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: sd::SdNavigatorWrapper::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SvxBmpMaskChildWindow::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
Unexecuted instantiation: SvxColorChildWindow::CreateImpl(vcl::Window*, unsigned short, SfxBindings*, SfxChildWinInfo*)
187
        void    Class::RegisterChildWindow (bool bVis, SfxModule *pMod, SfxChildWindowFlags nFlags)   \
188
793
                {   \
189
793
                    SfxChildWinFactory aFact( \
190
793
                        Class::CreateImpl, MyID, Pos );   \
191
793
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
793
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
793
                    aFact.aInfo.nFlags |= nFlags;  \
194
793
                    aFact.aInfo.bVisible = bVis;         \
195
793
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
793
                }
sc::SearchResultsDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScNavigatorWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScNameDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScNameDefDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScSolverDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScOptSolverDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScXMLSourceDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScPivotLayoutWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScTabOpDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScFilterDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScSpecialFilterDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScDbNameDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScConsolidateDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScPrintAreasDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScColRowNameRangesDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScFormulaDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScAcceptChgDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScHighlightChgDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScSimpleRefDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScCondFormatDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScTableLayoutWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScValidityRefChildWin::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScSpellDialogChildWindow::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
ScInputWindowWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
11
                {   \
189
11
                    SfxChildWinFactory aFact( \
190
11
                        Class::CreateImpl, MyID, Pos );   \
191
11
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
11
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
11
                    aFact.aInfo.nFlags |= nFlags;  \
194
11
                    aFact.aInfo.bVisible = bVis;         \
195
11
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
11
                }
avmedia::MediaPlayer::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
15
                {   \
189
15
                    SfxChildWinFactory aFact( \
190
15
                        Class::CreateImpl, MyID, Pos );   \
191
15
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
15
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
15
                    aFact.aInfo.nFlags |= nFlags;  \
194
15
                    aFact.aInfo.bVisible = bVis;         \
195
15
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
15
                }
DevelopmentToolChildWindow::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
26
                {   \
189
26
                    SfxChildWinFactory aFact( \
190
26
                        Class::CreateImpl, MyID, Pos );   \
191
26
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
26
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
26
                    aFact.aInfo.nFlags |= nFlags;  \
194
26
                    aFact.aInfo.bVisible = bVis;         \
195
26
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
26
                }
SfxInfoBarContainerChild::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
27
                {   \
189
27
                    SfxChildWinFactory aFact( \
190
27
                        Class::CreateImpl, MyID, Pos );   \
191
27
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
27
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
27
                    aFact.aInfo.nFlags |= nFlags;  \
194
27
                    aFact.aInfo.bVisible = bVis;         \
195
27
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
27
                }
SfxPartChildWnd_Impl::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
27
                {   \
189
27
                    SfxChildWinFactory aFact( \
190
27
                        Class::CreateImpl, MyID, Pos );   \
191
27
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
27
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
27
                    aFact.aInfo.nFlags |= nFlags;  \
194
27
                    aFact.aInfo.bVisible = bVis;         \
195
27
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
27
                }
SfxRecordingFloatWrapper_Impl::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
27
                {   \
189
27
                    SfxChildWinFactory aFact( \
190
27
                        Class::CreateImpl, MyID, Pos );   \
191
27
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
27
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
27
                    aFact.aInfo.nFlags |= nFlags;  \
194
27
                    aFact.aInfo.bVisible = bVis;         \
195
27
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
27
                }
sfx2::sidebar::SidebarChildWindow::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
27
                {   \
189
27
                    SfxChildWinFactory aFact( \
190
27
                        Class::CreateImpl, MyID, Pos );   \
191
27
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
27
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
27
                    aFact.aInfo.nFlags |= nFlags;  \
194
27
                    aFact.aInfo.bVisible = bVis;         \
195
27
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
27
                }
SvxFontWorkChildWindow::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
26
                {   \
189
26
                    SfxChildWinFactory aFact( \
190
26
                        Class::CreateImpl, MyID, Pos );   \
191
26
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
26
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
26
                    aFact.aInfo.nFlags |= nFlags;  \
194
26
                    aFact.aInfo.bVisible = bVis;         \
195
26
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
26
                }
SvxHlinkDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
26
                {   \
189
26
                    SfxChildWinFactory aFact( \
190
26
                        Class::CreateImpl, MyID, Pos );   \
191
26
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
26
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
26
                    aFact.aInfo.nFlags |= nFlags;  \
194
26
                    aFact.aInfo.bVisible = bVis;         \
195
26
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
26
                }
SvxIMapDlgChildWindow::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
26
                {   \
189
26
                    SfxChildWinFactory aFact( \
190
26
                        Class::CreateImpl, MyID, Pos );   \
191
26
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
26
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
26
                    aFact.aInfo.nFlags |= nFlags;  \
194
26
                    aFact.aInfo.bVisible = bVis;         \
195
26
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
26
                }
SvxSearchDialogWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
26
                {   \
189
26
                    SfxChildWinFactory aFact( \
190
26
                        Class::CreateImpl, MyID, Pos );   \
191
26
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
26
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
26
                    aFact.aInfo.nFlags |= nFlags;  \
194
26
                    aFact.aInfo.bVisible = bVis;         \
195
26
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
26
                }
FmPropBrwMgr::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
26
                {   \
189
26
                    SfxChildWinFactory aFact( \
190
26
                        Class::CreateImpl, MyID, Pos );   \
191
26
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
26
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
26
                    aFact.aInfo.nFlags |= nFlags;  \
194
26
                    aFact.aInfo.bVisible = bVis;         \
195
26
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
26
                }
FmFieldWinMgr::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
26
                {   \
189
26
                    SfxChildWinFactory aFact( \
190
26
                        Class::CreateImpl, MyID, Pos );   \
191
26
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
26
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
26
                    aFact.aInfo.nFlags |= nFlags;  \
194
26
                    aFact.aInfo.bVisible = bVis;         \
195
26
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
26
                }
svxform::DataNavigatorManager::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
26
                {   \
189
26
                    SfxChildWinFactory aFact( \
190
26
                        Class::CreateImpl, MyID, Pos );   \
191
26
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
26
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
26
                    aFact.aInfo.nFlags |= nFlags;  \
194
26
                    aFact.aInfo.bVisible = bVis;         \
195
26
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
26
                }
svxform::NavigatorFrameManager::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
26
                {   \
189
26
                    SfxChildWinFactory aFact( \
190
26
                        Class::CreateImpl, MyID, Pos );   \
191
26
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
26
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
26
                    aFact.aInfo.nFlags |= nFlags;  \
194
26
                    aFact.aInfo.bVisible = bVis;         \
195
26
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
26
                }
SmCmdBoxWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
1
                {   \
189
1
                    SfxChildWinFactory aFact( \
190
1
                        Class::CreateImpl, MyID, Pos );   \
191
1
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
1
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
1
                    aFact.aInfo.nFlags |= nFlags;  \
194
1
                    aFact.aInfo.bVisible = bVis;         \
195
1
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
1
                }
Svx3DChildWindow::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
6
                {   \
189
6
                    SfxChildWinFactory aFact( \
190
6
                        Class::CreateImpl, MyID, Pos );   \
191
6
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
6
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
6
                    aFact.aInfo.nFlags |= nFlags;  \
194
6
                    aFact.aInfo.bVisible = bVis;         \
195
6
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
6
                }
SwSpellDialogChildWindow::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
9
                {   \
189
9
                    SfxChildWinFactory aFact( \
190
9
                        Class::CreateImpl, MyID, Pos );   \
191
9
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
9
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
9
                    aFact.aInfo.nFlags |= nFlags;  \
194
9
                    aFact.aInfo.bVisible = bVis;         \
195
9
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
9
                }
SwSyncChildWin::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
9
                {   \
189
9
                    SfxChildWinFactory aFact( \
190
9
                        Class::CreateImpl, MyID, Pos );   \
191
9
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
9
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
9
                    aFact.aInfo.nFlags |= nFlags;  \
194
9
                    aFact.aInfo.bVisible = bVis;         \
195
9
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
9
                }
SwFieldDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
9
                {   \
189
9
                    SfxChildWinFactory aFact( \
190
9
                        Class::CreateImpl, MyID, Pos );   \
191
9
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
9
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
9
                    aFact.aInfo.nFlags |= nFlags;  \
194
9
                    aFact.aInfo.bVisible = bVis;         \
195
9
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
9
                }
SwFieldDataOnlyDlgWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
9
                {   \
189
9
                    SfxChildWinFactory aFact( \
190
9
                        Class::CreateImpl, MyID, Pos );   \
191
9
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
9
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
9
                    aFact.aInfo.nFlags |= nFlags;  \
194
9
                    aFact.aInfo.bVisible = bVis;         \
195
9
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
9
                }
SwInsertIdxMarkWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
9
                {   \
189
9
                    SfxChildWinFactory aFact( \
190
9
                        Class::CreateImpl, MyID, Pos );   \
191
9
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
9
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
9
                    aFact.aInfo.nFlags |= nFlags;  \
194
9
                    aFact.aInfo.bVisible = bVis;         \
195
9
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
9
                }
SwInsertAuthMarkWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
9
                {   \
189
9
                    SfxChildWinFactory aFact( \
190
9
                        Class::CreateImpl, MyID, Pos );   \
191
9
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
9
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
9
                    aFact.aInfo.nFlags |= nFlags;  \
194
9
                    aFact.aInfo.bVisible = bVis;         \
195
9
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
9
                }
SwWordCountWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
9
                {   \
189
9
                    SfxChildWinFactory aFact( \
190
9
                        Class::CreateImpl, MyID, Pos );   \
191
9
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
9
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
9
                    aFact.aInfo.nFlags |= nFlags;  \
194
9
                    aFact.aInfo.bVisible = bVis;         \
195
9
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
9
                }
SwRedlineAcceptChild::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
9
                {   \
189
9
                    SfxChildWinFactory aFact( \
190
9
                        Class::CreateImpl, MyID, Pos );   \
191
9
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
9
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
9
                    aFact.aInfo.nFlags |= nFlags;  \
194
9
                    aFact.aInfo.bVisible = bVis;         \
195
9
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
9
                }
SwInputChild::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
9
                {   \
189
9
                    SfxChildWinFactory aFact( \
190
9
                        Class::CreateImpl, MyID, Pos );   \
191
9
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
9
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
9
                    aFact.aInfo.nFlags |= nFlags;  \
194
9
                    aFact.aInfo.bVisible = bVis;         \
195
9
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
9
                }
sw::sidebar::QuickFindPanelWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
9
                {   \
189
9
                    SfxChildWinFactory aFact( \
190
9
                        Class::CreateImpl, MyID, Pos );   \
191
9
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
9
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
9
                    aFact.aInfo.nFlags |= nFlags;  \
194
9
                    aFact.aInfo.bVisible = bVis;         \
195
9
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
9
                }
SwNavigatorWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
9
                {   \
189
9
                    SfxChildWinFactory aFact( \
190
9
                        Class::CreateImpl, MyID, Pos );   \
191
9
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
9
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
9
                    aFact.aInfo.nFlags |= nFlags;  \
194
9
                    aFact.aInfo.bVisible = bVis;         \
195
9
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
9
                }
SvxContourDlgChildWindow::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
9
                {   \
189
9
                    SfxChildWinFactory aFact( \
190
9
                        Class::CreateImpl, MyID, Pos );   \
191
9
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
9
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
9
                    aFact.aInfo.nFlags |= nFlags;  \
194
9
                    aFact.aInfo.bVisible = bVis;         \
195
9
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
9
                }
SvxRubyChildWindow::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
9
                {   \
189
9
                    SfxChildWinFactory aFact( \
190
9
                        Class::CreateImpl, MyID, Pos );   \
191
9
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
9
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
9
                    aFact.aInfo.nFlags |= nFlags;  \
194
9
                    aFact.aInfo.bVisible = bVis;         \
195
9
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
9
                }
sd::AnimationChildWindow::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
6
                {   \
189
6
                    SfxChildWinFactory aFact( \
190
6
                        Class::CreateImpl, MyID, Pos );   \
191
6
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
6
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
6
                    aFact.aInfo.nFlags |= nFlags;  \
194
6
                    aFact.aInfo.bVisible = bVis;         \
195
6
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
6
                }
sd::LeftPaneImpressChildWindow::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
6
                {   \
189
6
                    SfxChildWinFactory aFact( \
190
6
                        Class::CreateImpl, MyID, Pos );   \
191
6
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
6
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
6
                    aFact.aInfo.nFlags |= nFlags;  \
194
6
                    aFact.aInfo.bVisible = bVis;         \
195
6
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
6
                }
sd::BottomPaneImpressChildWindow::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
6
                {   \
189
6
                    SfxChildWinFactory aFact( \
190
6
                        Class::CreateImpl, MyID, Pos );   \
191
6
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
6
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
6
                    aFact.aInfo.nFlags |= nFlags;  \
194
6
                    aFact.aInfo.bVisible = bVis;         \
195
6
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
6
                }
sd::LeftPaneDrawChildWindow::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
6
                {   \
189
6
                    SfxChildWinFactory aFact( \
190
6
                        Class::CreateImpl, MyID, Pos );   \
191
6
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
6
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
6
                    aFact.aInfo.nFlags |= nFlags;  \
194
6
                    aFact.aInfo.bVisible = bVis;         \
195
6
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
6
                }
sd::SpellDialogChildWindow::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
6
                {   \
189
6
                    SfxChildWinFactory aFact( \
190
6
                        Class::CreateImpl, MyID, Pos );   \
191
6
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
6
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
6
                    aFact.aInfo.nFlags |= nFlags;  \
194
6
                    aFact.aInfo.bVisible = bVis;         \
195
6
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
6
                }
sd::SdNavigatorWrapper::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
6
                {   \
189
6
                    SfxChildWinFactory aFact( \
190
6
                        Class::CreateImpl, MyID, Pos );   \
191
6
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
6
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
6
                    aFact.aInfo.nFlags |= nFlags;  \
194
6
                    aFact.aInfo.bVisible = bVis;         \
195
6
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
6
                }
SvxBmpMaskChildWindow::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
6
                {   \
189
6
                    SfxChildWinFactory aFact( \
190
6
                        Class::CreateImpl, MyID, Pos );   \
191
6
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
6
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
6
                    aFact.aInfo.nFlags |= nFlags;  \
194
6
                    aFact.aInfo.bVisible = bVis;         \
195
6
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
6
                }
SvxColorChildWindow::RegisterChildWindow(bool, SfxModule*, SfxChildWindowFlags)
Line
Count
Source
188
6
                {   \
189
6
                    SfxChildWinFactory aFact( \
190
6
                        Class::CreateImpl, MyID, Pos );   \
191
6
                    if (comphelper::LibreOfficeKit::isActive() && nFlags == SfxChildWindowFlags::NONE) \
192
6
                        nFlags |= SfxChildWindowFlags::NEVERCLONE; \
193
6
                    aFact.aInfo.nFlags |= nFlags;  \
194
6
                    aFact.aInfo.bVisible = bVis;         \
195
6
                    SfxChildWindow::RegisterChildWindow(pMod, aFact); \
196
6
                }
197
198
#define SFX_IMPL_POS_CHILDWINDOW_WITHID(Class, MyID, Pos) \
199
        SFX_IMPL_POS_CHILDWINDOW(Class, MyID, Pos) \
200
        sal_uInt16 Class::GetChildWindowId () \
201
25.1k
                { return MyID; } \
sc::SearchResultsDlgWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScNameDlgWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScNameDefDlgWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScSolverDlgWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScOptSolverDlgWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScXMLSourceDlgWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScPivotLayoutWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScTabOpDlgWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScFilterDlgWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScSpecialFilterDlgWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScDbNameDlgWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScConsolidateDlgWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScPrintAreasDlgWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScColRowNameRangesDlgWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScFormulaDlgWrapper::GetChildWindowId()
Line
Count
Source
201
22
                { return MyID; } \
ScAcceptChgDlgWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScHighlightChgDlgWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScSimpleRefDlgWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScCondFormatDlgWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScTableLayoutWrapper::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScValidityRefChildWin::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
ScSpellDialogChildWindow::GetChildWindowId()
Line
Count
Source
201
11
                { return MyID; } \
Unexecuted instantiation: ScInputWindowWrapper::GetChildWindowId()
avmedia::MediaPlayer::GetChildWindowId()
Line
Count
Source
201
21
                { return MyID; } \
DevelopmentToolChildWindow::GetChildWindowId()
Line
Count
Source
201
44
                { return MyID; } \
SfxInfoBarContainerChild::GetChildWindowId()
Line
Count
Source
201
48
                { return MyID; } \
sfx2::sidebar::SidebarChildWindow::GetChildWindowId()
Line
Count
Source
201
45
                { return MyID; } \
SvxFontWorkChildWindow::GetChildWindowId()
Line
Count
Source
201
52
                { return MyID; } \
SvxHlinkDlgWrapper::GetChildWindowId()
Line
Count
Source
201
18
                { return MyID; } \
SvxIMapDlgChildWindow::GetChildWindowId()
Line
Count
Source
201
32
                { return MyID; } \
SvxSearchDialogWrapper::GetChildWindowId()
Line
Count
Source
201
44
                { return MyID; } \
SmCmdBoxWrapper::GetChildWindowId()
Line
Count
Source
201
1
                { return MyID; } \
Svx3DChildWindow::GetChildWindowId()
Line
Count
Source
201
12
                { return MyID; } \
SwSpellDialogChildWindow::GetChildWindowId()
Line
Count
Source
201
9
                { return MyID; } \
SwFieldDlgWrapper::GetChildWindowId()
Line
Count
Source
201
4.08k
                { return MyID; } \
SwInsertIdxMarkWrapper::GetChildWindowId()
Line
Count
Source
201
4.08k
                { return MyID; } \
SwInsertAuthMarkWrapper::GetChildWindowId()
Line
Count
Source
201
4.08k
                { return MyID; } \
SwWordCountWrapper::GetChildWindowId()
Line
Count
Source
201
1
                { return MyID; } \
SwRedlineAcceptChild::GetChildWindowId()
Line
Count
Source
201
4.08k
                { return MyID; } \
SwInputChild::GetChildWindowId()
Line
Count
Source
201
8.16k
                { return MyID; } \
SwNavigatorWrapper::GetChildWindowId()
Line
Count
Source
201
9
                { return MyID; } \
SvxContourDlgChildWindow::GetChildWindowId()
Line
Count
Source
201
9
                { return MyID; } \
sd::AnimationChildWindow::GetChildWindowId()
Line
Count
Source
201
6
                { return MyID; } \
Unexecuted instantiation: sd::LeftPaneImpressChildWindow::GetChildWindowId()
sd::BottomPaneImpressChildWindow::GetChildWindowId()
Line
Count
Source
201
6
                { return MyID; } \
Unexecuted instantiation: sd::LeftPaneDrawChildWindow::GetChildWindowId()
sd::SpellDialogChildWindow::GetChildWindowId()
Line
Count
Source
201
18
                { return MyID; } \
SvxBmpMaskChildWindow::GetChildWindowId()
Line
Count
Source
201
12
                { return MyID; } \
SvxColorChildWindow::GetChildWindowId()
Line
Count
Source
201
12
                { return MyID; } \
202
203
#define SFX_IMPL_MODELESSDIALOGCONTOLLER(Class, MyID)    \
204
        SFX_IMPL_CHILDWINDOW(Class, MyID)       \
205
        SfxChildWinInfo Class::GetInfo() const \
206
0
        {                                       \
207
0
            SfxChildWinInfo aInfo = SfxChildWindow::GetInfo();     \
208
0
            static_cast<const SfxModelessDialogController*>(GetController().get())->FillInfo( aInfo );  \
209
0
            return aInfo; }
Unexecuted instantiation: SfxRecordingFloatWrapper_Impl::GetInfo() const
Unexecuted instantiation: FmPropBrwMgr::GetInfo() const
Unexecuted instantiation: FmFieldWinMgr::GetInfo() const
Unexecuted instantiation: SwSyncChildWin::GetInfo() const
210
211
#define SFX_IMPL_MODELESSDIALOGCONTOLLER_WITHID(Class, MyID)    \
212
        SFX_IMPL_CHILDWINDOW_WITHID(Class, MyID)       \
213
        SfxChildWinInfo Class::GetInfo() const \
214
0
        {                                       \
215
0
            SfxChildWinInfo aInfo = SfxChildWindow::GetInfo();     \
216
0
            static_cast<const SfxModelessDialogController*>(GetController().get())->FillInfo( aInfo );  \
217
0
            return aInfo; }
Unexecuted instantiation: ScNameDlgWrapper::GetInfo() const
Unexecuted instantiation: ScNameDefDlgWrapper::GetInfo() const
Unexecuted instantiation: ScSolverDlgWrapper::GetInfo() const
Unexecuted instantiation: ScOptSolverDlgWrapper::GetInfo() const
Unexecuted instantiation: ScXMLSourceDlgWrapper::GetInfo() const
Unexecuted instantiation: ScPivotLayoutWrapper::GetInfo() const
Unexecuted instantiation: ScTabOpDlgWrapper::GetInfo() const
Unexecuted instantiation: ScFilterDlgWrapper::GetInfo() const
Unexecuted instantiation: ScSpecialFilterDlgWrapper::GetInfo() const
Unexecuted instantiation: ScDbNameDlgWrapper::GetInfo() const
Unexecuted instantiation: ScConsolidateDlgWrapper::GetInfo() const
Unexecuted instantiation: ScPrintAreasDlgWrapper::GetInfo() const
Unexecuted instantiation: ScColRowNameRangesDlgWrapper::GetInfo() const
Unexecuted instantiation: ScFormulaDlgWrapper::GetInfo() const
Unexecuted instantiation: ScAcceptChgDlgWrapper::GetInfo() const
Unexecuted instantiation: ScHighlightChgDlgWrapper::GetInfo() const
Unexecuted instantiation: ScSimpleRefDlgWrapper::GetInfo() const
Unexecuted instantiation: ScCondFormatDlgWrapper::GetInfo() const
Unexecuted instantiation: ScTableLayoutWrapper::GetInfo() const
Unexecuted instantiation: SvxIMapDlgChildWindow::GetInfo() const
Unexecuted instantiation: SwRedlineAcceptChild::GetInfo() const
Unexecuted instantiation: SvxContourDlgChildWindow::GetInfo() const
218
219
#define SFX_IMPL_DOCKINGWINDOW(Class, MyID) \
220
        SFX_IMPL_CHILDWINDOW(Class, MyID)       \
221
        SfxChildWinInfo Class::GetInfo() const \
222
0
        {                                       \
223
0
            SfxChildWinInfo aInfo = SfxChildWindow::GetInfo();     \
224
0
            static_cast<SfxDockingWindow*>(GetWindow())->FillInfo( aInfo );  \
225
0
            return aInfo; }
Unexecuted instantiation: ScNavigatorWrapper::GetInfo() const
Unexecuted instantiation: SfxPartChildWnd_Impl::GetInfo() const
Unexecuted instantiation: svxform::DataNavigatorManager::GetInfo() const
Unexecuted instantiation: svxform::NavigatorFrameManager::GetInfo() const
Unexecuted instantiation: sw::sidebar::QuickFindPanelWrapper::GetInfo() const
Unexecuted instantiation: sd::SdNavigatorWrapper::GetInfo() const
226
227
#define SFX_IMPL_DOCKINGWINDOW_WITHID(Class, MyID) \
228
        SFX_IMPL_CHILDWINDOW_WITHID(Class, MyID)       \
229
        SfxChildWinInfo Class::GetInfo() const \
230
0
        {                                       \
231
0
            SfxChildWinInfo aInfo = SfxChildWindow::GetInfo();     \
232
0
            static_cast<SfxDockingWindow*>(GetWindow())->FillInfo( aInfo );  \
233
0
            return aInfo; }
Unexecuted instantiation: avmedia::MediaPlayer::GetInfo() const
Unexecuted instantiation: DevelopmentToolChildWindow::GetInfo() const
Unexecuted instantiation: sfx2::sidebar::SidebarChildWindow::GetInfo() const
Unexecuted instantiation: SvxFontWorkChildWindow::GetInfo() const
Unexecuted instantiation: SmCmdBoxWrapper::GetInfo() const
Unexecuted instantiation: Svx3DChildWindow::GetInfo() const
Unexecuted instantiation: SwNavigatorWrapper::GetInfo() const
Unexecuted instantiation: sd::AnimationChildWindow::GetInfo() const
Unexecuted instantiation: sd::LeftPaneImpressChildWindow::GetInfo() const
Unexecuted instantiation: sd::BottomPaneImpressChildWindow::GetInfo() const
Unexecuted instantiation: sd::LeftPaneDrawChildWindow::GetInfo() const
Unexecuted instantiation: SvxBmpMaskChildWindow::GetInfo() const
Unexecuted instantiation: SvxColorChildWindow::GetInfo() const
234
235
bool GetPosSizeFromString( std::u16string_view rStr, Point& rPos, Size& rSize );
236
237
bool GetSplitSizeFromString( std::u16string_view rStr, Size& rSize );
238
239
#endif
240
241
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */