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 .
19 #ifndef INCLUDED_CUI_SOURCE_INC_NUMFMT_HXX
20 #define INCLUDED_CUI_SOURCE_INC_NUMFMT_HXX
23 #include <rtl/ustring.hxx>
24 #include <sfx2/tabdlg.hxx>
25 #include <svx/langbox.hxx>
26 #include <tools/color.hxx>
27 #include <vcl/customweld.hxx>
28 #include <vcl/weld.hxx>
30 class SvxNumberFormatShell
;
31 class SvxNumberInfoItem
;
35 class SvxNumberPreview
: public weld::CustomWidgetController
44 virtual void Paint(vcl::RenderContext
& rRenderContext
, const ::tools::Rectangle
& rRect
) override
;
49 void NotifyChange( const OUString
& rPrevStr
, const Color
* pColor
= nullptr );
51 virtual void SetDrawingArea(weld::DrawingArea
* pDrawingArea
) override
53 CustomWidgetController::SetDrawingArea(pDrawingArea
);
54 pDrawingArea
->set_size_request(-1, pDrawingArea
->get_text_height() * 3);
58 class SvxNumberFormatTabPage
: public SfxTabPage
60 static const sal_uInt16 pRanges
[];
63 SvxNumberFormatTabPage(weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
& rCoreAttrs
);
64 static std::unique_ptr
<SfxTabPage
> Create( weld::Container
* pPage
, weld::DialogController
* pController
,
65 const SfxItemSet
* rAttrSet
);
66 virtual ~SvxNumberFormatTabPage() override
;
67 // Returns area information.
68 static const sal_uInt16
* GetRanges() { return pRanges
; }
70 virtual bool FillItemSet( SfxItemSet
* rSet
) override
;
71 virtual void Reset( const SfxItemSet
* rSet
) override
;
72 virtual DeactivateRC
DeactivatePage ( SfxItemSet
* pSet
) override
;
74 void HideLanguage(bool bFlag
=true);
75 virtual void PageCreated(const SfxAllItemSet
& aSet
) override
;
78 std::unique_ptr
<SvxNumberInfoItem
> pNumItem
;
79 std::unique_ptr
<SvxNumberFormatShell
> pNumFmtShell
;
80 sal_uLong nInitFormat
;
82 bool bNumItemFlag
; ///< for handling with DocShell
84 bool bLegacyAutomaticCurrency
;
87 OUString sAutomaticLangEntry
;
88 OUString sAutomaticCurrencyEntry
;
90 SvxNumberPreview m_aWndPreview
;
91 std::unique_ptr
<weld::Label
> m_xFtCategory
;
92 std::unique_ptr
<weld::TreeView
> m_xLbCategory
;
93 std::unique_ptr
<weld::Label
> m_xFtFormat
;
94 std::unique_ptr
<weld::ComboBox
> m_xLbCurrency
;
95 std::unique_ptr
<weld::TreeView
> m_xLbFormat
;
96 std::unique_ptr
<weld::Label
> m_xFtLanguage
;
97 std::unique_ptr
<weld::CheckButton
> m_xCbSourceFormat
;
98 std::unique_ptr
<weld::Label
> m_xFtOptions
;
99 std::unique_ptr
<weld::Label
> m_xFtDecimals
;
100 std::unique_ptr
<weld::SpinButton
> m_xEdDecimals
;
101 std::unique_ptr
<weld::Label
> m_xFtDenominator
;
102 std::unique_ptr
<weld::SpinButton
> m_xEdDenominator
;
103 std::unique_ptr
<weld::CheckButton
> m_xBtnNegRed
;
104 std::unique_ptr
<weld::Label
> m_xFtLeadZeroes
;
105 std::unique_ptr
<weld::SpinButton
> m_xEdLeadZeroes
;
106 std::unique_ptr
<weld::CheckButton
> m_xBtnThousand
;
107 std::unique_ptr
<weld::CheckButton
> m_xBtnEngineering
;
108 std::unique_ptr
<weld::Widget
> m_xFormatCodeFrame
;
109 std::unique_ptr
<weld::Entry
> m_xEdFormat
;
110 std::unique_ptr
<weld::Button
> m_xIbAdd
;
111 std::unique_ptr
<weld::Button
> m_xIbInfo
;
112 std::unique_ptr
<weld::Button
> m_xIbRemove
;
113 std::unique_ptr
<weld::Label
> m_xFtComment
;
114 std::unique_ptr
<weld::Entry
> m_xEdComment
;
115 std::unique_ptr
<SvxLanguageBox
> m_xLbLanguage
;
116 std::unique_ptr
<weld::CustomWeld
> m_xWndPreview
;
119 void FillCurrencyBox();
120 void FillFormatListBox_Impl( std::vector
<OUString
>& rEntries
);
121 void UpdateOptions_Impl( bool bCheckCatChange
);
122 void UpdateFormatListBox_Impl( bool bCat
, bool bUpdateEdit
);
123 void UpdateThousandEngineeringCheckBox();
124 void UpdateDecimalsDenominatorEditBox();
126 void EnableBySourceFormat_Impl();
127 void SetCategory( sal_uInt16 nPos
);
128 OUString
GetExpColorString( Color
*& rpPreviewColor
, const OUString
& aFormatStr
, short nTmpCatPos
);
129 void MakePreviewText( const OUString
& rFormat
);
130 void ChangePreviewText( sal_uInt16 nPos
);
131 void AddAutomaticLanguage_Impl(LanguageType eAutoLang
, bool bSelect
);
132 bool Click_Impl(weld::Button
& rIB
);
134 DECL_LINK(LostFocusHdl_Impl
, weld::Widget
&, void);
135 DECL_LINK(DoubleClickHdl_Impl
, weld::TreeView
&, bool);
136 DECL_LINK(SelFormatListBoxHdl_Impl
, weld::ComboBox
&, void);
137 DECL_LINK(SelFormatTreeListBoxHdl_Impl
, weld::TreeView
&, void);
138 DECL_LINK(SelFormatClickHdl_Impl
, weld::Button
&, void);
139 void SelFormatHdl_Impl(weld::Widget
*);
140 DECL_LINK(ClickHdl_Impl
, weld::Button
&, void);
141 DECL_LINK(EditModifyHdl_Impl
, weld::Entry
&, void);
142 DECL_LINK(OptEditHdl_Impl
, weld::SpinButton
&, void);
143 DECL_LINK(OptClickHdl_Impl
, weld::Button
&, void);
144 DECL_LINK(TimeHdl_Impl
, Timer
*, void);
145 void EditHdl_Impl(const weld::Entry
*);
146 void OptHdl_Impl(const weld::Widget
*);
148 // set and get currency, taking into account if the legacy
149 // automatic currency entry exists
150 void set_active_currency(sal_Int32 nCurCurrencyEntryPos
);
151 sal_uInt32
get_active_currency() const;
157 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */