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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
|
/* -*- 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_SW_SOURCE_UIBASE_INC_CONTTREE_HXX
#define INCLUDED_SW_SOURCE_UIBASE_INC_CONTTREE_HXX
#include <svl/lstner.hxx>
#include <vcl/treelistbox.hxx>
#include <vcl/svlbitm.hxx>
#include "swcont.hxx"
#include <map>
#include <memory>
#include <o3tl/enumarray.hxx>
#include <o3tl/typed_flags_set.hxx>
class SwWrtShell;
class SwContentType;
class SwNavigationPI;
class SwNavigationConfig;
class Menu;
class ToolBox;
class SwGlblDocContents;
class SwGlblDocContent;
class SfxObjectShell;
class SdrObject;
enum class EditEntryMode
{
EDIT = 0,
UPD_IDX = 1,
RMV_IDX = 2,
UNPROTECT_TABLE = 3,
DELETE = 4,
RENAME = 5,
};
// Flags for PopupMenu-enable/disable
enum class MenuEnableFlags {
NONE = 0x0000,
InsertIdx = 0x0001,
InsertFile = 0x0002,
InsertText = 0x0004,
Edit = 0x0008,
Delete = 0x0010,
Update = 0x0020,
UpdateSel = 0x0040,
EditLink = 0x0080
};
namespace o3tl {
template<> struct typed_flags<MenuEnableFlags> : is_typed_flags<MenuEnableFlags, 0x00ff> {};
}
/** TreeListBox for content indicator */
class SwContentTree final
: public SvTreeListBox
, public SfxListener
{
VclPtr<SwNavigationPI> m_xDialog;
OUString const m_sSpace;
AutoTimer m_aUpdTimer;
o3tl::enumarray<ContentTypeId,std::unique_ptr<SwContentType>> m_aActiveContentArr;
o3tl::enumarray<ContentTypeId,std::unique_ptr<SwContentType>> m_aHiddenContentArr;
OUString m_aContextStrings[CONTEXT_COUNT + 1];
OUString const m_sRemoveIdx;
OUString const m_sUpdateIdx;
OUString const m_sUnprotTable;
OUString const m_sRename;
OUString const m_sReadonlyIdx;
OUString const m_sInvisible;
OUString const m_sPostItShow;
OUString const m_sPostItHide;
OUString const m_sPostItDelete;
OUString const m_sProtected;
SwWrtShell* m_pHiddenShell; // dropped Doc
SwWrtShell* m_pActiveShell; // the active or a const. open view
SwNavigationConfig* m_pConfig;
std::map< void*, bool > mOutLineNodeMap;
sal_Int32 m_nActiveBlock;
sal_Int32 m_nHiddenBlock;
ContentTypeId m_nRootType;
ContentTypeId m_nLastSelType;
sal_uInt8 m_nOutlineLevel;
enum class State { ACTIVE, CONSTANT, HIDDEN } m_eState;
bool m_bDocChgdInDragging :1;
bool m_bIsInternalDrag :1;
bool m_bIsRoot :1;
bool m_bIsIdleClear :1;
bool m_bIsLastReadOnly :1;
bool m_bIsOutlineMoveable :1;
bool m_bViewHasChanged :1;
static bool bIsInDrag;
bool m_bIsKeySpace;
tools::Rectangle m_aOldRectangle;
// outline root mode drag & drop
std::vector< SvTreeListEntry* > m_aDndOutlinesSelected;
/**
* Before any data will be deleted, the last active entry has to be found.
* After this the UserData will be deleted
*/
void FindActiveTypeAndRemoveUserData();
using SvTreeListBox::ExecuteDrop;
using SvTreeListBox::EditEntry;
virtual void RequestHelp( const HelpEvent& rHEvt ) override;
virtual void InitEntry(SvTreeListEntry*, const OUString&, const Image&, const Image&) override;
virtual void DataChanged( const DataChangedEvent& rDCEvt ) override;
SwNavigationPI* GetParentWindow();
virtual void StartDrag( sal_Int8 nAction, const Point& rPosPixel ) override;
virtual void DragFinished( sal_Int8 ) override;
virtual sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt ) override;
virtual sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt ) override;
bool FillTransferData( TransferDataContainer& rTransfer,
sal_Int8& rDragMode );
/** Check if the displayed content is valid. */
bool HasContentChanged();
virtual DragDropMode NotifyStartDrag( TransferDataContainer& rData,
SvTreeListEntry* ) override;
virtual bool NotifyAcceptDrop( SvTreeListEntry* ) override;
virtual TriState NotifyMoving( SvTreeListEntry* pTarget,
SvTreeListEntry* pEntry,
SvTreeListEntry*& rpNewParent,
sal_uLong& rNewChildPos
) override;
virtual TriState NotifyCopying( SvTreeListEntry* pTarget,
SvTreeListEntry* pEntry,
SvTreeListEntry*& rpNewParent,
sal_uLong& rNewChildPos
) override;
virtual void Paint( vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect ) override;
virtual void MouseButtonDown( const MouseEvent& rMEvt ) override;
void EditEntry( SvTreeListEntry const * pEntry, EditEntryMode nMode );
void GotoContent(const SwContent* pCnt);
static void SetInDrag(bool bSet) {bIsInDrag = bSet;}
virtual VclPtr<PopupMenu> CreateContextMenu() override;
virtual void ExecuteContextMenuAction( sal_uInt16 nSelectedPopupEntry ) override;
void DeleteOutlineSelections();
public:
SwContentTree(vcl::Window* pParent, SwNavigationPI* pDialog);
virtual ~SwContentTree() override;
virtual void dispose() override;
OUString GetEntryAltText( SvTreeListEntry* pEntry ) const override;
OUString GetEntryLongDescription( SvTreeListEntry* pEntry ) const override;
SdrObject* GetDrawingObjectsByContent(const SwContent *pCnt);
/** Switch the display to Root */
void ToggleToRoot();
void SetRootType(ContentTypeId nType);
/** Show the file */
void Display( bool bActiveView );
/** In the Clear the content types have to be deleted, also. */
void Clear();
/** After a file is dropped on the Navigator, the new shell will be set */
void SetHiddenShell(SwWrtShell* pSh);
void ShowHiddenShell();
void ShowActualView();
/** Document change - set new Shell */
void SetActiveShell(SwWrtShell* pSh);
/** Set an open view as active. */
void SetConstantShell(SwWrtShell* pSh);
SwWrtShell* GetWrtShell()
{ return State::HIDDEN == m_eState ? m_pHiddenShell : m_pActiveShell; }
static bool IsInDrag() {return bIsInDrag;}
sal_uInt8 GetOutlineLevel()const {return m_nOutlineLevel;}
void SetOutlineLevel(sal_uInt8 nSet);
/** Expand - Remember the state for content types */
virtual bool Expand( SvTreeListEntry* pParent ) override;
/** Collapse - Remember the state for content types. */
virtual bool Collapse( SvTreeListEntry* pParent ) override;
/** Execute commands of the Navigator */
void ExecCommand(const OUString& rCmd, bool bModifier);
void ShowTree();
void HideTree();
bool IsConstantView() const { return State::CONSTANT == m_eState; }
bool IsActiveView() const { return State::ACTIVE == m_eState; }
bool IsHiddenView() const { return State::HIDDEN == m_eState; }
const SwWrtShell* GetActiveWrtShell() const {return m_pActiveShell;}
SwWrtShell* GetHiddenWrtShell() {return m_pHiddenShell;}
DECL_LINK( ContentDoubleClickHdl, SvTreeListBox*, bool );
DECL_LINK( TimerUpdate, Timer *, void );
virtual sal_IntPtr GetTabPos( SvTreeListEntry*, SvLBoxTab* ) override;
virtual void RequestingChildren( SvTreeListEntry* pParent ) override;
virtual void GetFocus() override;
virtual void KeyInput(const KeyEvent& rKEvt) override;
virtual bool Select( SvTreeListEntry* pEntry, bool bSelect=true ) override;
virtual Size GetOptimalSize() const override;
virtual void Notify(SfxBroadcaster& rBC, SfxHint const& rHint) override;
};
// TreeListBox for global documents
class SwLBoxString : public SvLBoxString
{
public:
SwLBoxString( const OUString& rStr ) : SvLBoxString(rStr)
{
}
virtual void Paint(const Point& rPos, SvTreeListBox& rDev, vcl::RenderContext& rRenderContext,
const SvViewDataEntry* pView, const SvTreeListEntry& rEntry) override;
};
namespace sfx2 { class DocumentInserter; }
namespace sfx2 { class FileDialogHelper; }
class SwGlobalTree final : public SvTreeListBox
{
private:
VclPtr<SwNavigationPI> m_xDialog;
AutoTimer m_aUpdateTimer;
OUString m_aContextStrings[GLOBAL_CONTEXT_COUNT];
SwWrtShell* m_pActiveShell;
SvTreeListEntry* m_pEmphasisEntry; // Drag'n Drop emphasis
SvTreeListEntry* m_pDDSource; // source for Drag'n Drop
std::unique_ptr<SwGlblDocContents> m_pSwGlblDocContents; // array with sorted content
std::unique_ptr<SwGlblDocContent> m_pDocContent;
std::unique_ptr<sfx2::DocumentInserter> m_pDocInserter;
bool m_bIsInternalDrag :1;
bool m_bLastEntryEmphasis :1; // Drag'n Drop
static const SfxObjectShell* pShowShell;
void InsertRegion( const SwGlblDocContent* _pContent,
const css::uno::Sequence< OUString >& _rFiles );
DECL_LINK( DialogClosedHdl, sfx2::FileDialogHelper*, void );
using SvTreeListBox::DoubleClickHdl;
using SvTreeListBox::ExecuteDrop;
using Window::Update;
virtual sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt ) override;
virtual sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt ) override;
virtual void DataChanged( const DataChangedEvent& rDCEvt ) override;
virtual void RequestHelp( const HelpEvent& rHEvt ) override;
virtual sal_IntPtr GetTabPos( SvTreeListEntry*, SvLBoxTab* ) override;
virtual TriState NotifyMoving( SvTreeListEntry* pTarget,
SvTreeListEntry* pEntry,
SvTreeListEntry*& rpNewParent,
sal_uLong& rNewChildPos
) override;
virtual TriState NotifyCopying( SvTreeListEntry* pTarget,
SvTreeListEntry* pEntry,
SvTreeListEntry*& rpNewParent,
sal_uLong& rNewChildPos
) override;
virtual void StartDrag( sal_Int8 nAction, const Point& rPosPixel ) override;
virtual void DragFinished( sal_Int8 ) override;
virtual DragDropMode NotifyStartDrag( TransferDataContainer& rData,
SvTreeListEntry* ) override;
virtual bool NotifyAcceptDrop( SvTreeListEntry* ) override;
virtual void MouseButtonDown( const MouseEvent& rMEvt ) override;
virtual void KeyInput(const KeyEvent& rKEvt) override;
virtual void GetFocus() override;
virtual void SelectHdl() override;
virtual void DeselectHdl() override;
virtual void InitEntry(SvTreeListEntry*, const OUString&, const Image&, const Image&) override;
void Clear();
DECL_LINK( PopupHdl, Menu*, bool );
DECL_LINK( Timeout, Timer*, void );
DECL_LINK( DoubleClickHdl, SvTreeListBox*, bool );
SwNavigationPI* GetParentWindow();
void OpenDoc(const SwGlblDocContent*);
void GotoContent(const SwGlblDocContent*);
MenuEnableFlags GetEnableFlags() const;
static void SetShowShell(const SfxObjectShell*pSet) {pShowShell = pSet;}
DECL_STATIC_LINK(SwGlobalTree, ShowFrameHdl, void*, void);
virtual VclPtr<PopupMenu> CreateContextMenu() override;
virtual void ExecuteContextMenuAction( sal_uInt16 nSelectedPopupEntry ) override;
public:
SwGlobalTree(vcl::Window* pParent, SwNavigationPI* pDialog);
virtual ~SwGlobalTree() override;
virtual void dispose() override;
virtual Size GetOptimalSize() const override;
void TbxMenuHdl(sal_uInt16 nTbxId, ToolBox* pBox);
void InsertRegion( const SwGlblDocContent* pCont,
const OUString* pFileName = nullptr );
void EditContent(const SwGlblDocContent* pCont );
void ShowTree();
void HideTree();
void ExecCommand(const OUString& rCmd);
void Display(bool bOnlyUpdateUserData = false);
bool Update(bool bHard);
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|