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 .
22 #include <sfx2/tabdlg.hxx>
23 #include <vcl/print.hxx>
24 #include <vcl/weld.hxx>
31 class SwEnvPrtPage
: public SfxTabPage
33 std::unique_ptr
<weld::Widget
> m_xUpper
;
34 std::unique_ptr
<weld::Widget
> m_xLower
;
35 std::unique_ptr
<weld::RadioButton
> m_xTopButton
;
36 std::unique_ptr
<weld::RadioButton
> m_xBottomButton
;
37 std::unique_ptr
<weld::MetricSpinButton
> m_xRightField
;
38 std::unique_ptr
<weld::MetricSpinButton
> m_xDownField
;
39 std::unique_ptr
<weld::Label
> m_xPrinterInfo
;
40 std::unique_ptr
<weld::Button
> m_xPrtSetup
;
42 std::unique_ptr
<weld::RadioButton
> m_aIdsL
[ENV_VER_RGHT
- ENV_HOR_LEFT
+ 1];
43 std::unique_ptr
<weld::RadioButton
> m_aIdsU
[ENV_VER_RGHT
- ENV_HOR_LEFT
+ 1];
45 VclPtr
<Printer
> m_xPrt
;
47 DECL_LINK(LowerHdl
, weld::Toggleable
&, void);
48 DECL_LINK(UpperHdl
, weld::Toggleable
&, void);
49 DECL_LINK(ClickHdl
, weld::Toggleable
&, void);
50 DECL_LINK(ButtonHdl
, weld::Button
&, void);
52 SwEnvDlg
* GetParentSwEnvDlg() { return static_cast<SwEnvDlg
*>(GetDialogController()); }
55 SwEnvPrtPage(weld::Container
* pPage
, weld::DialogController
* pController
,
56 const SfxItemSet
& rSet
);
57 virtual ~SwEnvPrtPage() override
;
59 static std::unique_ptr
<SfxTabPage
>
60 Create(weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* rSet
);
62 virtual void ActivatePage(const SfxItemSet
& rSet
) override
;
63 virtual DeactivateRC
DeactivatePage(SfxItemSet
* pSet
) override
;
64 void FillItem(SwEnvItem
& rItem
);
65 virtual bool FillItemSet(SfxItemSet
* rSet
) override
;
66 virtual void Reset(const SfxItemSet
* rSet
) override
;
68 void SetPrt(Printer
* pPrinter
) { m_xPrt
= pPrinter
; }
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */