1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_SD_SOURCE_UI_INC_DRAWDOCSHELL_HXX
#define INCLUDED_SD_SOURCE_UI_INC_DRAWDOCSHELL_HXX
#include <sfx2/docfac.hxx>
#include <sfx2/objsh.hxx>
#include <vcl/jobset.hxx>
#include "glob.hxx"
#include "sdmod.hxx"
#include "pres.hxx"
#include "sddllapi.h"
#include "fupoor.hxx"
class SfxStyleSheetBasePool;
class FontList;
class SdDrawDocument;
class SdPage;
class SfxPrinter;
struct SpellCallbackInfo;
class AbstractSvxNameDialog;
class SfxUndoManager;
namespace sd {
class FrameView;
class ViewShell;
// DrawDocShell
class SD_DLLPUBLIC DrawDocShell : public SfxObjectShell
{
public:
TYPEINFO_OVERRIDE();
SFX_DECL_INTERFACE(SD_IF_SDDRAWDOCSHELL)
SFX_DECL_OBJECTFACTORY();
private:
/// SfxInterface initializer.
static void InitInterface_Impl();
public:
DrawDocShell (
SfxObjectCreateMode eMode = SFX_CREATE_MODE_EMBEDDED,
bool bSdDataObj=false,
DocumentType=DOCUMENT_TYPE_IMPRESS);
DrawDocShell (
const sal_uInt64 nModelCreationFlags,
bool bSdDataObj=false,
DocumentType=DOCUMENT_TYPE_IMPRESS);
DrawDocShell (
SdDrawDocument* pDoc,
SfxObjectCreateMode eMode = SFX_CREATE_MODE_EMBEDDED,
bool bSdDataObj=false,
DocumentType=DOCUMENT_TYPE_IMPRESS);
virtual ~DrawDocShell();
void UpdateRefDevice();
virtual void Activate( bool bMDI ) SAL_OVERRIDE;
virtual void Deactivate( bool bMDI ) SAL_OVERRIDE;
virtual bool InitNew( const ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >& xStorage ) SAL_OVERRIDE;
virtual bool ImportFrom(SfxMedium &rMedium,
css::uno::Reference<css::text::XTextRange> const& xInsertPosition)
SAL_OVERRIDE;
virtual bool ConvertFrom( SfxMedium &rMedium ) SAL_OVERRIDE;
virtual bool Save() SAL_OVERRIDE;
virtual bool SaveAsOwnFormat( SfxMedium& rMedium ) SAL_OVERRIDE;
virtual bool ConvertTo( SfxMedium &rMedium ) SAL_OVERRIDE;
virtual bool SaveCompleted( const ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >& xStorage ) SAL_OVERRIDE;
virtual bool Load( SfxMedium &rMedium ) SAL_OVERRIDE;
virtual bool LoadFrom( SfxMedium& rMedium ) SAL_OVERRIDE;
virtual bool SaveAs( SfxMedium &rMedium ) SAL_OVERRIDE;
virtual Rectangle GetVisArea(sal_uInt16 nAspect) const SAL_OVERRIDE;
virtual void Draw(OutputDevice*, const JobSetup& rSetup, sal_uInt16 nAspect = ASPECT_CONTENT) SAL_OVERRIDE;
virtual ::svl::IUndoManager*
GetUndoManager() SAL_OVERRIDE;
virtual Printer* GetDocumentPrinter() SAL_OVERRIDE;
virtual void OnDocumentPrinterChanged(Printer* pNewPrinter) SAL_OVERRIDE;
virtual SfxStyleSheetBasePool* GetStyleSheetPool() SAL_OVERRIDE;
virtual Size GetFirstPageSize() SAL_OVERRIDE;
virtual void FillClass(SvGlobalName* pClassName, sal_uInt32* pFormat, OUString* pAppName, OUString* pFullTypeName, OUString* pShortTypeName, sal_Int32 nFileFormat, bool bTemplate = false ) const SAL_OVERRIDE;
virtual void SetModified( bool = true ) SAL_OVERRIDE;
virtual SfxDocumentInfoDialog* CreateDocumentInfoDialog( ::Window *pParent,
const SfxItemSet &rSet ) SAL_OVERRIDE;
using SotObject::GetInterface;
using SfxObjectShell::GetVisArea;
using SfxShell::GetViewShell;
sd::ViewShell* GetViewShell() { return mpViewShell; }
::sd::FrameView* GetFrameView();
rtl::Reference<FuPoor> GetDocShellFunction() const { return mxDocShellFunction; }
void SetDocShellFunction( const rtl::Reference<FuPoor>& xFunction );
SdDrawDocument* GetDoc() { return mpDoc;}
DocumentType GetDocumentType() const { return meDocType; }
SfxPrinter* GetPrinter(bool bCreate);
void SetPrinter(SfxPrinter *pNewPrinter);
void UpdateFontList();
bool IsInDestruction() const { return mbInDestruction; }
void CancelSearching();
void Execute( SfxRequest& rReq );
void GetState(SfxItemSet&);
void Connect(sd::ViewShell* pViewSh);
void Disconnect(sd::ViewShell* pViewSh);
void UpdateTablePointers();
bool GotoBookmark(const OUString& rBookmark);
//realize multi-selection of objects
bool GotoTreeBookmark(const OUString& rBookmark);
bool IsMarked( SdrObject* pObject );
bool GetObjectIsmarked(const OUString& rBookmark);
Bitmap GetPagePreviewBitmap(SdPage* pPage, sal_uInt16 nMaxEdgePixel);
/** checks, if the given name is a valid new name for a slide
<p>If the name is invalid, an <type>SvxNameDialog</type> pops up that
queries again for a new name until it is ok or the user chose
Cancel.</p>
@param pWin is necessary to pass to the <type>SvxNameDialog</type> in
case an invalid name was entered.
@param rName the new name that is to be set for a slide. This string
may be set to an empty string (see below).
@return sal_True, if the new name is unique. Note that if the user entered
a default name of a not-yet-existing slide (e.g. 'Slide 17'),
sal_True is returned, but rName is set to an empty string.
*/
bool CheckPageName(::Window* pWin, OUString& rName );
void SetSlotFilter(bool bEnable = false, sal_uInt16 nCount = 0, const sal_uInt16* pSIDs = NULL) { mbFilterEnable = bEnable; mnFilterCount = nCount; mpFilterSIDs = pSIDs; }
void ApplySlotFilter() const;
sal_uInt16 GetStyleFamily() const { return mnStyleFamily; }
void SetStyleFamily( sal_uInt16 nSF ) { mnStyleFamily = nSF; }
/** executes the SID_OPENDOC slot to let the framework open a document
with the given URL and this document as a referer */
void OpenBookmark( const OUString& rBookmarkURL );
/** checks, if the given name is a valid new name for a slide
<p>This method does not pop up any dialog (like CheckPageName).</p>
@param rInOutPageName the new name for a slide that is to be renamed.
This string will be set to an empty string if
bResetStringIfStandardName is true and the name is of the
form of any, possibly not-yet existing, standard slide
(e.g. 'Slide 17')
@param bResetStringIfStandardName if true allows setting rInOutPageName
to an empty string, which returns true and implies that the
slide will later on get a new standard name (with a free
slide number).
@return true, if the new name is unique. If bResetStringIfStandardName
is true, the return value is also true, if the slide name is
a standard name (see above)
*/
bool IsNewPageNameValid( OUString & rInOutPageName, bool bResetStringIfStandardName = false );
/** Return the reference device for the current document. When the
inherited implementation returns a device then this is passed to the
caller. Otherwise the returned value depends on the printer
independent layout mode and will usually be either a printer or a
virtual device used for screen rendering.
@return
Returns NULL when the current document has no reference device.
*/
virtual OutputDevice* GetDocumentRefDev (void) SAL_OVERRIDE;
DECL_LINK( RenameSlideHdl, AbstractSvxNameDialog* );
// ExecuteSpellPopup now handled by DrawDocShell
DECL_LINK( OnlineSpellCallback, SpellCallbackInfo* );
void ClearUndoBuffer();
protected:
SdDrawDocument* mpDoc;
SfxUndoManager* mpUndoManager;
SfxPrinter* mpPrinter;
::sd::ViewShell* mpViewShell;
FontList* mpFontList;
rtl::Reference<FuPoor> mxDocShellFunction;
DocumentType meDocType;
sal_uInt16 mnStyleFamily;
const sal_uInt16* mpFilterSIDs;
sal_uInt16 mnFilterCount;
bool mbFilterEnable;
bool mbSdDataObj;
bool mbInDestruction;
bool mbOwnPrinter;
bool mbNewDocument;
bool mbOwnDocument; // if true, we own mpDoc and will delete it in our d'tor
void Construct(bool bClipboard);
virtual void InPlaceActivate( bool bActive ) SAL_OVERRIDE;
public:
virtual void setDocAccTitle( const OUString& rTitle );
virtual const OUString getDocAccTitle() const;
virtual void setDocReadOnly( bool bReadOnly);
virtual bool getDocReadOnly() const;
};
#ifndef SV_DECL_DRAW_DOC_SHELL_DEFINED
#define SV_DECL_DRAW_DOC_SHELL_DEFINED
typedef ::tools::SvRef<DrawDocShell> DrawDocShellRef;
#endif
} // end of namespace sd
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|