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
|
/* -*- 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 .
*/
#pragma once
#include <sfx2/tabdlg.hxx>
#include <svx/langbox.hxx>
#include <map>
#include <set>
#include <utility>
class CharClass;
class CollatorWrapper;
class SmartTagMgr;
namespace editeng { class SortedAutoCompleteStrings; }
// class OfaAutoCorrDlg --------------------------------------------------
class OfaAutoCorrDlg : public SfxTabDialogController
{
std::unique_ptr<weld::Widget> m_xLanguageBox;
std::unique_ptr<SvxLanguageBox> m_xLanguageLB;
DECL_LINK(SelectLanguageHdl, weld::ComboBox&, void);
public:
OfaAutoCorrDlg(weld::Window* pParent, const SfxItemSet *pSet);
virtual ~OfaAutoCorrDlg() override;
void EnableLanguage(bool bEnable);
};
// class OfaAutocorrOptionsPage ------------------------------------------
class OfaAutocorrOptionsPage : public SfxTabPage
{
private:
OUString m_sInput;
OUString m_sDoubleCaps;
OUString m_sStartCap;
OUString m_sBoldUnderline;
OUString m_sURL;
OUString m_sNoDblSpaces;
OUString m_sDash;
OUString m_sAccidentalCaps;
std::unique_ptr<weld::TreeView> m_xCheckLB;
void InsertEntry(const OUString& rTxt);
public:
OfaAutocorrOptionsPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet);
virtual ~OfaAutocorrOptionsPage() override;
static std::unique_ptr<SfxTabPage> Create( weld::Container* pPage, weld::DialogController* pController,
const SfxItemSet* rAttrSet);
virtual bool FillItemSet( SfxItemSet* rSet ) override;
virtual void Reset( const SfxItemSet* rSet ) override;
virtual void ActivatePage( const SfxItemSet& ) override;
};
// class OfaSwAutoFmtOptionsPage ----------------------------------------------------
class OfaSwAutoFmtOptionsPage : public SfxTabPage
{
OUString sDeleteEmptyPara;
OUString sUseReplaceTbl;
OUString sCapitalStartWord;
OUString sCapitalStartSentence;
OUString sUserStyle;
OUString sBullet;
OUString sBoldUnder;
OUString sNoDblSpaces;
OUString sCorrectCapsLock;
OUString sDetectURL;
OUString sDash;
OUString sRightMargin;
OUString sNum;
OUString sBorder;
OUString sTable;
OUString sReplaceTemplates;
OUString sDelSpaceAtSttEnd;
OUString sDelSpaceBetweenLines;
OUString sMargin;
OUString sBulletChar;
OUString sByInputBulletChar;
vcl::Font aBulletFont;
vcl::Font aByInputBulletFont;
sal_uInt16 nPercent;
std::unique_ptr<weld::TreeView> m_xCheckLB;
std::unique_ptr<weld::Button> m_xEditPB;
DECL_LINK(SelectHdl, weld::TreeView&, void);
DECL_LINK(EditHdl, weld::Button&, void);
DECL_LINK(DoubleClickEditHdl, weld::TreeView&, bool);
void CreateEntry(const OUString& rTxt, sal_uInt16 nCol);
public:
OfaSwAutoFmtOptionsPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet);
static std::unique_ptr<SfxTabPage> Create( weld::Container* pPage, weld::DialogController* pController,
const SfxItemSet* rAttrSet);
virtual ~OfaSwAutoFmtOptionsPage() override;
virtual bool FillItemSet( SfxItemSet* rSet ) override;
virtual void Reset( const SfxItemSet* rSet ) override;
virtual void ActivatePage( const SfxItemSet& ) override;
};
// class OfaAutocorrReplacePage ------------------------------------------
struct DoubleString
{
OUString sShort;
OUString sLong;
void* pUserData; ///< CheckBox -> form. Text Bool -> selection text
DoubleString(OUString aShort, OUString aLong)
: sShort(std::move(aShort))
, sLong(std::move(aLong))
, pUserData(nullptr)
{
}
};
typedef std::vector<DoubleString> DoubleStringArray;
struct StringChangeList
{
DoubleStringArray aNewEntries;
DoubleStringArray aDeletedEntries;
};
typedef std::map<LanguageType, StringChangeList> StringChangeTable;
class OfaAutocorrReplacePage : public SfxTabPage
{
private:
StringChangeTable aChangesTable;
OUString sModify;
OUString sNew;
std::set<OUString> aFormatText;
std::map<LanguageType, DoubleStringArray>
aDoubleStringTable;
std::unique_ptr<CollatorWrapper> pCompareClass;
std::unique_ptr<CharClass> pCharClass;
LanguageType eLang;
bool bHasSelectionText;
bool bFirstSelect:1;
bool bReplaceEditChanged:1;
bool bSWriter:1;
std::vector<int> m_aReplaceFixedWidths;
std::unique_ptr<weld::CheckButton> m_xTextOnlyCB;
std::unique_ptr<weld::Entry> m_xShortED;
std::unique_ptr<weld::Entry> m_xReplaceED;
std::unique_ptr<weld::TreeView> m_xReplaceTLB;
std::unique_ptr<weld::Button> m_xNewReplacePB;
std::unique_ptr<weld::Button> m_xReplacePB;
std::unique_ptr<weld::Button> m_xDeleteReplacePB;
std::unique_ptr<weld::Container> m_xButtonBox;
DECL_LINK(SelectHdl, weld::TreeView&, void);
DECL_LINK(NewDelButtonHdl, weld::Button&, void);
DECL_LINK(NewDelActionHdl, weld::Entry&, bool);
DECL_LINK(EntrySizeAllocHdl, const Size&, void);
DECL_LINK(ModifyHdl, weld::Entry&, void);
bool NewDelHdl(const weld::Widget*);
void RefillReplaceBox( bool bFromReset,
LanguageType eOldLanguage,
LanguageType eNewLanguage);
public:
OfaAutocorrReplacePage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet);
virtual ~OfaAutocorrReplacePage() override;
static std::unique_ptr<SfxTabPage> Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rAttrSet);
virtual bool FillItemSet( SfxItemSet* rSet ) override;
virtual void Reset( const SfxItemSet* rSet ) override;
virtual void ActivatePage( const SfxItemSet& ) override;
virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override;
void SetLanguage(LanguageType eSet);
void DeleteEntry(const OUString& sShort, const OUString& sLong);
void NewEntry(const OUString& sShort, const OUString& sLong, bool bKeepSourceFormatting);
};
// class OfaAutocorrExceptPage ---------------------------------------------
struct StringsArrays
{
std::vector<OUString> aAbbrevStrings;
std::vector<OUString> aDoubleCapsStrings;
StringsArrays() { }
};
typedef std::map<LanguageType, StringsArrays> StringsTable;
class OfaAutocorrExceptPage : public SfxTabPage
{
private:
StringsTable aStringsTable;
std::unique_ptr<CollatorWrapper> pCompareClass;
LanguageType eLang;
std::unique_ptr<weld::Entry> m_xAbbrevED;
std::unique_ptr<weld::TreeView> m_xAbbrevLB;
std::unique_ptr<weld::Button> m_xNewAbbrevPB;
std::unique_ptr<weld::Button> m_xDelAbbrevPB;
std::unique_ptr<weld::CheckButton> m_xAutoAbbrevCB;
std::unique_ptr<weld::Entry> m_xDoubleCapsED;
std::unique_ptr<weld::TreeView> m_xDoubleCapsLB;
std::unique_ptr<weld::Button> m_xNewDoublePB;
std::unique_ptr<weld::Button> m_xDelDoublePB;
std::unique_ptr<weld::CheckButton> m_xAutoCapsCB;
DECL_LINK(NewDelButtonHdl, weld::Button&, void);
DECL_LINK(NewDelActionHdl, weld::Entry&, bool);
DECL_LINK(SelectHdl, weld::TreeView&, void);
DECL_LINK(ModifyHdl, weld::Entry&, void);
bool NewDelHdl(const weld::Widget*);
/// Box filled with new language
void RefillReplaceBoxes(bool bFromReset,
LanguageType eOldLanguage,
LanguageType eNewLanguage);
public:
OfaAutocorrExceptPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet);
virtual ~OfaAutocorrExceptPage() override;
static std::unique_ptr<SfxTabPage> Create( weld::Container* pPage, weld::DialogController* pController,
const SfxItemSet* rAttrSet);
virtual bool FillItemSet( SfxItemSet* rSet ) override;
virtual void Reset( const SfxItemSet* rSet ) override;
virtual void ActivatePage( const SfxItemSet& ) override;
virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override;
void SetLanguage(LanguageType eSet);
};
// class OfaQuoteTabPage -------------------------------------------------
class OfaQuoteTabPage : public SfxTabPage
{
private:
OUString sNonBrkSpace;
OUString sOrdinal;
OUString sTransliterateRTL;
OUString sAngleQuotes;
sal_UCS4 cSglStartQuote;
sal_UCS4 cSglEndQuote;
sal_UCS4 cStartQuote;
sal_UCS4 cEndQuote;
std::unique_ptr<weld::CheckButton> m_xSingleTypoCB;
std::unique_ptr<weld::Button> m_xSglStartQuotePB;
std::unique_ptr<weld::Label> m_xSglStartExFT;
std::unique_ptr<weld::Button> m_xSglEndQuotePB;
std::unique_ptr<weld::Label> m_xSglEndExFT;
std::unique_ptr<weld::Button> m_xSglStandardPB;
std::unique_ptr<weld::CheckButton> m_xDoubleTypoCB;
std::unique_ptr<weld::Button> m_xDblStartQuotePB;
std::unique_ptr<weld::Label> m_xDblStartExFT;
std::unique_ptr<weld::Button> m_xDblEndQuotePB;
std::unique_ptr<weld::Label> m_xDblEndExFT;
std::unique_ptr<weld::Button> m_xDblStandardPB;
OUString m_sStandard;
/// For anything but writer
std::unique_ptr<weld::TreeView> m_xCheckLB;
/// Just for writer
std::unique_ptr<weld::TreeView> m_xSwCheckLB;
DECL_LINK(QuoteHdl, weld::Button&, void);
DECL_LINK(StdQuoteHdl, weld::Button&, void);
OUString ChangeStringExt_Impl( sal_UCS4 );
static void CreateEntry(weld::TreeView& rLstBox, const OUString& rTxt,
sal_uInt16 nCol, sal_uInt16 nTextCol);
public:
OfaQuoteTabPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet);
static std::unique_ptr<SfxTabPage> Create(weld::Container* pPage, weld::DialogController* pController,
const SfxItemSet* rAttrSet);
virtual ~OfaQuoteTabPage() override;
virtual bool FillItemSet( SfxItemSet* rSet ) override;
virtual void Reset( const SfxItemSet* rSet ) override;
virtual void ActivatePage( const SfxItemSet& ) override;
};
// class OfaAutoCompleteTabPage ---------------------------------------------
class OfaAutoCompleteTabPage : public SfxTabPage
{
private:
editeng::SortedAutoCompleteStrings* m_pAutoCompleteList;
sal_uInt16 m_nAutoCmpltListCnt;
std::unique_ptr<weld::CheckButton> m_xCBActiv; ///<Enable word completion
std::unique_ptr<weld::CheckButton> m_xCBAppendSpace;///<Append space
std::unique_ptr<weld::CheckButton> m_xCBAsTip; ///<Show as tip
std::unique_ptr<weld::CheckButton> m_xCBCollect;///<Collect words
std::unique_ptr<weld::CheckButton> m_xCBRemoveList;///<...save the list for later use...
std::unique_ptr<weld::ComboBox> m_xDCBExpandKey;
std::unique_ptr<weld::SpinButton> m_xNFMinWordlen;
std::unique_ptr<weld::SpinButton> m_xNFMaxEntries;
std::unique_ptr<weld::TreeView> m_xLBEntries;
std::unique_ptr<weld::Button> m_xPBEntries;
DECL_LINK(CheckHdl, weld::Toggleable&, void);
DECL_LINK(KeyReleaseHdl, const KeyEvent&, bool);
public:
OfaAutoCompleteTabPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet);
static std::unique_ptr<SfxTabPage> Create(weld::Container* pPage, weld::DialogController* pController,
const SfxItemSet* rAttrSet);
virtual ~OfaAutoCompleteTabPage() override;
virtual bool FillItemSet( SfxItemSet* rSet ) override;
virtual void Reset( const SfxItemSet* rSet ) override;
virtual void ActivatePage( const SfxItemSet& ) override;
void CopyToClipboard() const;
DECL_LINK(DeleteHdl, weld::Button&, void);
};
// class OfaSmartTagOptionsTabPage ---------------------------------------------
/** Smart tag options tab page
This tab page is used to enable/disable smart tag types
*/
class OfaSmartTagOptionsTabPage : public SfxTabPage
{
private:
// controls
std::unique_ptr<weld::CheckButton> m_xMainCB;
std::unique_ptr<weld::TreeView> m_xSmartTagTypesLB;
std::unique_ptr<weld::Button> m_xPropertiesPB;
/** Inserts items into m_aSmartTagTypesLB
Reads out the smart tag types supported by the SmartTagMgr and
inserts the associated strings into the list box.
*/
void FillListBox( const SmartTagMgr& rSmartTagMgr );
/** Clears the m_aSmartTagTypesLB
*/
void ClearListBox();
/** Handler for the check box
Enables/disables all controls in the tab page (except from the
check box.
*/
DECL_LINK(CheckHdl, weld::Toggleable&, void);
/** Handler for the push button
Calls the displayPropertyPage function of the smart tag recognizer
associated with the currently selected smart tag type.
*/
DECL_LINK(ClickHdl, weld::Button&, void);
/** Handler for the list box
Enables/disables the properties push button if selection in the
smart tag types list box changes.
*/
DECL_LINK(SelectHdl, weld::TreeView&, void);
public:
/// construction via Create()
OfaSmartTagOptionsTabPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet);
virtual ~OfaSmartTagOptionsTabPage() override;
static std::unique_ptr<SfxTabPage> Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rAttrSet);
virtual bool FillItemSet( SfxItemSet* rSet ) override;
virtual void Reset( const SfxItemSet* rSet ) override;
virtual void ActivatePage( const SfxItemSet& ) override;
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|