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 .
20 #ifndef INCLUDED_SW_SOURCE_UI_ENVELP_ENVPRT_HXX
21 #define INCLUDED_SW_SOURCE_UI_ENVELP_ENVPRT_HXX
23 #include <sfx2/tabdlg.hxx>
24 #include <vcl/print.hxx>
25 #include <vcl/weld.hxx>
32 class SwEnvPrtPage
: public SfxTabPage
34 std::unique_ptr
<weld::Widget
> m_xUpper
;
35 std::unique_ptr
<weld::Widget
> m_xLower
;
36 std::unique_ptr
<weld::RadioButton
> m_xTopButton
;
37 std::unique_ptr
<weld::RadioButton
> m_xBottomButton
;
38 std::unique_ptr
<weld::MetricSpinButton
> m_xRightField
;
39 std::unique_ptr
<weld::MetricSpinButton
> m_xDownField
;
40 std::unique_ptr
<weld::Label
> m_xPrinterInfo
;
41 std::unique_ptr
<weld::Button
> m_xPrtSetup
;
43 std::unique_ptr
<weld::RadioButton
> m_aIdsL
[ENV_VER_RGHT
- ENV_HOR_LEFT
+ 1];
44 std::unique_ptr
<weld::RadioButton
> m_aIdsU
[ENV_VER_RGHT
- ENV_HOR_LEFT
+ 1];
46 VclPtr
<Printer
> m_xPrt
;
48 DECL_LINK(LowerHdl
, weld::ToggleButton
&, void);
49 DECL_LINK(UpperHdl
, weld::ToggleButton
&, void);
50 DECL_LINK(ClickHdl
, weld::ToggleButton
&, void);
51 DECL_LINK(ButtonHdl
, weld::Button
&, void);
53 SwEnvDlg
* GetParentSwEnvDlg() { return static_cast<SwEnvDlg
*>(GetDialogController()); }
56 SwEnvPrtPage(weld::Container
* pPage
, weld::DialogController
* pController
,
57 const SfxItemSet
& rSet
);
58 virtual ~SwEnvPrtPage() override
;
60 static std::unique_ptr
<SfxTabPage
>
61 Create(weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* rSet
);
63 virtual void ActivatePage(const SfxItemSet
& rSet
) override
;
64 virtual DeactivateRC
DeactivatePage(SfxItemSet
* pSet
) override
;
65 void FillItem(SwEnvItem
& rItem
);
66 virtual bool FillItemSet(SfxItemSet
* rSet
) override
;
67 virtual void Reset(const SfxItemSet
* rSet
) override
;
69 void SetPrt(Printer
* pPrinter
) { m_xPrt
= pPrinter
; }
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */