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/.
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
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
; }
31 void CoupleEmptyAsZeroToStringConversion();
34 ScCalcConfig maConfig
;
35 bool mbSelectedEmptyStringAsZero
;
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
;
46 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */