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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
|
/* -*- 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/timer.hxx>
#include <vcl/transfer.hxx>
#include <vcl/weld.hxx>
#include <ndarr.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> {};
}
class SwContentTree;
class SwContentTreeDropTarget final : public DropTargetHelper
{
private:
SwContentTree& m_rTreeView;
virtual sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt ) override;
virtual sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt ) override;
public:
SwContentTreeDropTarget(SwContentTree& rTreeView);
};
/** TreeListBox for content indicator */
class SwContentTree final : public SfxListener
{
std::unique_ptr<weld::TreeView> m_xTreeView;
std::unique_ptr<weld::TreeIter> m_xScratchIter;
SwContentTreeDropTarget m_aDropTargetHelper;
SwNavigationPI* m_pDialog;
OUString 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 m_sInvisible;
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;
size_t m_nEntryCount;
ContentTypeId m_nRootType;
ContentTypeId m_nLastSelType;
sal_uInt8 m_nOutlineLevel;
sal_uInt8 m_nOutlineTracking = 1; // 1 default, 2 focus, 3 off
o3tl::enumarray<ContentTypeId, bool> mTrackContentType;
SwOutlineNodes::size_type m_nLastGotoContentWasOutlinePos = SwOutlineNodes::npos;
enum class State { ACTIVE, CONSTANT, HIDDEN } m_eState;
bool m_bIsRoot :1;
bool m_bIsIdleClear :1;
bool m_bIsLastReadOnly :1;
bool m_bIsOutlineMoveable :1;
bool m_bViewHasChanged :1;
// outline root mode drag & drop
std::vector<std::unique_ptr<weld::TreeIter>> m_aDndOutlinesSelected;
bool m_bDocHasChanged = true;
bool m_bIgnoreDocChange = false; // used to prevent tracking update
/**
* Before any data will be deleted, the last active entry has to be found.
* After this the UserData will be deleted
*/
void FindActiveTypeAndRemoveUserData();
void insert(const weld::TreeIter* pParent, const OUString& rStr, const OUString& rId,
bool bChildrenOnDemand, weld::TreeIter* pRet);
void remove(const weld::TreeIter& rIter);
SwNavigationPI* GetParentWindow();
bool FillTransferData( TransferDataContainer& rTransfer,
sal_Int8& rDragMode );
/** Check if the displayed content is valid. */
bool HasContentChanged();
size_t GetAbsPos(const weld::TreeIter& rIter);
void EditEntry(const weld::TreeIter& rEntry, EditEntryMode nMode);
void GotoContent(const SwContent* pCnt);
void ExecuteContextMenuAction(const OString& rSelectedPopupEntry);
void DeleteOutlineSelections();
void CopyOutlineSelections();
size_t GetEntryCount() const;
size_t GetChildCount(const weld::TreeIter& rParent) const;
std::unique_ptr<weld::TreeIter> GetEntryAtAbsPos(size_t nAbsPos) const;
void Expand(const weld::TreeIter& rParent, std::vector<std::unique_ptr<weld::TreeIter>>* pNodesToExpand);
void MoveOutline(SwOutlineNodes::size_type nTargetPos);
void UpdateLastSelType();
/** Expand - Remember the state for content types */
DECL_LINK(ExpandHdl, const weld::TreeIter&, bool);
/** Collapse - Remember the state for content types. */
DECL_LINK(CollapseHdl, const weld::TreeIter&, bool);
DECL_LINK(ContentDoubleClickHdl, weld::TreeView&, bool);
DECL_LINK(SelectHdl, weld::TreeView&, void);
DECL_LINK(FocusInHdl, weld::Widget&, void);
DECL_LINK(KeyInputHdl, const KeyEvent&, bool);
DECL_LINK(CommandHdl, const CommandEvent&, bool);
DECL_LINK(QueryTooltipHdl, const weld::TreeIter&, OUString);
DECL_LINK(DragBeginHdl, bool&, bool);
DECL_LINK(TimerUpdate, Timer *, void);
public:
SwContentTree(std::unique_ptr<weld::TreeView> xTreeView, SwNavigationPI* pDialog);
~SwContentTree();
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; }
bool IsInDrag() const;
sal_uInt8 GetOutlineLevel()const {return m_nOutlineLevel;}
void SetOutlineLevel(sal_uInt8 nSet);
void SetOutlineTracking(sal_uInt8 nSet);
void SetContentTypeTracking(ContentTypeId eCntTypeId, bool bSet);
/** Execute commands of the Navigator */
void ExecCommand(std::string_view 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;}
void Select();
void UpdateTracking();
void SelectOutlinesWithSelection();
void SelectContentType(std::u16string_view rContentTypeName);
// return true if it has any children
bool RequestingChildren(const weld::TreeIter& rParent);
virtual void Notify(SfxBroadcaster& rBC, SfxHint const& rHint) override;
sal_Int8 AcceptDrop(const AcceptDropEvent& rEvt);
sal_Int8 ExecuteDrop(const ExecuteDropEvent& rEvt);
bool IsDropFormatSupported(SotClipboardFormatId nFormat)
{
return m_aDropTargetHelper.IsDropFormatSupported(nFormat);
}
void set_accessible_name(const OUString& rName)
{
m_xTreeView->set_accessible_name(rName);
}
void grab_focus()
{
m_xTreeView->grab_focus();
}
void set_selection_mode(SelectionMode eMode)
{
m_xTreeView->set_selection_mode(eMode);
}
weld::TreeView& get_widget()
{
return *m_xTreeView;
}
};
namespace sfx2 { class DocumentInserter; }
namespace sfx2 { class FileDialogHelper; }
class SwGlobalTree;
class SwGlobalTreeDropTarget final : public DropTargetHelper
{
private:
SwGlobalTree& m_rTreeView;
virtual sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt ) override;
virtual sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt ) override;
public:
SwGlobalTreeDropTarget(SwGlobalTree& rTreeView);
};
class SwGlobalTree final : public SfxListener
{
private:
std::unique_ptr<weld::TreeView> m_xTreeView;
SwGlobalTreeDropTarget m_aDropTargetHelper;
SwNavigationPI* m_pDialog;
AutoTimer m_aUpdateTimer;
OUString m_aContextStrings[GLOBAL_CONTEXT_COUNT];
SwWrtShell* m_pActiveShell;
std::unique_ptr<SwGlblDocContents> m_pSwGlblDocContents; // array with sorted content
std::unique_ptr<SwGlblDocContent> m_pDocContent;
std::unique_ptr<sfx2::DocumentInserter> m_pDocInserter;
static const SfxObjectShell* s_pShowShell;
void InsertRegion( const SwGlblDocContent* _pContent,
const css::uno::Sequence< OUString >& _rFiles );
DECL_LINK( DialogClosedHdl, sfx2::FileDialogHelper*, void );
void Select();
DECL_LINK(Timeout, Timer*, void);
DECL_LINK(DoubleClickHdl, weld::TreeView&, bool);
DECL_LINK(SelectHdl, weld::TreeView&, void);
DECL_LINK(FocusInHdl, weld::Widget&, void);
DECL_LINK(KeyInputHdl, const KeyEvent&, bool);
DECL_LINK(CommandHdl, const CommandEvent&, bool);
DECL_LINK(QueryTooltipHdl, const weld::TreeIter&, OUString);
SwNavigationPI* GetParentWindow();
void OpenDoc(const SwGlblDocContent*);
void GotoContent(const SwGlblDocContent*);
MenuEnableFlags GetEnableFlags() const;
static void SetShowShell(const SfxObjectShell*pSet) {s_pShowShell = pSet;}
DECL_STATIC_LINK(SwGlobalTree, ShowFrameHdl, void*, void);
public:
SwGlobalTree(std::unique_ptr<weld::TreeView> xTreeView, SwNavigationPI* pDialog);
~SwGlobalTree();
bool get_visible() const { return m_xTreeView->get_visible(); }
void set_accessible_name(const OUString& rName)
{
m_xTreeView->set_accessible_name(rName);
}
void grab_focus()
{
m_xTreeView->grab_focus();
}
void set_selection_mode(SelectionMode eMode)
{
m_xTreeView->set_selection_mode(eMode);
}
weld::TreeView& get_widget()
{
return *m_xTreeView;
}
void MoveSelectionTo(const weld::TreeIter* pDropTarget);
void TbxMenuHdl(std::string_view rCommand, weld::Menu& rMenu);
void InsertRegion( const SwGlblDocContent* pCont,
const OUString* pFileName = nullptr );
void EditContent(const SwGlblDocContent* pCont );
void ShowTree();
void HideTree();
void ExecCommand(std::string_view rCmd);
void Display(bool bOnlyUpdateUserData = false);
bool Update(bool bHard);
void ExecuteContextMenuAction(std::string_view rSelectedPopupEntry);
const SwWrtShell* GetActiveWrtShell() const {return m_pActiveShell;}
virtual void Notify(SfxBroadcaster& rBC, SfxHint const& rHint) override;
void UpdateTracking();
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|