1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: envimg.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
33 #include <svtools/poolitem.hxx>
34 #include <unotools/configitem.hxx>
37 // MakeSender -----------------------------------------------------------------
39 SW_DLLPUBLIC String
MakeSender();
41 // enum -----------------------------------------------------------------------
53 // class SwEnvItem ------------------------------------------------------------
55 class SW_DLLPUBLIC SwEnvItem
: public SfxPoolItem
59 rtl::OUString aAddrText
; // Text fuer Empfaenger
60 sal_Bool bSend
; // Absender?
61 rtl::OUString aSendText
; // Text fuer Absender
62 sal_Int32 lAddrFromLeft
; // Linker Abstand fuer Empfaenger (twips)
63 sal_Int32 lAddrFromTop
; // Oberer Abstand fuer Empfaenger (twips)
64 sal_Int32 lSendFromLeft
; // Linker Abstand fuer Absender (twips)
65 sal_Int32 lSendFromTop
; // Oberer Abstand fuer Absender (twips)
66 sal_Int32 lWidth
; // Breite des Umschlags (twips)
67 sal_Int32 lHeight
; // Hoehe des Umschlags (twips)
68 SwEnvAlign eAlign
; // Ausrichtung beim Einzug
69 sal_Bool bPrintFromAbove
; // Von oben drucken?
70 sal_Int32 lShiftRight
; // Verschiebung nach rechts (twips)
71 sal_Int32 lShiftDown
; // Verschiebung nach unten (twips)
74 SwEnvItem(const SwEnvItem
& rItem
);
78 SwEnvItem
& operator =(const SwEnvItem
& rItem
);
80 virtual int operator ==(const SfxPoolItem
& rItem
) const;
82 virtual SfxPoolItem
* Clone(SfxItemPool
* = 0) const;
83 virtual BOOL
QueryValue( com::sun::star::uno::Any
& rVal
, BYTE nMemberId
= 0 ) const;
84 virtual BOOL
PutValue( const com::sun::star::uno::Any
& rVal
, BYTE nMemberId
= 0 );
87 // class SwEnvCfgItem -------------------------------------------------------
88 class SwEnvCfgItem
: public utl::ConfigItem
92 com::sun::star::uno::Sequence
<rtl::OUString
> GetPropertyNames();
97 SwEnvItem
& GetItem() {return aEnvItem
;}
99 virtual void Commit();