nss: upgrade to release 3.73
[LibreOffice.git] / sc / source / ui / optdlg / calcoptionsdlg.hxx
blob11b9f7f5477edd220b6f708dc7303542313d83d1
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/.
8 */
10 #ifndef INCLUDED_SC_SOURCE_UI_OPTDLG_CALCOPTIONSDLG_HXX
11 #define INCLUDED_SC_SOURCE_UI_OPTDLG_CALCOPTIONSDLG_HXX
13 #include <vcl/weld.hxx>
14 #include <calcconfig.hxx>
16 class ScCalcOptionsDialog : public weld::GenericDialogController
18 public:
19 ScCalcOptionsDialog(weld::Window* pParent, const ScCalcConfig& rConfig, bool bWriteConfig);
20 virtual ~ScCalcOptionsDialog() override;
22 DECL_LINK(AsZeroModifiedHdl, weld::ToggleButton&, void);
23 DECL_LINK(ConversionModifiedHdl, weld::ComboBox&, void);
24 DECL_LINK(SyntaxModifiedHdl, weld::ComboBox&, void);
25 DECL_LINK(CurrentDocOnlyHdl, weld::ToggleButton&, void);
27 const ScCalcConfig& GetConfig() const { return maConfig; }
28 bool GetWriteCalcConfig() const { return mbWriteConfig; }
30 private:
31 void CoupleEmptyAsZeroToStringConversion();
33 private:
34 ScCalcConfig maConfig;
35 bool mbSelectedEmptyStringAsZero;
36 bool mbWriteConfig;
38 std::unique_ptr<weld::CheckButton> mxEmptyAsZero;
39 std::unique_ptr<weld::ComboBox> mxConversion;
40 std::unique_ptr<weld::CheckButton> mxCurrentDocOnly;
41 std::unique_ptr<weld::ComboBox> mxSyntax;
44 #endif
46 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */