diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2022-03-29 09:31:08 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2022-04-05 05:17:23 +0200 |
commit | d97d1f2643d30ebcab149854137cd3c4f46004d2 (patch) | |
tree | 6ccee5fac312cb4dc3c5cc20ba5c05b884629a21 /sc/source/ui/inc | |
parent | 5ff13a0866fe5c408f9e9c7441a9d052b383d99c (diff) |
sc: edit all sparkline attributes in SparklineDialog
Change-Id: I6ca9e3436e0dd807b30585576ae2067076c3b7ce
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132516
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'sc/source/ui/inc')
-rw-r--r-- | sc/source/ui/inc/SparklineDialog.hxx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sc/source/ui/inc/SparklineDialog.hxx b/sc/source/ui/inc/SparklineDialog.hxx index 4af25a861df5..ce8b7cf36118 100644 --- a/sc/source/ui/inc/SparklineDialog.hxx +++ b/sc/source/ui/inc/SparklineDialog.hxx @@ -57,10 +57,25 @@ private: std::unique_ptr<weld::CheckButton> mxCheckButtonFirst; std::unique_ptr<weld::CheckButton> mxCheckButtonLast; + std::unique_ptr<weld::SpinButton> mxSpinLineWidth; std::unique_ptr<weld::RadioButton> mxRadioLine; std::unique_ptr<weld::RadioButton> mxRadioColumn; std::unique_ptr<weld::RadioButton> mxRadioStacked; + std::unique_ptr<weld::CheckButton> mxCheckDisplayXAxis; + std::unique_ptr<weld::CheckButton> mxCheckDisplayHidden; + std::unique_ptr<weld::CheckButton> mxCheckRightToLeft; + + std::unique_ptr<weld::RadioButton> mxRadioDisplayEmptyGap; + std::unique_ptr<weld::RadioButton> mxRadioDisplayEmptyZero; + std::unique_ptr<weld::RadioButton> mxRadioDisplayEmptySpan; + + 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); @@ -69,6 +84,9 @@ private: DECL_LINK(RefInputModifyHandler, formula::RefEdit&, void); DECL_LINK(ToggleHandler, weld::Toggleable&, void); DECL_LINK(SelectSparklineType, weld::Toggleable&, void); + DECL_LINK(ComboValueChanged, weld::ComboBox&, void); + DECL_LINK(SpinLineWidthChanged, weld::SpinButton&, void); + DECL_LINK(SpinCustomChanged, weld::FormattedSpinButton&, void); std::shared_ptr<sc::SparklineGroup> mpLocalSparklineGroup; |