Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 : #ifndef INCLUDED_SW_SOURCE_UI_ENVELP_LABPRT_HXX
20 : #define INCLUDED_SW_SOURCE_UI_ENVELP_LABPRT_HXX
21 :
22 : #include <vcl/button.hxx>
23 : #include <vcl/field.hxx>
24 : #include <vcl/group.hxx>
25 : #include <vcl/layout.hxx>
26 : #include <svtools/stdctrl.hxx>
27 : #include <sfx2/tabdlg.hxx>
28 :
29 : class SwLabDlg;
30 : class SwLabItem;
31 :
32 : // class SwLabPrtPage -------------------------------------------------------
33 :
34 : class SwLabPrtPage : public SfxTabPage
35 : {
36 : Printer* pPrinter; // for the shaft setting - unfortunately
37 :
38 : RadioButton* m_pPageButton;
39 : RadioButton* m_pSingleButton;
40 : VclContainer* m_pSingleGrid;
41 : VclContainer* m_pPrinterFrame;
42 : NumericField* m_pColField;
43 : NumericField* m_pRowField;
44 : CheckBox* m_pSynchronCB;
45 :
46 : FixedText* m_pPrinterInfo;
47 : PushButton* m_pPrtSetup;
48 :
49 : SwLabPrtPage(Window* pParent, const SfxItemSet& rSet);
50 : virtual ~SwLabPrtPage();
51 :
52 : DECL_LINK( CountHdl, Button * );
53 :
54 0 : SwLabDlg* GetParentSwLabDlg() {return (SwLabDlg*)GetParentDialog();}
55 :
56 : using TabPage::ActivatePage;
57 : using TabPage::DeactivatePage;
58 :
59 : public:
60 :
61 : static SfxTabPage* Create(Window* pParent, const SfxItemSet& rSet);
62 :
63 : virtual void ActivatePage(const SfxItemSet& rSet) SAL_OVERRIDE;
64 : virtual int DeactivatePage(SfxItemSet* pSet = 0) SAL_OVERRIDE;
65 : void FillItem(SwLabItem& rItem);
66 : virtual bool FillItemSet(SfxItemSet& rSet) SAL_OVERRIDE;
67 : virtual void Reset(const SfxItemSet& rSet) SAL_OVERRIDE;
68 0 : inline Printer* GetPrt() { return (pPrinter); }
69 : };
70 :
71 : #endif
72 :
73 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|