LibreOffice Module sc (master) 1
calcoptionsdlg.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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 */
9
10#pragma once
11
12#include <vcl/weld.hxx>
13#include <calcconfig.hxx>
14
16{
17public:
18 ScCalcOptionsDialog(weld::Window* pParent, const ScCalcConfig& rConfig, bool bWriteConfig);
19 virtual ~ScCalcOptionsDialog() override;
20
21 DECL_LINK(AsZeroModifiedHdl, weld::Toggleable&, void);
22 DECL_LINK(ConversionModifiedHdl, weld::ComboBox&, void);
23 DECL_LINK(SyntaxModifiedHdl, weld::ComboBox&, void);
24 DECL_LINK(CurrentDocOnlyHdl, weld::Toggleable&, void);
25
26 const ScCalcConfig& GetConfig() const { return maConfig; }
27 bool GetWriteCalcConfig() const { return mbWriteConfig; }
28
29private:
31
32private:
36
37 std::unique_ptr<weld::CheckButton> mxEmptyAsZero;
38 std::unique_ptr<weld::ComboBox> mxConversion;
39 std::unique_ptr<weld::CheckButton> mxCurrentDocOnly;
40 std::unique_ptr<weld::ComboBox> mxSyntax;
41};
42
43/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
DECL_LINK(AsZeroModifiedHdl, weld::Toggleable &, void)
bool GetWriteCalcConfig() const
std::unique_ptr< weld::ComboBox > mxSyntax
std::unique_ptr< weld::CheckButton > mxEmptyAsZero
void CoupleEmptyAsZeroToStringConversion()
ScCalcOptionsDialog(weld::Window *pParent, const ScCalcConfig &rConfig, bool bWriteConfig)
DECL_LINK(CurrentDocOnlyHdl, weld::Toggleable &, void)
std::unique_ptr< weld::ComboBox > mxConversion
DECL_LINK(SyntaxModifiedHdl, weld::ComboBox &, void)
virtual ~ScCalcOptionsDialog() override
const ScCalcConfig & GetConfig() const
DECL_LINK(ConversionModifiedHdl, weld::ComboBox &, void)
std::unique_ptr< weld::CheckButton > mxCurrentDocOnly
Configuration options for formula interpreter.
Definition: calcconfig.hxx:44