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 <svx/connctrl.hxx>
22 #include <sfx2/tabdlg.hxx>
23 #include <vcl/customweld.hxx>
24 #include <vcl/weld.hxx>
25 #include <sfx2/basedlgs.hxx>
29 /// Dialog for changing connectors.
30 class SvxConnectionPage
: public SfxTabPage
33 static const WhichRangesContainer pRanges
;
34 const SfxItemSet
& rOutAttrs
;
39 SvxXConnectionPreview m_aCtlPreview
;
40 std::unique_ptr
<weld::ComboBox
> m_xLbType
;
41 std::unique_ptr
<weld::Label
> m_xFtLine1
;
42 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrFldLine1
;
43 std::unique_ptr
<weld::Label
> m_xFtLine2
;
44 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrFldLine2
;
45 std::unique_ptr
<weld::Label
> m_xFtLine3
;
46 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrFldLine3
;
47 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrFldHorz1
;
48 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrFldVert1
;
49 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrFldHorz2
;
50 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrFldVert2
;
51 std::unique_ptr
<weld::CustomWeld
> m_xCtlPreview
;
55 DECL_LINK(ChangeAttrEditHdl_Impl
, weld::MetricSpinButton
&, void);
56 DECL_LINK(ChangeAttrListBoxHdl_Impl
, weld::ComboBox
&, void);
59 void SetMetricValueAndSave(const SfxItemSet
*rAttrs
, weld::MetricSpinButton
&rField
, TypedWhichId
<T
> nWhich
);
62 SvxConnectionPage(weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
& rInAttrs
);
63 virtual ~SvxConnectionPage() override
;
65 static std::unique_ptr
<SfxTabPage
> Create( weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* );
66 static const WhichRangesContainer
& GetRanges() { return pRanges
; }
68 virtual bool FillItemSet( SfxItemSet
* ) override
;
69 virtual void Reset( const SfxItemSet
* ) override
;
72 void SetView( const SdrView
* pSdrView
) { pView
= pSdrView
; }
73 virtual void PageCreated(const SfxAllItemSet
& aSet
) override
;
76 /* Derived from SfxSingleTabDialogController, in order to be informed about
77 virtual methods by the control. */
78 class SvxConnectionDialog
: public SfxSingleTabDialogController
81 SvxConnectionDialog(weld::Window
* pParent
, const SfxItemSet
& rAttr
,
82 const SdrView
* pView
);
85 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */