blob: 017a308867ad6b104d39823c9a833388f6c43d92 [file] [log] [blame]
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef _CMDMAILMSG_HXX_
#define _CMDMAILMSG_HXX_
#include <cppuhelper/implbase1.hxx>
#include <cppuhelper/basemutex.hxx>
#include <com/sun/star/system/XMailMessage.hpp>
namespace shell
{
typedef cppu::WeakImplHelper1<
com::sun::star::system::XMailMessage > CmdMailMsg_Base;
class CmdMailMsg : protected cppu::BaseMutex,
public CmdMailMsg_Base
{
private:
::rtl::OUString m_aBody;
::rtl::OUString m_aRecipient;
::rtl::OUString m_aOriginator;
::rtl::OUString m_aSubject;
::com::sun::star::uno::Sequence< rtl::OUString > m_CcRecipients;
::com::sun::star::uno::Sequence< rtl::OUString > m_BccRecipients;
::com::sun::star::uno::Sequence< rtl::OUString > m_Attachments;
public:
CmdMailMsg();
virtual void SAL_CALL setBody( const ::rtl::OUString& aBody )
throw (::com::sun::star::uno::RuntimeException);
virtual ::rtl::OUString SAL_CALL getBody( )
throw (::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL setRecipient( const ::rtl::OUString& aRecipient )
throw (::com::sun::star::uno::RuntimeException);
virtual ::rtl::OUString SAL_CALL getRecipient( )
throw (::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL setCcRecipient( const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aCcRecipient )
throw (::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getCcRecipient( )
throw (::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL setBccRecipient( const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aBccRecipient )
throw (::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getBccRecipient( )
throw (::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL setOriginator( const ::rtl::OUString& aOriginator )
throw (::com::sun::star::uno::RuntimeException);
virtual ::rtl::OUString SAL_CALL getOriginator( )
throw (::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL setSubject( const ::rtl::OUString& aSubject )
throw (::com::sun::star::uno::RuntimeException);
virtual ::rtl::OUString SAL_CALL getSubject( )
throw (::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL setAttachement( const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aAttachement )
throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getAttachement( )
throw (::com::sun::star::uno::RuntimeException);
};
}
#endif