1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
21 #include <sfx2/tabdlg.hxx>
22 #include <svx/langbox.hxx>
23 #include <com/sun/star/uno/Reference.hxx>
24 #include <com/sun/star/uno/Sequence.hxx>
26 namespace com::sun::star
{
30 namespace linguistic2
{
32 class XDictionaryList
;
33 class XLinguProperties
;
37 class SvxLinguData_Impl
;
39 // define ----------------------------------------------------------------
41 #define GROUP_MODULES (sal_uInt16(0x0008))
43 // forward ---------------------------------------------------------------
45 class SvxEditModulesDlg
: public weld::GenericDialogController
52 std::unique_ptr
<SvxLinguData_Impl
> pDefaultLinguData
;
53 SvxLinguData_Impl
& rLinguData
;
55 std::unique_ptr
<weld::TreeView
> m_xModulesCLB
;
56 std::unique_ptr
<weld::Button
> m_xPrioUpPB
;
57 std::unique_ptr
<weld::Button
> m_xPrioDownPB
;
58 std::unique_ptr
<weld::Button
> m_xBackPB
;
59 std::unique_ptr
<weld::LinkButton
> m_xMoreDictsLink
;
60 std::unique_ptr
<weld::Button
> m_xClosePB
;
61 std::unique_ptr
<SvxLanguageBox
> m_xLanguageLB
;
63 DECL_LINK( SelectHdl_Impl
, weld::TreeView
&, void );
64 DECL_LINK( UpDownHdl_Impl
, weld::Button
&, void );
65 DECL_LINK( ClickHdl_Impl
, weld::Button
&, void );
66 DECL_LINK( BackHdl_Impl
, weld::Button
&, void );
67 DECL_LINK( LangSelectListBoxHdl_Impl
, weld::ComboBox
&, void );
68 DECL_LINK( BoxCheckButtonHdl_Impl
, const weld::TreeView::iter_col
&, void );
69 DECL_STATIC_LINK( SvxEditModulesDlg
, OnLinkClick
, weld::LinkButton
&, bool);
70 void LangSelectHdl_Impl(const SvxLanguageBox
* pBox
);
73 SvxEditModulesDlg(weld::Window
* pParent
, SvxLinguData_Impl
& rData
);
74 virtual ~SvxEditModulesDlg() override
;
79 // class SvxLinguTabPage -------------------------------------------------
80 class SvxLinguTabPage
: public SfxTabPage
83 OUString sCapitalWords
;
84 OUString sWordsWithDigits
;
85 OUString sSpellSpecial
;
87 OUString sSpellClosedCompound
;
88 OUString sSpellHyphenatedCompound
;
89 OUString sGrammarAuto
;
90 OUString sNumMinWordlen
;
91 OUString sNumPreBreak
;
92 OUString sNumPostBreak
;
94 OUString sHyphSpecial
;
96 int nUPN_HYPH_MIN_WORD_LENGTH
;
97 int nUPN_HYPH_MIN_LEADING
;
98 int nUPN_HYPH_MIN_TRAILING
;
100 ImplSVEvent
* m_nDlbClickEventId
;
103 css::linguistic2::XLinguProperties
> xProp
;
106 css::linguistic2::XDictionaryList
> xDicList
;
109 css::linguistic2::XDictionary
> > aDics
;
111 std::unique_ptr
<SvxLinguData_Impl
> pLinguData
;
113 std::unique_ptr
<weld::Label
> m_xLinguModulesFT
;
114 std::unique_ptr
<weld::TreeView
> m_xLinguModulesCLB
;
115 std::unique_ptr
<weld::Button
> m_xLinguModulesEditPB
;
116 std::unique_ptr
<weld::Label
> m_xLinguDicsFT
;
117 std::unique_ptr
<weld::TreeView
> m_xLinguDicsCLB
;
118 std::unique_ptr
<weld::Button
> m_xLinguDicsNewPB
;
119 std::unique_ptr
<weld::Button
> m_xLinguDicsEditPB
;
120 std::unique_ptr
<weld::Button
> m_xLinguDicsDelPB
;
121 std::unique_ptr
<weld::TreeView
> m_xLinguOptionsCLB
;
122 std::unique_ptr
<weld::Button
> m_xLinguOptionsEditPB
;
123 std::unique_ptr
<weld::Box
> m_xMoreDictsBox
;
124 std::unique_ptr
<weld::LinkButton
> m_xMoreDictsLink
;
126 void AddDicBoxEntry( const css::uno::Reference
< css::linguistic2::XDictionary
> &rxDic
, sal_uInt16 nIdx
);
127 static sal_uInt32
GetDicUserData( const css::uno::Reference
< css::linguistic2::XDictionary
> &rxDic
, sal_uInt16 nIdx
);
129 DECL_LINK( SelectHdl_Impl
, weld::TreeView
&, void );
130 DECL_LINK( ClickHdl_Impl
, weld::Button
&, void );
131 DECL_LINK( BoxDoubleClickHdl_Impl
, weld::TreeView
&, bool );
132 DECL_LINK( ModulesBoxCheckButtonHdl_Impl
, const weld::TreeView::iter_col
&, void );
133 DECL_LINK( DicsBoxCheckButtonHdl_Impl
, const weld::TreeView::iter_col
&, void );
134 DECL_LINK( PostDblClickHdl_Impl
, void *, void);
135 DECL_STATIC_LINK( SvxLinguTabPage
, OnLinkClick
, weld::LinkButton
&, bool);
137 void UpdateModulesBox_Impl();
138 void UpdateDicBox_Impl();
141 SvxLinguTabPage(weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
& rCoreSet
);
142 static std::unique_ptr
<SfxTabPage
> Create( weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* rSet
);
143 virtual ~SvxLinguTabPage() override
;
145 virtual bool FillItemSet( SfxItemSet
* rSet
) override
;
146 virtual void Reset( const SfxItemSet
* rSet
) override
;
148 void HideGroups( sal_uInt16 nGrp
);
151 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */