Coverage Report

Created: 2026-08-14 10:22

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