update dev300-m58
[ooovba.git] / sw / source / ui / inc / envimg.hxx
blobb3d16509f58001c13517a82c36800e26f129311d
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: envimg.hxx,v $
10 * $Revision: 1.6 $
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 ************************************************************************/
30 #ifndef _ENVIMG_HXX
31 #define _ENVIMG_HXX
33 #include <svtools/poolitem.hxx>
34 #include <unotools/configitem.hxx>
35 #include "swdllapi.h"
37 // MakeSender -----------------------------------------------------------------
39 SW_DLLPUBLIC String MakeSender();
41 // enum -----------------------------------------------------------------------
43 enum SwEnvAlign
45 ENV_HOR_LEFT = 0,
46 ENV_HOR_CNTR,
47 ENV_HOR_RGHT,
48 ENV_VER_LEFT,
49 ENV_VER_CNTR,
50 ENV_VER_RGHT
53 // class SwEnvItem ------------------------------------------------------------
55 class SW_DLLPUBLIC SwEnvItem : public SfxPoolItem
57 public:
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)
73 SwEnvItem();
74 SwEnvItem(const SwEnvItem& rItem);
76 TYPEINFO();
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
90 SwEnvItem aEnvItem;
92 com::sun::star::uno::Sequence<rtl::OUString> GetPropertyNames();
93 public:
94 SwEnvCfgItem();
95 ~SwEnvCfgItem();
97 SwEnvItem& GetItem() {return aEnvItem;}
99 virtual void Commit();
101 #endif