1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
21 #include <sdabstdlg.hxx>
23 //AbstractDialogFactory_Impl implementations
24 class SdAbstractDialogFactory_Impl
: public SdAbstractDialogFactory
28 virtual ~SdAbstractDialogFactory_Impl() {}
30 virtual VclPtr
<AbstractSvxBulletAndPositionDlg
> CreateSvxBulletAndPositionDlg(weld::Window
* pParent
, const SfxItemSet
* pAttr
, ::sd::View
* pView
) override
;
31 virtual VclPtr
<VclAbstractDialog
> CreateBreakDlg(weld::Window
* pWindow
, ::sd::DrawView
* pDrView
, ::sd::DrawDocShell
* pShell
, sal_uLong nSumActionCount
, sal_uLong nObjCount
) override
;
32 virtual VclPtr
<AbstractCopyDlg
> CreateCopyDlg(weld::Window
* pParent
, const SfxItemSet
& rInAttrs
, ::sd::View
* pView
) override
;
33 virtual VclPtr
<AbstractSdCustomShowDlg
> CreateSdCustomShowDlg(weld::Window
* pParent
, SdDrawDocument
& rDrawDoc
) override
;
34 virtual VclPtr
<SfxAbstractTabDialog
> CreateSdTabCharDialog(weld::Window
* pWindow
, const SfxItemSet
* pAttr
, SfxObjectShell
* pDocShell
) override
;
35 virtual VclPtr
<SfxAbstractTabDialog
> CreateSdTabPageDialog(weld::Window
* pWindow
, const SfxItemSet
* pAttr
, SfxObjectShell
* pDocShell
, bool bAreaPage
, bool bIsImpressDoc
) override
;
36 virtual VclPtr
<AbstractSdModifyFieldDlg
> CreateSdModifyFieldDlg(weld::Window
* pWindow
, const SvxFieldData
* pInField
, const SfxItemSet
& rSet
) override
;
37 virtual VclPtr
<AbstractSdSnapLineDlg
> CreateSdSnapLineDlg(weld::Window
* pParent
, const SfxItemSet
& rInAttrs
, ::sd::View
* pView
) override
;
38 virtual VclPtr
<AbstractSdInsertLayerDlg
> CreateSdInsertLayerDlg(weld::Window
* pParent
, const SfxItemSet
& rInAttrs
, bool bDeletable
, const OUString
& aStr
) override
;
39 virtual VclPtr
<AbstractSdInsertPagesObjsDlg
> CreateSdInsertPagesObjsDlg(weld::Window
* pParent
, const SdDrawDocument
* pDoc
, SfxMedium
* pSfxMedium
, const OUString
& rFileName
) override
;
40 virtual VclPtr
<AbstractMorphDlg
> CreateMorphDlg(weld::Window
* pParent
, const SdrObject
* pObj1
, const SdrObject
* pObj2
) override
;
41 virtual VclPtr
<SfxAbstractTabDialog
> CreateSdOutlineBulletTabDlg(weld::Window
* pParent
, const SfxItemSet
* pAttr
, ::sd::View
* pView
) override
;
42 virtual VclPtr
<SfxAbstractTabDialog
> CreateSdParagraphTabDlg(weld::Window
* pParent
, const SfxItemSet
* pAttr
) override
;
43 virtual VclPtr
<AbstractSdStartPresDlg
> CreateSdStartPresentationDlg(weld::Window
* pWindow
, const SfxItemSet
& rInAttrs
,
44 const std::vector
<OUString
> &rPageNames
, SdCustomShowList
* pCSList
) override
;
45 virtual VclPtr
<VclAbstractDialog
> CreateRemoteDialog(weld::Window
* pWindow
) override
; // add for RemoteDialog
46 virtual VclPtr
<SfxAbstractTabDialog
> CreateSdPresLayoutTemplateDlg(SfxObjectShell
* pDocSh
, weld::Window
* pParent
, bool bBackgroundDlg
, SfxStyleSheetBase
& rStyleBase
, PresentationObjects ePO
, SfxStyleSheetBasePool
* pSSPool
) override
;
47 virtual VclPtr
<AbstractSdPresLayoutDlg
> CreateSdPresLayoutDlg(weld::Window
* pParent
, ::sd::DrawDocShell
* pDocShell
, const SfxItemSet
& rInAttrs
) override
;
48 virtual VclPtr
<SfxAbstractTabDialog
> CreateSdTabTemplateDlg(weld::Window
* pParent
, const SfxObjectShell
* pDocShell
, SfxStyleSheetBase
& rStyleBase
, SdrModel
* pModel
, SdrView
* pView
) override
;
49 virtual VclPtr
<SfxAbstractDialog
> CreatSdActionDialog(weld::Window
* pParent
, const SfxItemSet
& rAttr
, ::sd::View
* pView
) override
;
50 virtual VclPtr
<AbstractSdVectorizeDlg
> CreateSdVectorizeDlg(weld::Window
* pParent
, const Bitmap
& rBmp
, ::sd::DrawDocShell
* pDocShell
) override
;
52 virtual VclPtr
<VclAbstractDialog
> CreateSdPhotoAlbumDialog(weld::Window
* pWindow
, SdDrawDocument
* pDoc
) override
;
54 virtual VclPtr
<VclAbstractDialog
> CreateMasterLayoutDialog(weld::Window
* pParent
, SdDrawDocument
* pDoc
, SdPage
*) override
;
56 virtual VclPtr
<AbstractHeaderFooterDialog
> CreateHeaderFooterDialog(sd::ViewShell
* pViewShell
,
57 weld::Window
* pParent
,
59 SdPage
* pCurrentPage
) override
;
62 virtual CreateTabPage
GetSdOptionsContentsTabPageCreatorFunc() override
;
63 virtual CreateTabPage
GetSdPrintOptionsTabPageCreatorFunc() override
;
64 virtual CreateTabPage
GetSdOptionsMiscTabPageCreatorFunc() override
;
65 virtual CreateTabPage
GetSdOptionsSnapTabPageCreatorFunc() override
;
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */