Bump version to 6.4.7.2.M8
[LibreOffice.git] / cui / source / inc / measure.hxx
blob7915fcc381eaab6f2c44935e52cf760646400735
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef INCLUDED_CUI_SOURCE_INC_MEASURE_HXX
20 #define INCLUDED_CUI_SOURCE_INC_MEASURE_HXX
22 #include <sfx2/basedlgs.hxx>
23 #include <svx/dlgctrl.hxx>
24 #include <svx/measctrl.hxx>
26 class SdrView;
28 /// Dialog for changing TextAttributes
29 class SvxMeasurePage : public SvxTabPage
31 private:
32 static const sal_uInt16 pRanges[];
34 const SfxItemSet& rOutAttrs;
35 SfxItemSet aAttrSet;
36 const SdrView* pView;
37 MapUnit eUnit;
39 bool bPositionModified;
41 SvxRectCtl m_aCtlPosition;
42 SvxXMeasurePreview m_aCtlPreview;
43 std::unique_ptr<weld::MetricSpinButton> m_xMtrFldLineDist;
44 std::unique_ptr<weld::MetricSpinButton> m_xMtrFldHelplineOverhang;
45 std::unique_ptr<weld::MetricSpinButton> m_xMtrFldHelplineDist;
46 std::unique_ptr<weld::MetricSpinButton> m_xMtrFldHelpline1Len;
47 std::unique_ptr<weld::MetricSpinButton> m_xMtrFldHelpline2Len;
48 std::unique_ptr<weld::CheckButton> m_xTsbBelowRefEdge;
49 std::unique_ptr<weld::SpinButton> m_xMtrFldDecimalPlaces;
50 std::unique_ptr<weld::CheckButton> m_xTsbAutoPosV;
51 std::unique_ptr<weld::CheckButton> m_xTsbAutoPosH;
52 std::unique_ptr<weld::CheckButton> m_xTsbShowUnit;
53 std::unique_ptr<weld::ComboBox> m_xLbUnit;
54 std::unique_ptr<weld::CheckButton> m_xTsbParallel;
55 std::unique_ptr<weld::Label> m_xFtAutomatic;
56 std::unique_ptr<weld::CustomWeld> m_xCtlPosition;
57 std::unique_ptr<weld::CustomWeld> m_xCtlPreview;
59 void FillUnitLB();
61 DECL_LINK(ClickAutoPosHdl_Impl, weld::ToggleButton&, void);
62 DECL_LINK(ChangeAttrEditHdl_Impl, weld::MetricSpinButton&, void);
63 DECL_LINK(ChangeAttrSpinHdl_Impl, weld::SpinButton&, void);
64 DECL_LINK(ChangeAttrListBoxHdl_Impl, weld::ComboBox&, void);
65 DECL_LINK(ChangeAttrClickHdl_Impl, weld::ToggleButton&, void);
66 void ChangeAttrHdl_Impl(void const *);
68 public:
70 SvxMeasurePage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rInAttrs);
71 virtual ~SvxMeasurePage() override;
73 static std::unique_ptr<SfxTabPage> Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* );
74 static const sal_uInt16* GetRanges() { return pRanges; }
76 virtual bool FillItemSet( SfxItemSet* ) override;
77 virtual void Reset( const SfxItemSet * ) override;
79 virtual void PointChanged( weld::DrawingArea* pWindow, RectPoint eRP ) override;
81 void Construct();
82 void SetView( const SdrView* pSdrView ) { pView = pSdrView; }
83 virtual void PageCreated(const SfxAllItemSet& aSet) override;
87 /* Derived from SfxSingleTabDialogController, in order to be able to be
88 informed about virtual methods by the control. */
89 class SvxMeasureDialog : public SfxSingleTabDialogController
91 public:
92 SvxMeasureDialog(weld::Window* pParent, const SfxItemSet& rAttr,
93 const SdrView* pView);
96 #endif // INCLUDED_CUI_SOURCE_INC_MEASURE_HXX
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */