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 .
22 #include <vcl/weld.hxx>
23 #include <com/sun/star/uno/XComponentContext.hpp>
24 #include <com/sun/star/linguistic2/XConversionDictionary.hpp>
28 namespace textconversiondlgs
31 struct DictionaryEntry final
33 DictionaryEntry( const OUString
& rTerm
, const OUString
& rMapping
34 , sal_Int16 nConversionPropertyType
//linguistic2::ConversionPropertyType
35 , bool bNewEntry
= false );
41 sal_Int16 m_nConversionPropertyType
; //linguistic2::ConversionPropertyType
49 DictionaryList(std::unique_ptr
<weld::TreeView
> xTreeView
);
51 void init(const css::uno::Reference
< css::linguistic2::XConversionDictionary
>& xDictionary
,
52 weld::Entry
*pED_Term
, weld::Entry
*pED_Mapping
, weld::ComboBox
*pLB_Property
);
55 void refillFromDictionary( sal_Int32 nTextConversionOptions
/*i18n::TextConversionOption*/ );
58 DictionaryEntry
* getTermEntry( std::u16string_view rTerm
) const;
59 bool hasTerm( std::u16string_view rTerm
) const;
61 void addEntry( const OUString
& rTerm
, const OUString
& rMapping
62 , sal_Int16 nConversionPropertyType
/*linguistic2::ConversionPropertyType*/, int nPos
= -1);
63 int deleteEntries( std::u16string_view rTerm
); //return lowest position of deleted entries or -1 if no entry was deleted
64 void deleteEntryOnPos( sal_Int32 nPos
);
65 DictionaryEntry
* getEntryOnPos( sal_Int32 nPos
) const;
66 DictionaryEntry
* getFirstSelectedEntry() const;
68 void set_size_request(int nWidth
, int nHeight
) { m_xControl
->set_size_request(nWidth
, nHeight
); }
69 void hide() { m_xControl
->hide(); }
70 void show() { m_xControl
->show(); }
71 void connect_changed(const Link
<weld::TreeView
&, void>& rLink
) { m_xControl
->connect_changed(rLink
); }
72 void connect_column_clicked(const Link
<int, void>& rLink
) { m_xControl
->connect_column_clicked(rLink
); }
73 bool get_sort_order() const { return m_xControl
->get_sort_order(); }
74 void set_sort_order(bool bAscending
) { return m_xControl
->set_sort_order(bAscending
); }
75 void set_sort_column(int nColumn
) { return m_xControl
->set_sort_column(nColumn
); }
76 int get_sort_column() const { return m_xControl
->get_sort_column(); }
77 int get_selected_index() const { return m_xControl
->get_selected_index(); }
78 int get_height_rows(int nRows
) const { return m_xControl
->get_height_rows(nRows
); }
79 bool get_visible() const { return m_xControl
->get_visible(); }
80 void set_sort_indicator(TriState eState
, int nColumn
) { m_xControl
->set_sort_indicator(eState
, nColumn
); }
81 weld::TreeView
& get_widget() const { return *m_xControl
; }
84 OUString
getPropertyTypeName( sal_Int16 nConversionPropertyType
/*linguistic2::ConversionPropertyType*/ ) const;
87 css::uno::Reference
<css::linguistic2::XConversionDictionary
> m_xDictionary
;
90 std::unique_ptr
<weld::TreeView
> m_xControl
;
91 std::unique_ptr
<weld::TreeIter
> m_xIter
;
92 weld::Entry
* m_pED_Term
;
93 weld::Entry
* m_pED_Mapping
;
94 weld::ComboBox
* m_pLB_Property
;
96 std::vector
< DictionaryEntry
* > m_aToBeDeleted
;
99 class ChineseDictionaryDialog
: public weld::GenericDialogController
102 explicit ChineseDictionaryDialog(weld::Window
* pParent
);
103 virtual ~ChineseDictionaryDialog() override
;
105 //this method should be called once before calling execute
106 void setDirectionAndTextConversionOptions( bool bDirectionToSimplified
, sal_Int32 nTextConversionOptions
/*i18n::TextConversionOption*/ );
108 virtual short run() override
;
111 DECL_LINK( DirectionHdl
, weld::Toggleable
&, void );
112 DECL_LINK( EditFieldsHdl
, weld::Entry
&, void );
113 DECL_LINK( EditFieldsListBoxHdl
, weld::ComboBox
&, void );
114 DECL_LINK( MappingSelectHdl
, weld::TreeView
&, void );
115 DECL_LINK( AddHdl
, weld::Button
&, void );
116 DECL_LINK( ModifyHdl
, weld::Button
&, void );
117 DECL_LINK( DeleteHdl
, weld::Button
&, void );
118 static void HeaderBarClick(DictionaryList
& rList
, int nColumn
);
119 DECL_LINK(ToSimplifiedHeaderBarClick
, int, void);
120 DECL_LINK(ToTraditionalHeaderBarClick
, int, void);
121 DECL_LINK(SizeAllocHdl
, const Size
&, void);
123 void initDictionaryControl(DictionaryList
*pList
,
124 const css::uno::Reference
< css::linguistic2::XConversionDictionary
>& xDictionary
);
126 void updateAfterDirectionChange();
127 void updateButtons();
129 bool isEditFieldsHaveContent() const;
130 bool isEditFieldsContentEqualsSelectedListContent() const;
132 DictionaryList
& getActiveDictionary();
133 DictionaryList
& getReverseDictionary();
135 const DictionaryList
& getActiveDictionary() const;
136 const DictionaryList
& getReverseDictionary() const;
139 sal_Int32 m_nTextConversionOptions
; //i18n::TextConversionOption
141 css::uno::Reference
<css::uno::XComponentContext
> m_xContext
;
143 std::unique_ptr
<weld::RadioButton
> m_xRB_To_Simplified
;
144 std::unique_ptr
<weld::RadioButton
> m_xRB_To_Traditional
;
146 std::unique_ptr
<weld::CheckButton
> m_xCB_Reverse
;
148 std::unique_ptr
<weld::Label
> m_xFT_Term
;
149 std::unique_ptr
<weld::Entry
> m_xED_Term
;
151 std::unique_ptr
<weld::Label
> m_xFT_Mapping
;
152 std::unique_ptr
<weld::Entry
> m_xED_Mapping
;
154 std::unique_ptr
<weld::Label
> m_xFT_Property
;
155 std::unique_ptr
<weld::ComboBox
> m_xLB_Property
;
157 std::unique_ptr
<DictionaryList
> m_xCT_DictionaryToSimplified
;
158 std::unique_ptr
<DictionaryList
> m_xCT_DictionaryToTraditional
;
160 std::unique_ptr
<weld::Button
> m_xPB_Add
;
161 std::unique_ptr
<weld::Button
> m_xPB_Modify
;
162 std::unique_ptr
<weld::Button
> m_xPB_Delete
;
168 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */