/************************************************************** * * 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 #include #include 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 ); virtual ::rtl::OUString SAL_CALL getBody( ); virtual void SAL_CALL setRecipient( const ::rtl::OUString& aRecipient ); virtual ::rtl::OUString SAL_CALL getRecipient( ); virtual void SAL_CALL setCcRecipient( const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aCcRecipient ); virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getCcRecipient( ); virtual void SAL_CALL setBccRecipient( const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aBccRecipient ); virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getBccRecipient( ); virtual void SAL_CALL setOriginator( const ::rtl::OUString& aOriginator ); virtual ::rtl::OUString SAL_CALL getOriginator( ); virtual void SAL_CALL setSubject( const ::rtl::OUString& aSubject ); virtual ::rtl::OUString SAL_CALL getSubject( ); virtual void SAL_CALL setAttachement( const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aAttachement ); virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getAttachement( ); }; } #endif