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
|
/* -*- 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_SVX_LANGBOX_HXX
#define INCLUDED_SVX_LANGBOX_HXX
#include <com/sun/star/uno/Sequence.hxx>
#include <svx/svxdllapi.h>
#include <vcl/image.hxx>
#include <vcl/lstbox.hxx>
#include <vcl/combobox.hxx>
#include <o3tl/typed_flags_set.hxx>
enum class SvxLanguageListFlags
{
EMPTY = 0x0000,
ALL = 0x0001,
WESTERN = 0x0002,
CTL = 0x0004,
CJK = 0x0008,
FBD_CHARS = 0x0010,
SPELL_AVAIL = 0x0020,
HYPH_AVAIL = 0x0040,
THES_AVAIL = 0x0080,
ONLY_KNOWN = 0x0100, // list only locales provided by I18N
SPELL_USED = 0x0200,
HYPH_USED = 0x0400,
THES_USED = 0x0800,
ALSO_PRIMARY_ONLY = 0x1000, // Do not exclude primary-only
// languages that do not form a
// locale, such as Arabic as
// opposed to Arabic-Egypt.
};
namespace o3tl
{
template<> struct typed_flags<SvxLanguageListFlags> : is_typed_flags<SvxLanguageListFlags, 0x1fff> {};
}
// load language strings from resource
SVX_DLLPUBLIC OUString GetDicInfoStr( const OUString& rName, const sal_uInt16 nLang, bool bNeg );
class SVX_DLLPUBLIC SvxLanguageBoxBase
{
private:
SvxLanguageBoxBase(const SvxLanguageBoxBase&) = delete;
SvxLanguageBoxBase& operator=(const SvxLanguageBoxBase&) = delete;
public:
explicit SvxLanguageBoxBase( bool bCheck );
virtual ~SvxLanguageBoxBase();
void SetLanguageList( SvxLanguageListFlags nLangList,
bool bHasLangNone, bool bLangNoneIsLangAll = false,
bool bCheckSpellAvail = false );
sal_Int32 InsertLanguage( const LanguageType eLangType, sal_Int32 nPos = LISTBOX_APPEND );
sal_Int32 InsertDefaultLanguage( sal_Int16 nType, sal_Int32 nPos = LISTBOX_APPEND );
sal_Int32 InsertSystemLanguage( sal_Int32 nPos = LISTBOX_APPEND );
sal_Int32 InsertLanguage( const LanguageType eLangType,
bool bCheckEntry, sal_Int32 nPos = LISTBOX_APPEND );
void RemoveLanguage( const LanguageType eLangType );
void SelectLanguage( const LanguageType eLangType, bool bSelect = true );
LanguageType GetSelectLanguage() const;
bool IsLanguageSelected( const LanguageType eLangType ) const;
void SetNoSelectionLBB();
void HideLBB();
void DisableLBB();
void SaveValueLBB();
sal_Int32 GetSelectEntryPosLBB( sal_Int32 nSelIndex = 0 ) const;
void* GetEntryDataLBB( sal_Int32 nPos ) const;
sal_Int32 GetSavedValueLBB() const;
protected:
Image m_aNotCheckedImage;
Image m_aCheckedImage;
OUString m_aAllString;
com::sun::star::uno::Sequence< sal_Int16 > *m_pSpellUsedLang;
SvxLanguageListFlags m_nLangList;
bool m_bHasLangNone;
bool m_bLangNoneIsLangAll;
bool m_bWithCheckmark;
SVX_DLLPRIVATE void ImplLanguageBoxBaseInit();
SVX_DLLPRIVATE sal_Int32 ImplInsertLanguage(LanguageType, sal_Int32 nPos, sal_Int16 nType);
SVX_DLLPRIVATE sal_Int32 ImplTypeToPos( LanguageType eType ) const;
SVX_DLLPRIVATE virtual sal_Int32 ImplInsertImgEntry( const OUString& rEntry, sal_Int32 nPos, bool bChecked ) = 0;
SVX_DLLPRIVATE virtual void ImplRemoveEntryAt( sal_Int32 nPos ) = 0;
SVX_DLLPRIVATE virtual void ImplClear() = 0;
SVX_DLLPRIVATE virtual sal_Int32 ImplInsertEntry( const OUString& rEntry, sal_Int32 nPos ) = 0;
SVX_DLLPRIVATE virtual void ImplSetEntryData( sal_Int32 nPos, void* pData ) = 0;
SVX_DLLPRIVATE virtual sal_Int32 ImplGetSelectEntryPos( sal_Int32 nSelIndex = 0 ) const = 0;
SVX_DLLPRIVATE virtual void* ImplGetEntryData( sal_Int32 nPos ) const = 0;
SVX_DLLPRIVATE virtual void ImplSelectEntryPos( sal_Int32 nPos, bool bSelect ) = 0;
SVX_DLLPRIVATE virtual bool ImplIsEntryPosSelected( sal_Int32 nPos ) const = 0;
SVX_DLLPRIVATE virtual sal_Int32 ImplGetEntryPos( const void* pData ) const = 0;
SVX_DLLPRIVATE virtual void ImplSetNoSelection() = 0;
SVX_DLLPRIVATE virtual void ImplHide() = 0;
SVX_DLLPRIVATE virtual void ImplDisable() = 0;
SVX_DLLPRIVATE virtual void ImplSaveValue() = 0;
SVX_DLLPRIVATE virtual sal_Int32 ImplGetSavedValue() const = 0;
};
class SVX_DLLPUBLIC SvxLanguageBox : public ListBox, public SvxLanguageBoxBase
{
public:
SvxLanguageBox( vcl::Window* pParent, WinBits nBits, bool bCheck = false );
private:
SVX_DLLPRIVATE virtual sal_Int32 ImplInsertImgEntry( const OUString& rEntry, sal_Int32 nPos, bool bChecked ) override;
SVX_DLLPRIVATE virtual void ImplRemoveEntryAt( sal_Int32 nPos ) override;
SVX_DLLPRIVATE virtual void ImplClear() override;
SVX_DLLPRIVATE virtual sal_Int32 ImplInsertEntry( const OUString& rEntry, sal_Int32 nPos ) override;
SVX_DLLPRIVATE virtual void ImplSetEntryData( sal_Int32 nPos, void* pData ) override;
SVX_DLLPRIVATE virtual sal_Int32 ImplGetSelectEntryPos( sal_Int32 nSelIndex = 0 ) const override;
SVX_DLLPRIVATE virtual void* ImplGetEntryData( sal_Int32 nPos ) const override;
SVX_DLLPRIVATE virtual void ImplSelectEntryPos( sal_Int32 nPos, bool bSelect ) override;
SVX_DLLPRIVATE virtual bool ImplIsEntryPosSelected( sal_Int32 nPos ) const override;
SVX_DLLPRIVATE virtual sal_Int32 ImplGetEntryPos( const void* pData ) const override;
SVX_DLLPRIVATE virtual void ImplSetNoSelection() override;
SVX_DLLPRIVATE virtual void ImplHide() override;
SVX_DLLPRIVATE virtual void ImplDisable() override;
SVX_DLLPRIVATE virtual void ImplSaveValue() override;
SVX_DLLPRIVATE virtual sal_Int32 ImplGetSavedValue() const override;
};
class SVX_DLLPUBLIC SvxLanguageComboBox : public ComboBox, public SvxLanguageBoxBase
{
public:
SvxLanguageComboBox( vcl::Window* pParent, WinBits nBits, bool bCheck = false );
enum EditedAndValid
{
EDITED_NO,
EDITED_VALID,
EDITED_INVALID
};
EditedAndValid GetEditedAndValid() const { return meEditedAndValid;}
sal_Int32 SaveEditedAsEntry();
private:
sal_Int32 mnSavedValuePos;
EditedAndValid meEditedAndValid;
SVX_DLLPRIVATE virtual sal_Int32 ImplInsertImgEntry( const OUString& rEntry, sal_Int32 nPos, bool bChecked ) override;
SVX_DLLPRIVATE virtual void ImplRemoveEntryAt( sal_Int32 nPos ) override;
SVX_DLLPRIVATE virtual void ImplClear() override;
SVX_DLLPRIVATE virtual sal_Int32 ImplInsertEntry( const OUString& rEntry, sal_Int32 nPos ) override;
SVX_DLLPRIVATE virtual void ImplSetEntryData( sal_Int32 nPos, void* pData ) override;
SVX_DLLPRIVATE virtual sal_Int32 ImplGetSelectEntryPos( sal_Int32 nSelIndex = 0 ) const override;
SVX_DLLPRIVATE virtual void* ImplGetEntryData( sal_Int32 nPos ) const override;
SVX_DLLPRIVATE virtual void ImplSelectEntryPos( sal_Int32 nPos, bool bSelect ) override;
SVX_DLLPRIVATE virtual bool ImplIsEntryPosSelected( sal_Int32 nPos ) const override;
SVX_DLLPRIVATE virtual sal_Int32 ImplGetEntryPos( const void* pData ) const override;
SVX_DLLPRIVATE virtual void ImplSetNoSelection() override;
SVX_DLLPRIVATE virtual void ImplHide() override;
SVX_DLLPRIVATE virtual void ImplDisable() override;
SVX_DLLPRIVATE virtual void ImplSaveValue() override;
SVX_DLLPRIVATE virtual sal_Int32 ImplGetSavedValue() const override;
DECL_LINK( EditModifyHdl, SvxLanguageComboBox* );
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|