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: smplmailmsg.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 ************************************************************************/
31 #ifndef _SMPLMAILMSG_HXX_
32 #define _SMPLMAILMSG_HXX_
34 //_______________________________________________________________________________________________________________________
35 // includes of other projects
36 //_______________________________________________________________________________________________________________________
38 #include <cppuhelper/compbase1.hxx>
39 #include <com/sun/star/lang/XServiceInfo.hpp>
40 #include <com/sun/star/lang/IllegalArgumentException.hpp>
42 #ifndef _COM_SUN_STAR_SYS_SHELL_XSYSTEMSHELLEXECUTE_HPP_
43 #include <com/sun/star/system/XSimpleMailMessage.hpp>
46 //----------------------------------------------------------
48 //----------------------------------------------------------
51 public cppu::WeakImplHelper1
< com::sun::star::system::XSimpleMailMessage
>
56 //------------------------------------------------
58 //------------------------------------------------
60 virtual void SAL_CALL
setRecipient( const ::rtl::OUString
& aRecipient
)
61 throw (::com::sun::star::uno::RuntimeException
);
63 virtual ::rtl::OUString SAL_CALL
getRecipient( )
64 throw (::com::sun::star::uno::RuntimeException
);
66 //------------------------------------------------
68 //------------------------------------------------
70 virtual void SAL_CALL
setCcRecipient( const ::com::sun::star::uno::Sequence
< ::rtl::OUString
>& aCcRecipient
)
71 throw (::com::sun::star::uno::RuntimeException
);
73 virtual ::com::sun::star::uno::Sequence
< ::rtl::OUString
> SAL_CALL
getCcRecipient( )
74 throw (::com::sun::star::uno::RuntimeException
);
76 //------------------------------------------------
78 //------------------------------------------------
80 virtual void SAL_CALL
setBccRecipient( const ::com::sun::star::uno::Sequence
< ::rtl::OUString
>& aBccRecipient
)
81 throw (::com::sun::star::uno::RuntimeException
);
83 virtual ::com::sun::star::uno::Sequence
< ::rtl::OUString
> SAL_CALL
getBccRecipient( )
84 throw (::com::sun::star::uno::RuntimeException
);
86 //------------------------------------------------
88 //------------------------------------------------
90 virtual void SAL_CALL
setOriginator( const ::rtl::OUString
& aOriginator
)
91 throw (::com::sun::star::uno::RuntimeException
);
93 virtual ::rtl::OUString SAL_CALL
getOriginator( )
94 throw (::com::sun::star::uno::RuntimeException
);
96 //------------------------------------------------
98 //------------------------------------------------
100 virtual void SAL_CALL
setSubject( const ::rtl::OUString
& aSubject
)
101 throw (::com::sun::star::uno::RuntimeException
);
103 virtual ::rtl::OUString SAL_CALL
getSubject( )
104 throw (::com::sun::star::uno::RuntimeException
);
106 //------------------------------------------------
108 //------------------------------------------------
110 virtual void SAL_CALL
setAttachement( const ::com::sun::star::uno::Sequence
< ::rtl::OUString
>& aAttachement
)
111 throw (::com::sun::star::lang::IllegalArgumentException
, ::com::sun::star::uno::RuntimeException
);
113 virtual ::com::sun::star::uno::Sequence
< ::rtl::OUString
> SAL_CALL
getAttachement( )
114 throw (::com::sun::star::uno::RuntimeException
);
117 rtl::OUString m_aRecipient
;
118 rtl::OUString m_aOriginator
;
119 rtl::OUString m_aSubject
;
120 com::sun::star::uno::Sequence
< rtl::OUString
> m_CcRecipients
;
121 com::sun::star::uno::Sequence
< rtl::OUString
> m_BccRecipients
;
122 com::sun::star::uno::Sequence
< rtl::OUString
> m_Attachements
;