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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
|
/* -*- 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_SWUICNTTAB_HXX
#define INCLUDED_SW_SOURCE_UIBASE_INC_SWUICNTTAB_HXX
#include <sfx2/tabdlg.hxx>
#include <svx/langbox.hxx>
#include <vcl/idle.hxx>
#include <vcl/weld.hxx>
#include <vcl/customweld.hxx>
#include <tox.hxx>
#include "toxmgr.hxx"
#include "cnttab.hxx"
#include <vector>
class IndexEntryResource;
class IndexEntrySupplierWrapper;
class SwTOXWidget;
class SwTOXEdit;
class SwTOXButton;
class SwTOXEntryTabPage;
class SwOneExampleFrame;
class SwWrtShell;
namespace com::sun::star{
namespace text{
class XTextSection;
class XDocumentIndex;
}
}
struct SwIndexSections_Impl
{
css::uno::Reference< css::text::XTextSection > xContainerSection;
css::uno::Reference< css::text::XDocumentIndex > xDocumentIndex;
};
class SwMultiTOXTabDialog final : public SfxTabDialogController
{
std::unique_ptr<SwTOXMgr> m_pMgr;
SwWrtShell& m_rWrtShell;
struct TypeData
{
std::unique_ptr<SwForm> m_pForm;
std::unique_ptr<SwTOXDescription> m_pDescription;
std::optional<SwIndexSections_Impl> m_oIndexSections;
};
std::vector<TypeData> m_vTypeData;
SwTOXBase* m_pParamTOXBase;
CurTOXType m_eCurrentTOXType;
OUString m_sUserDefinedIndex;
sal_uInt16 m_nInitialTOXType;
bool m_bEditTOX;
bool m_bExampleCreated;
bool m_bGlobalFlag;
std::unique_ptr<SwOneExampleFrame> m_xExampleFrame;
std::unique_ptr<weld::CheckButton> m_xShowExampleCB;
std::unique_ptr<weld::CustomWeld> m_xExampleFrameWin;
virtual short Ok() override;
std::unique_ptr<SwTOXDescription> CreateTOXDescFromTOXBase(const SwTOXBase*pCurTOX);
void ShowPreview();
DECL_LINK(CreateExample_Hdl, SwOneExampleFrame&, void);
DECL_LINK(ShowPreviewHdl, weld::Toggleable&, void);
public:
SwMultiTOXTabDialog(weld::Widget* pParent, const SfxItemSet& rSet,
SwWrtShell &rShell,
SwTOXBase* pCurTOX, sal_uInt16 nToxType,
bool bGlobal);
virtual ~SwMultiTOXTabDialog() override;
virtual void PageCreated(const OUString& rId, SfxTabPage &rPage) override;
SwForm* GetForm(CurTOXType eType);
const CurTOXType& GetCurrentTOXType() const { return m_eCurrentTOXType;}
void SetCurrentTOXType(const CurTOXType& eSet)
{
m_eCurrentTOXType = eSet;
}
bool IsTOXEditMode() const { return m_bEditTOX;}
SwWrtShell& GetWrtShell() {return m_rWrtShell;}
SwTOXDescription& GetTOXDescription(CurTOXType eTOXTypes);
void CreateOrUpdateExample(
TOXTypes nTOXIndex, sal_uInt16 nPage = 0, sal_uInt16 nCurLevel = USHRT_MAX);
static bool IsNoNum(SwWrtShell& rSh, const OUString& rName);
};
class SwTOXSelectTabPage final : public SfxTabPage
{
std::unique_ptr<IndexEntryResource> m_pIndexRes;
OUString m_aStyleArr[MAXLEVEL];
OUString m_sAutoMarkURL;
OUString m_sAutoMarkType;
OUString m_sAddStyleUser;
OUString m_sAddStyleContent;
std::unique_ptr<const IndexEntrySupplierWrapper> m_pIndexEntryWrapper;
bool m_bWaitingInitialSettings;
std::unique_ptr<weld::Entry> m_xTitleED;
std::unique_ptr<weld::Label> m_xTypeFT;
std::unique_ptr<weld::ComboBox> m_xTypeLB;
std::unique_ptr<weld::CheckButton> m_xReadOnlyCB;
std::unique_ptr<weld::Widget> m_xAreaFrame;
std::unique_ptr<weld::ComboBox> m_xAreaLB;
std::unique_ptr<weld::Widget> m_xLevelFT; //content, user
std::unique_ptr<weld::SpinButton> m_xLevelNF; //content, user
//content
std::unique_ptr<weld::Widget> m_xCreateFrame; // content, user, illustration
std::unique_ptr<weld::CheckButton> m_xFromHeadingsCB;
std::unique_ptr<weld::CheckButton> m_xStylesCB;
std::unique_ptr<weld::CheckButton> m_xAddStylesCB;
std::unique_ptr<weld::Button> m_xAddStylesPB;
//user
std::unique_ptr<weld::CheckButton> m_xFromTablesCB;
std::unique_ptr<weld::CheckButton> m_xFromFramesCB;
std::unique_ptr<weld::CheckButton> m_xFromGraphicsCB;
std::unique_ptr<weld::CheckButton> m_xFromOLECB;
std::unique_ptr<weld::CheckButton> m_xLevelFromChapterCB;
//illustration + table
std::unique_ptr<weld::RadioButton> m_xFromCaptionsRB;
std::unique_ptr<weld::RadioButton> m_xFromObjectNamesRB;
//illustration and tables
std::unique_ptr<weld::Label> m_xCaptionSequenceFT;
std::unique_ptr<weld::ComboBox> m_xCaptionSequenceLB;
std::unique_ptr<weld::Label> m_xDisplayTypeFT;
std::unique_ptr<weld::ComboBox> m_xDisplayTypeLB;
std::unique_ptr<weld::CheckButton> m_xParaStyleCB;
std::unique_ptr<weld::ComboBox> m_xParaStyleLB;
//all but illustration and table
std::unique_ptr<weld::CheckButton> m_xTOXMarksCB;
//index only
std::unique_ptr<weld::Widget> m_xIdxOptionsFrame;
std::unique_ptr<weld::CheckButton> m_xCollectSameCB;
std::unique_ptr<weld::CheckButton> m_xUseFFCB;
std::unique_ptr<weld::CheckButton> m_xUseDashCB;
std::unique_ptr<weld::CheckButton> m_xCaseSensitiveCB;
std::unique_ptr<weld::CheckButton> m_xInitialCapsCB;
std::unique_ptr<weld::CheckButton> m_xKeyAsEntryCB;
std::unique_ptr<weld::CheckButton> m_xFromFileCB;
std::unique_ptr<weld::MenuButton> m_xAutoMarkPB;
// object only
std::unique_ptr<weld::TreeView> m_xFromObjCLB;
std::unique_ptr<weld::Widget> m_xFromObjFrame;
std::unique_ptr<weld::CheckButton> m_xSequenceCB;
std::unique_ptr<weld::ComboBox> m_xBracketLB;
std::unique_ptr<weld::Widget> m_xAuthorityFrame;
//all
std::unique_ptr<weld::Widget> m_xSortFrame;
std::unique_ptr<SvxLanguageBox> m_xLanguageLB;
std::unique_ptr<weld::ComboBox> m_xSortAlgorithmLB;
DECL_LINK(TOXTypeHdl, weld::ComboBox&, void );
DECL_LINK(AddStylesHdl, weld::Button&, void );
DECL_LINK(MenuEnableHdl, weld::Toggleable&, void);
DECL_LINK(MenuExecuteHdl, const OUString&, void);
DECL_LINK(LanguageListBoxHdl, weld::ComboBox&, void);
void LanguageHdl(const weld::ComboBox*);
DECL_LINK(CheckBoxHdl, weld::Toggleable&, void );
DECL_LINK(RadioButtonHdl, weld::Toggleable&, void);
DECL_LINK(ModifyEntryHdl, weld::Entry&, void);
DECL_LINK(ModifySpinHdl, weld::SpinButton&, void);
DECL_LINK(ModifyListBoxHdl, weld::ComboBox&, void);
void ModifyHdl();
void ApplyTOXDescription();
void FillTOXDescription();
public:
SwTOXSelectTabPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rAttrSet);
virtual ~SwTOXSelectTabPage() override;
virtual bool FillItemSet( SfxItemSet* ) override;
virtual void Reset( const SfxItemSet* ) override;
virtual void ActivatePage( const SfxItemSet& ) override;
virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override;
static std::unique_ptr<SfxTabPage> Create( weld::Container* pPage, weld::DialogController* pController,
const SfxItemSet* rAttrSet);
void SelectType(TOXTypes eSet); //preset TOXType, GlobalDoc
void SetWrtShell(SwWrtShell const & rSh);
};
class SwTokenWindow
{
SwForm* m_pForm;
sal_uInt16 m_nLevel;
bool m_bValid;
OUString m_aButtonTexts[TOKEN_END]; // Text of the buttons
OUString m_aButtonHelpTexts[TOKEN_END]; // QuickHelpText of the buttons
OUString m_sCharStyle;
Link<SwFormToken&,void> m_aButtonSelectedHdl;
SwTOXWidget* m_pActiveCtrl;
Link<LinkParamNone*,void> m_aModifyHdl;
OUString m_sAccessibleName;
OUString m_sAdditionalAccnameString1;
OUString m_sAdditionalAccnameString2;
OUString m_sAdditionalAccnameString3;
Idle m_aAdjustPositionsIdle;
SwTOXEntryTabPage* m_pParent;
std::unique_ptr<weld::Container> m_xParentWidget;
std::unique_ptr<weld::Builder> m_xBuilder;
std::unique_ptr<weld::Container> m_xContainer;
std::unique_ptr<weld::Button> m_xLeftScrollWin;
std::unique_ptr<weld::Container> m_xCtrlParentWin;
std::unique_ptr<weld::ScrolledWindow> m_xScrollWin;
std::unique_ptr<weld::Button> m_xRightScrollWin;
std::vector<std::unique_ptr<SwTOXWidget>> m_aControlList;
DECL_LINK(EditResize, SwTOXEdit&, void);
DECL_LINK(NextItemHdl, SwTOXEdit&, void);
DECL_LINK(TbxFocusHdl, SwTOXWidget&, void);
DECL_LINK(NextItemBtnHdl, SwTOXButton&, void);
DECL_LINK(TbxFocusBtnHdl, SwTOXWidget&, void);
DECL_LINK(ScrollBtnHdl, weld::Button&, void);
DECL_LINK(ScrollHdl, weld::ScrolledWindow&, void);
DECL_LINK(AdjustPositionsHdl, const Size&, void);
void SetActiveControl(SwTOXWidget* pSet);
SwTOXWidget* InsertItem(const OUString& rText, const SwFormToken& aToken);
void AdjustPositions();
void AdjustScrolling();
void MoveControls(tools::Long nOffset);
public:
SwTokenWindow(std::unique_ptr<weld::Container> xParent);
weld::Container* get_child_container() { return m_xCtrlParentWin.get(); }
~SwTokenWindow();
void SetTabPage(SwTOXEntryTabPage *pParent) { m_pParent = pParent; }
void SetForm(SwForm& rForm, sal_uInt16 nLevel);
sal_uInt16 GetLastLevel()const {return m_nLevel;};
bool IsValid() const {return m_bValid;}
void SetInvalid() {m_bValid = false;}
OUString GetPattern() const;
void SetButtonSelectedHdl(const Link<SwFormToken&,void>& rLink)
{ m_aButtonSelectedHdl = rLink;}
void SetModifyHdl(const Link<LinkParamNone*,void>& rLink){m_aModifyHdl = rLink;}
SwTOXWidget* GetActiveControl() { return m_pActiveCtrl; }
void InsertAtSelection(const SwFormToken& aToken);
void RemoveControl(const SwTOXButton* pDel, bool bInternalCall = false);
bool Contains(FormTokenType) const;
//helper for pattern buttons and edits
OUString CreateQuickHelp(const SwFormToken& rToken);
void SetFocus2theAllBtn();
private:
sal_uInt32 GetControlIndex(FormTokenType eType) const;
};
class SwTOXEntryTabPage final : public SfxTabPage
{
OUString m_sDelimStr;
OUString m_sLevelStr;
OUString m_sAuthTypeStr;
OUString m_sNoCharStyle;
SwForm* m_pCurrentForm;
CurTOXType m_aLastTOXType;
bool m_bInLevelHdl;
std::unique_ptr<weld::Label> m_xTypeFT;
std::unique_ptr<weld::Label> m_xLevelFT;
std::unique_ptr<weld::TreeView> m_xLevelLB;
std::unique_ptr<weld::Button> m_xAllLevelsPB;
std::unique_ptr<weld::Button> m_xEntryNoPB;
std::unique_ptr<weld::Button> m_xEntryPB;
std::unique_ptr<weld::Button> m_xTabPB;
std::unique_ptr<weld::Button> m_xChapterInfoPB;
std::unique_ptr<weld::Button> m_xPageNoPB;
std::unique_ptr<weld::Button> m_xHyperLinkPB;
std::unique_ptr<weld::Widget> m_xFieldBox;
std::unique_ptr<weld::ComboBox> m_xAuthFieldsLB;
std::unique_ptr<weld::Button> m_xAuthInsertPB;
std::unique_ptr<weld::Button> m_xAuthRemovePB;
std::unique_ptr<weld::ComboBox> m_xCharStyleLB; // character style of the current token
std::unique_ptr<weld::Button> m_xEditStylePB;
std::unique_ptr<weld::Label> m_xChapterEntryFT;
std::unique_ptr<weld::ComboBox> m_xChapterEntryLB; // type of chapter info
std::unique_ptr<weld::Label> m_xNumberFormatFT;
std::unique_ptr<weld::ComboBox> m_xNumberFormatLB; //!< format for numbering (E#)
std::unique_ptr<weld::Label> m_xEntryOutlineLevelFT; //!< Fixed text, for i53420
std::unique_ptr<weld::SpinButton> m_xEntryOutlineLevelNF; //!< level to evaluate outline level to, for i53420
std::unique_ptr<weld::Label> m_xFillCharFT;
std::unique_ptr<weld::ComboBox> m_xFillCharCB; // fill char for tab stop
std::unique_ptr<weld::Label> m_xTabPosFT;
std::unique_ptr<weld::MetricSpinButton> m_xTabPosMF; // tab stop position
std::unique_ptr<weld::CheckButton> m_xAutoRightCB;
std::unique_ptr<weld::Widget> m_xFormatFrame;
std::unique_ptr<weld::Label> m_xMainEntryStyleFT;
std::unique_ptr<weld::ComboBox> m_xMainEntryStyleLB; // character style of main entries in indexes
std::unique_ptr<weld::CheckButton> m_xAlphaDelimCB;
std::unique_ptr<weld::CheckButton> m_xCommaSeparatedCB;
std::unique_ptr<weld::CheckButton> m_xRelToStyleCB; // position relative to the right margin of the para style
std::unique_ptr<weld::Widget> m_xSortingFrame;
std::unique_ptr<weld::RadioButton> m_xSortDocPosRB;
std::unique_ptr<weld::RadioButton> m_xSortContentRB;
std::unique_ptr<weld::Widget> m_xSortKeyFrame;
std::unique_ptr<weld::ComboBox> m_xFirstKeyLB;
std::unique_ptr<weld::ToggleButton> m_xFirstSortUpRB;
std::unique_ptr<weld::ToggleButton> m_xFirstSortDownRB;
std::unique_ptr<weld::ComboBox> m_xSecondKeyLB;
std::unique_ptr<weld::ToggleButton> m_xSecondSortUpRB;
std::unique_ptr<weld::ToggleButton> m_xSecondSortDownRB;
std::unique_ptr<weld::ComboBox> m_xThirdKeyLB;
std::unique_ptr<weld::ToggleButton> m_xThirdSortUpRB;
std::unique_ptr<weld::ToggleButton> m_xThirdSortDownRB;
std::unique_ptr<SwTokenWindow> m_xTokenWIN;
DECL_LINK(StyleSelectHdl, weld::ComboBox&, void);
DECL_LINK(EditStyleHdl, weld::Button&, void);
DECL_LINK(InsertTokenHdl, weld::Button&, void);
DECL_LINK(LevelHdl, weld::TreeView&, void);
DECL_LINK(AutoRightHdl, weld::Toggleable&, void);
DECL_LINK(TokenSelectedHdl, SwFormToken&, void);
DECL_LINK(TabPosHdl, weld::MetricSpinButton&, void);
DECL_LINK(FillCharHdl, weld::ComboBox&, void);
DECL_LINK(RemoveInsertAuthHdl, weld::Button&, void);
DECL_LINK(SortKeyHdl, weld::Toggleable&, void);
DECL_LINK(ChapterInfoHdl, weld::ComboBox&, void);
DECL_LINK(ChapterInfoOutlineHdl, weld::SpinButton&, void);
DECL_LINK(NumberFormatHdl, weld::ComboBox&, void);
DECL_LINK(ToggleHdl, weld::Toggleable&, void);
DECL_LINK(AllLevelsHdl, weld::Button&, void);
void WriteBackLevel();
void UpdateDescriptor();
DECL_LINK(ModifyHdl, LinkParamNone*, void);
void OnModify(bool bAllLevels);
DECL_LINK(ModifyClickHdl, weld::Toggleable&, void);
void ShowHideControls(int eType);
public:
SwTOXEntryTabPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rAttrSet);
virtual ~SwTOXEntryTabPage() override;
virtual bool FillItemSet( SfxItemSet* ) override;
virtual void Reset( const SfxItemSet* ) override;
virtual void ActivatePage( const SfxItemSet& ) override;
virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override;
static std::unique_ptr<SfxTabPage> Create( weld::Container* pPage, weld::DialogController* pController,
const SfxItemSet* rAttrSet);
void SetWrtShell(SwWrtShell& rSh);
void PreTokenButtonRemoved(const SwFormToken& rToken);
void SetFocus2theAllBtn();
};
class SwTOXStylesTabPage final : public SfxTabPage
{
std::unique_ptr<SwForm> m_pCurrentForm;
std::unique_ptr<weld::TreeView> m_xLevelLB;
std::unique_ptr<weld::Button> m_xAssignBT;
std::unique_ptr<weld::TreeView> m_xParaLayLB;
std::unique_ptr<weld::Button> m_xStdBT;
std::unique_ptr<weld::Button> m_xEditStyleBT;
DECL_LINK(EditStyleHdl, weld::Button&, void);
DECL_LINK(StdHdl, weld::Button&, void);
DECL_LINK(EnableSelectHdl, weld::TreeView&, void);
DECL_LINK(DoubleClickHdl, weld::TreeView&, bool);
DECL_LINK(AssignHdl, weld::Button&, void);
void Modify();
SwForm& GetForm()
{
SwMultiTOXTabDialog* pDlg = static_cast<SwMultiTOXTabDialog*>(GetDialogController());
return *pDlg->GetForm(pDlg->GetCurrentTOXType());
}
public:
SwTOXStylesTabPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rAttrSet);
virtual ~SwTOXStylesTabPage() override;
virtual bool FillItemSet( SfxItemSet* ) override;
virtual void Reset( const SfxItemSet* ) override;
virtual void ActivatePage( const SfxItemSet& ) override;
virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override;
static std::unique_ptr<SfxTabPage> Create( weld::Container* pPage, weld::DialogController* pController,
const SfxItemSet* rAttrSet);
};
#endif // INCLUDED_SW_SOURCE_UIBASE_INC_SWUICNTTAB_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|