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 .
24 #include <sfx2/tabdlg.hxx>
25 #include <vcl/idle.hxx>
26 #include <vcl/customweld.hxx>
27 #include <vcl/weld.hxx>
29 class SwLabFormatPage
;
31 class SwLabPreview
: public weld::CustomWidgetController
38 OUString m_aHeightStr
;
44 tools::Long m_lHDistWidth
;
45 tools::Long m_lVDistWidth
;
46 tools::Long m_lHeightWidth
;
47 tools::Long m_lLeftWidth
;
48 tools::Long m_lUpperWidth
;
49 tools::Long m_lColsWidth
;
51 tools::Long m_lXWidth
;
52 tools::Long m_lXHeight
;
56 virtual void SetDrawingArea(weld::DrawingArea
* pDrawingArea
) override
;
57 virtual void Paint(vcl::RenderContext
& rRenderContext
, const tools::Rectangle
& rRect
) override
;
62 void UpdateItem(const SwLabItem
& rItem
);
65 class SwLabFormatPage
: public SfxTabPage
71 SwLabPreview m_aPreview
;
73 std::unique_ptr
<weld::Label
> m_xMakeFI
;
74 std::unique_ptr
<weld::Label
> m_xTypeFI
;
75 std::unique_ptr
<weld::CustomWeld
> m_xPreview
;
76 std::unique_ptr
<weld::MetricSpinButton
> m_xHDistField
;
77 std::unique_ptr
<weld::MetricSpinButton
> m_xVDistField
;
78 std::unique_ptr
<weld::MetricSpinButton
> m_xWidthField
;
79 std::unique_ptr
<weld::MetricSpinButton
> m_xHeightField
;
80 std::unique_ptr
<weld::MetricSpinButton
> m_xLeftField
;
81 std::unique_ptr
<weld::MetricSpinButton
> m_xUpperField
;
82 std::unique_ptr
<weld::SpinButton
> m_xColsField
;
83 std::unique_ptr
<weld::SpinButton
> m_xRowsField
;
84 std::unique_ptr
<weld::MetricSpinButton
> m_xPWidthField
;
85 std::unique_ptr
<weld::MetricSpinButton
> m_xPHeightField
;
86 std::unique_ptr
<weld::Button
> m_xSavePB
;
88 DECL_LINK(ModifyHdl
, weld::SpinButton
&, void);
89 DECL_LINK(MetricModifyHdl
, weld::MetricSpinButton
&, void);
90 DECL_LINK(PreviewHdl
, Timer
*, void);
91 DECL_LINK(SaveHdl
, weld::Button
&, void);
96 SwLabFormatPage(weld::Container
* pPage
, weld::DialogController
* pController
,
97 const SfxItemSet
& rSet
);
98 virtual ~SwLabFormatPage() override
;
100 static std::unique_ptr
<SfxTabPage
>
101 Create(weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* rSet
);
103 virtual void ActivatePage(const SfxItemSet
& rSet
) override
;
104 virtual DeactivateRC
DeactivatePage(SfxItemSet
* pSet
) override
;
105 void FillItem(SwLabItem
& rItem
);
106 virtual bool FillItemSet(SfxItemSet
* rSet
) override
;
107 virtual void Reset(const SfxItemSet
* rSet
) override
;
109 SwLabDlg
* GetParentSwLabDlg() { return static_cast<SwLabDlg
*>(GetDialogController()); }
112 class SwSaveLabelDlg
: public weld::GenericDialogController
115 SwLabDlg
* m_pLabDialog
;
118 std::unique_ptr
<weld::ComboBox
> m_xMakeCB
;
119 std::unique_ptr
<weld::Entry
> m_xTypeED
;
120 std::unique_ptr
<weld::Button
> m_xOKPB
;
122 DECL_LINK(OkHdl
, weld::Button
&, void);
123 DECL_LINK(ModifyEntryHdl
, weld::Entry
&, void);
124 DECL_LINK(ModifyComboHdl
, weld::ComboBox
&, void);
129 SwSaveLabelDlg(SwLabDlg
* pParent
, SwLabRec
& rRec
);
130 virtual ~SwSaveLabelDlg() override
;
132 void SetLabel(const OUString
& rMake
, const OUString
& rType
)
134 m_xMakeCB
->set_entry_text(rMake
);
135 m_xTypeED
->set_text(rType
);
137 bool GetLabel(SwLabItem
& rItem
);
140 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */