diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:54:39 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:54:39 +0000 |
commit | 267c6f2ac71f92999e969232431ba04678e7437e (patch) | |
tree | 358c9467650e1d0a1d7227a21dac2e3d08b622b2 /sc/source/ui/inc/SparklineDialog.hxx | |
parent | Initial commit. (diff) | |
download | libreoffice-267c6f2ac71f92999e969232431ba04678e7437e.tar.xz libreoffice-267c6f2ac71f92999e969232431ba04678e7437e.zip |
Adding upstream version 4:24.2.0.upstream/4%24.2.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'sc/source/ui/inc/SparklineDialog.hxx')
-rw-r--r-- | sc/source/ui/inc/SparklineDialog.hxx | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/sc/source/ui/inc/SparklineDialog.hxx b/sc/source/ui/inc/SparklineDialog.hxx new file mode 100644 index 0000000000..f3f309c568 --- /dev/null +++ b/sc/source/ui/inc/SparklineDialog.hxx @@ -0,0 +1,113 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#pragma once + +#include <address.hxx> +#include "anyrefdg.hxx" +#include "viewdata.hxx" + +#include <SparklineGroup.hxx> +#include <SparklineAttributes.hxx> + +class ColorListBox; + +namespace sc +{ +/** Dialog to create or edit sparkline group attributes */ +class SparklineDialog : public ScAnyRefDlgController +{ +private: + ScViewData& mrViewData; + ScDocument& mrDocument; + + ScRange maInputRange; + ScRange maOutputRange; + + formula::RefEdit* mpActiveEdit; + bool mbDialogLostFocus; + + std::unique_ptr<weld::Button> mxButtonOk; + std::unique_ptr<weld::Button> mxButtonCancel; + + std::unique_ptr<weld::Frame> mxFrameData; + + std::unique_ptr<weld::Label> mxInputRangeLabel; + std::unique_ptr<formula::RefEdit> mxInputRangeEdit; + std::unique_ptr<formula::RefButton> mxInputRangeButton; + + std::unique_ptr<weld::Label> mxOutputRangeLabel; + std::unique_ptr<formula::RefEdit> mxOutputRangeEdit; + std::unique_ptr<formula::RefButton> mxOutputRangeButton; + + std::unique_ptr<ColorListBox> mxColorSeries; + std::unique_ptr<ColorListBox> mxColorNegative; + std::unique_ptr<ColorListBox> mxColorMarker; + std::unique_ptr<ColorListBox> mxColorHigh; + std::unique_ptr<ColorListBox> mxColorLow; + std::unique_ptr<ColorListBox> mxColorFirst; + std::unique_ptr<ColorListBox> mxColorLast; + + std::unique_ptr<weld::CheckButton> mxCheckButtonNegative; + std::unique_ptr<weld::CheckButton> mxCheckButtonMarker; + std::unique_ptr<weld::CheckButton> mxCheckButtonHigh; + std::unique_ptr<weld::CheckButton> mxCheckButtonLow; + std::unique_ptr<weld::CheckButton> mxCheckButtonFirst; + std::unique_ptr<weld::CheckButton> mxCheckButtonLast; + + std::unique_ptr<weld::SpinButton> mxSpinLineWidth; + std::unique_ptr<weld::ComboBox> mxType; + + std::unique_ptr<weld::CheckButton> mxCheckDisplayXAxis; + std::unique_ptr<weld::CheckButton> mxCheckDisplayHidden; + std::unique_ptr<weld::CheckButton> mxCheckRightToLeft; + + std::unique_ptr<weld::ComboBox> mxDisplayEmptyGap; + + std::unique_ptr<weld::ComboBox> mxComboMinAxisType; + std::unique_ptr<weld::ComboBox> mxComboMaxAxisType; + + std::unique_ptr<weld::FormattedSpinButton> mxSpinCustomMin; + std::unique_ptr<weld::FormattedSpinButton> mxSpinCustomMax; + + DECL_LINK(ButtonClicked, weld::Button&, void); + DECL_LINK(EditFocusHandler, formula::RefEdit&, void); + DECL_LINK(ButtonFocusHandler, formula::RefButton&, void); + DECL_LINK(LoseEditFocusHandler, formula::RefEdit&, void); + DECL_LINK(LoseButtonFocusHandler, formula::RefButton&, void); + DECL_LINK(RefInputModifyHandler, formula::RefEdit&, void); + DECL_LINK(ToggleHandler, weld::Toggleable&, void); + DECL_LINK(SelectSparklineType, weld::ComboBox&, void); + DECL_LINK(ComboValueChanged, weld::ComboBox&, void); + DECL_LINK(SpinLineWidthChanged, weld::SpinButton&, void); + DECL_LINK(SpinCustomChanged, weld::FormattedSpinButton&, void); + + std::shared_ptr<sc::SparklineGroup> mpSparklineGroup; + sc::SparklineAttributes maAttributes; + + bool mbEditMode; + + void setupValues(); + void setInputSelection(); + + void perform(); + bool checkValidInputOutput(); + +public: + SparklineDialog(SfxBindings* pBindings, SfxChildWindow* pChildWindow, weld::Window* pWindow, + ScViewData& rViewData); + virtual ~SparklineDialog() override; + + virtual void SetReference(const ScRange& rRef, ScDocument& rDocument) override; + virtual void SetActive() override; + virtual void Close() override; +}; +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |