tdf#130857 qt weld: Implement QtInstanceWidget::get_text_height
[LibreOffice.git] / include / svx / langbox.hxx
blobaf09654bfc629173c1747a35a84ce6e6ce6bf309
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef INCLUDED_SVX_LANGBOX_HXX
20 #define INCLUDED_SVX_LANGBOX_HXX
22 #include <memory>
23 #include <com/sun/star/uno/Sequence.hxx>
24 #include <com/sun/star/i18n/ScriptType.hpp>
25 #include <svx/svxdllapi.h>
26 #include <vcl/weld.hxx>
27 #include <o3tl/typed_flags_set.hxx>
29 enum class SvxLanguageListFlags
31 EMPTY = 0x0000,
32 ALL = 0x0001,
33 WESTERN = 0x0002,
34 CTL = 0x0004,
35 CJK = 0x0008,
36 FBD_CHARS = 0x0010,
37 ONLY_KNOWN = 0x0020, // list only locales provided by I18N
38 SPELL_USED = 0x0040,
40 namespace o3tl
42 template<> struct typed_flags<SvxLanguageListFlags> : is_typed_flags<SvxLanguageListFlags, 0x007f> {};
45 // load language strings from resource
46 SVXCORE_DLLPUBLIC OUString GetDicInfoStr( std::u16string_view rName, const LanguageType nLang, bool bNeg );
48 class SVXCORE_DLLPUBLIC
49 SvxLanguageBox
51 public:
52 enum class EditedAndValid
54 No,
55 Valid,
56 Invalid
59 private:
60 std::unique_ptr<weld::ComboBox> m_xControl;
61 Link<weld::ComboBox&, void> m_aChangeHdl;
62 std::unique_ptr<css::uno::Sequence<sal_Int16>> m_xSpellUsedLang;
63 LanguageType m_eSavedLanguage;
64 EditedAndValid m_eEditedAndValid;
65 bool m_bHasLangNone;
66 bool m_bLangNoneIsLangAll;
67 bool m_bWithCheckmark;
69 SVX_DLLPRIVATE weld::ComboBoxEntry BuildEntry(const LanguageType nLangType, sal_Int16 nType = css::i18n::ScriptType::WEAK);
70 SVX_DLLPRIVATE void AddLanguages(const std::vector< LanguageType >& rLanguageTypes, SvxLanguageListFlags nLangList,
71 std::vector<weld::ComboBoxEntry>& rEntries, bool requireSublang);
73 DECL_DLLPRIVATE_LINK(ChangeHdl, weld::ComboBox&, void);
74 public:
75 SvxLanguageBox(std::unique_ptr<weld::ComboBox> pControl);
76 void SetLanguageList( SvxLanguageListFlags nLangList,
77 bool bHasLangNone, bool bLangNoneIsLangAll = false,
78 bool bCheckSpellAvail = false, bool bDefaultLangExist = false,
79 LanguageType eDefaultLangType = LANGUAGE_NONE,
80 sal_Int16 nDefaultType = 0 );
81 void InsertLanguage(const LanguageType nLangType);
82 void InsertLanguages(const std::vector<LanguageType>& rLanguageTypes);
84 EditedAndValid GetEditedAndValid() const { return m_eEditedAndValid;}
85 SvxLanguageBox* SaveEditedAsEntry( SvxLanguageBox* ppBoxes[3] /* convention: Western, Asian, Complex */ );
87 void connect_changed(const Link<weld::ComboBox&, void>& rLink) { m_aChangeHdl = rLink; }
88 void connect_focus_in(const Link<weld::Widget&, void>& rLink) { m_xControl->connect_focus_in(rLink); }
89 void grab_focus() { m_xControl->grab_focus(); }
90 void save_active_id() { m_eSavedLanguage = get_active_id(); }
91 LanguageType get_saved_active_id() const { return m_eSavedLanguage; }
92 bool get_active_id_changed_from_saved() const { return m_eSavedLanguage != get_active_id(); }
93 void hide() { m_xControl->hide(); }
94 void set_visible(bool bShow) { m_xControl->set_visible(bShow); }
95 void set_size_request(int nWidth, int nHeight) { m_xControl->set_size_request(nWidth, nHeight); }
96 void set_width_chars(int nChars) { m_xControl->set_entry_width_chars(nChars); }
97 void set_sensitive(bool bSensitive) { m_xControl->set_sensitive(bSensitive); }
98 void set_active(int nPos) { m_xControl->set_active(nPos); }
99 int get_active() const { return m_xControl->get_active(); }
100 void set_active_id(const LanguageType eLangType);
101 OUString get_active_text() const { return m_xControl->get_active_text(); }
102 bool get_visible() const { return m_xControl->get_visible(); }
103 LanguageType get_active_id() const;
104 int find_id(const LanguageType eLangType) const;
105 LanguageType get_id(int nPos) const;
106 void set_id(int nPos, const LanguageType eLangType);
107 void remove_id(const LanguageType eLangType);
108 void append(const LanguageType eLangType, const OUString& rStr);
109 int find_text(const OUString& rStr) const { return m_xControl->find_text(rStr); }
110 OUString get_text(int nPos) const { return m_xControl->get_text(nPos); }
111 int get_count() const { return m_xControl->get_count(); }
112 weld::ComboBox* get_widget() { return m_xControl.get(); }
115 #endif
117 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */