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 .
19 #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_BASESH_HXX
20 #define INCLUDED_SW_SOURCE_UIBASE_INC_BASESH_HXX
22 #include <shellid.hxx>
24 #include <tools/link.hxx>
25 #include <sfx2/module.hxx>
26 #include <sfx2/shell.hxx>
38 struct DBTextStruct_Impl
;
39 class SW_DLLPUBLIC SwBaseShell
: public SfxShell
44 static FlyMode eFrameMode
;
46 // Bug 75078 - if in GetState the async call of GetGraphic returns
47 // synch, the set the state directly into the itemset
48 SfxItemSet
* pGetStateSet
;
50 // Update-Timer for graphic
51 std::set
<sal_uInt16
> aGrfUpdateSlots
;
53 DECL_LINK( GraphicArrivedHdl
, SwCursorShell
&, void );
56 SwWrtShell
& GetShell();
57 SwWrtShell
* GetShellPtr();
59 SwView
& GetView() { return rView
; }
60 void SetGetStateSet( SfxItemSet
* p
) { pGetStateSet
= p
; }
61 bool AddGrfUpdateSlot( sal_uInt16 nSlot
){ return aGrfUpdateSlots
.insert( nSlot
).second
; }
63 DECL_LINK( InsertDBTextHdl
, void*, void );
65 void InsertURLButton( const OUString
& rURL
, const OUString
& rTarget
, const OUString
& rText
);
66 void InsertTable( SfxRequest
& _rRequest
);
69 SwBaseShell(SwView
&rShell
);
70 virtual ~SwBaseShell() override
;
72 SFX_DECL_INTERFACE(SW_BASESHELL
)
75 /// SfxInterface initializer.
76 static void InitInterface_Impl();
79 void ExecDelete(SfxRequest
&);
81 void ExecClpbrd(SfxRequest
&);
82 void StateClpbrd(SfxItemSet
&);
84 void ExecUndo(SfxRequest
&);
85 void StateUndo(SfxItemSet
&);
87 void Execute(SfxRequest
&);
88 void GetState(SfxItemSet
&);
89 void StateStyle(SfxItemSet
&);
91 void ExecuteGallery(SfxRequest
&);
92 void GetGalleryState(SfxItemSet
&);
94 void ExecDlg(SfxRequest
&);
96 void ExecTextCtrl(SfxRequest
& rReq
);
97 void GetTextFontCtrlState(SfxItemSet
& rSet
);
98 void GetTextCtrlState(SfxItemSet
& rSet
);
99 void GetBorderState(SfxItemSet
&rSet
);
100 void GetBckColState(SfxItemSet
&rSet
);
102 void ExecBckCol(SfxRequest
& rReq
);
103 void SetWrapMode( sal_uInt16 nSlot
);
105 static void StateDisableItems(SfxItemSet
&);
107 void EditRegionDialog(SfxRequest
const & rReq
);
108 void InsertRegionDialog(SfxRequest
& rReq
);
110 void ExecField(SfxRequest
const & rReq
);
112 static void SetFrameMode( FlyMode eMode
, SwWrtShell
*pShell
); // with update!
113 static void SetFrameMode_( FlyMode eMode
) { eFrameMode
= eMode
; }
114 static FlyMode
GetFrameMode() { return eFrameMode
; }
116 // duplicate rOrig and rOrig's multi-selection Ring so the first element of the returned
117 // vector can be used equivalently to rOrig to affect the same selections
118 static std::shared_ptr
<std::vector
<std::unique_ptr
<SwPaM
>>> CopyPaMRing(SwPaM
& rOrig
);
123 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */