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 .
21 #include <sfx2/basedlgs.hxx>
22 #include <svx/dlgctrl.hxx>
23 #include <svx/measctrl.hxx>
27 /// Dialog for changing TextAttributes
28 class SvxMeasurePage
: public SvxTabPage
31 static const WhichRangesContainer pRanges
;
33 const SfxItemSet
& rOutAttrs
;
38 bool bPositionModified
;
40 SvxRectCtl m_aCtlPosition
;
41 SvxXMeasurePreview m_aCtlPreview
;
42 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrFldLineDist
;
43 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrFldHelplineOverhang
;
44 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrFldHelplineDist
;
45 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrFldHelpline1Len
;
46 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrFldHelpline2Len
;
47 std::unique_ptr
<weld::CheckButton
> m_xTsbBelowRefEdge
;
48 std::unique_ptr
<weld::SpinButton
> m_xMtrFldDecimalPlaces
;
49 std::unique_ptr
<weld::CheckButton
> m_xTsbAutoPosV
;
50 std::unique_ptr
<weld::CheckButton
> m_xTsbAutoPosH
;
51 std::unique_ptr
<weld::CheckButton
> m_xTsbShowUnit
;
52 std::unique_ptr
<weld::ComboBox
> m_xLbUnit
;
53 std::unique_ptr
<weld::CheckButton
> m_xTsbParallel
;
54 std::unique_ptr
<weld::Label
> m_xFtAutomatic
;
55 std::unique_ptr
<weld::CustomWeld
> m_xCtlPosition
;
56 std::unique_ptr
<weld::CustomWeld
> m_xCtlPreview
;
60 DECL_LINK(ClickAutoPosHdl_Impl
, weld::Toggleable
&, void);
61 DECL_LINK(ChangeAttrEditHdl_Impl
, weld::MetricSpinButton
&, void);
62 DECL_LINK(ChangeAttrSpinHdl_Impl
, weld::SpinButton
&, void);
63 DECL_LINK(ChangeAttrListBoxHdl_Impl
, weld::ComboBox
&, void);
64 DECL_LINK(ChangeAttrClickHdl_Impl
, weld::Toggleable
&, void);
65 void ChangeAttrHdl_Impl(void const *);
69 SvxMeasurePage(weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
& rInAttrs
);
70 virtual ~SvxMeasurePage() override
;
72 static std::unique_ptr
<SfxTabPage
> Create( weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* );
73 static const WhichRangesContainer
& GetRanges() { return pRanges
; }
75 virtual bool FillItemSet( SfxItemSet
* ) override
;
76 virtual void Reset( const SfxItemSet
* ) override
;
78 virtual void PointChanged( weld::DrawingArea
* pWindow
, RectPoint eRP
) override
;
81 void SetView( const SdrView
* pSdrView
) { pView
= pSdrView
; }
82 virtual void PageCreated(const SfxAllItemSet
& aSet
) override
;
86 /* Derived from SfxSingleTabDialogController, in order to be able to be
87 informed about virtual methods by the control. */
88 class SvxMeasureDialog
: public SfxSingleTabDialogController
91 SvxMeasureDialog(weld::Window
* pParent
, const SfxItemSet
& rAttr
,
92 const SdrView
* pView
);
95 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */