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/.
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>
28 /// Dialog for changing TextAttributes
29 class SvxMeasurePage
: public SvxTabPage
32 static const sal_uInt16 pRanges
[];
34 const SfxItemSet
& rOutAttrs
;
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
;
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 *);
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
;
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
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: */