Lines Matching refs:xMailDispatcher
151 ::rtl::Reference< MailDispatcher > xMailDispatcher;
172 if( xMailDispatcher.is() && !xMailDispatcher->isShutdownRequested() ) in ~SwSendMailDialog_Impl()
173 xMailDispatcher->shutdown(); in ~SwSendMailDialog_Impl()
200 virtual void started(::rtl::Reference<MailDispatcher> xMailDispatcher);
201 virtual void stopped(::rtl::Reference<MailDispatcher> xMailDispatcher);
202 virtual void idle(::rtl::Reference<MailDispatcher> xMailDispatcher);
203 virtual void mailDelivered(::rtl::Reference<MailDispatcher> xMailDispatcher,
205 virtual void mailDeliveryError(::rtl::Reference<MailDispatcher> xMailDispatcher,
430 if(m_pImpl->xMailDispatcher.is()) in ~SwSendMailDialog()
434 if(m_pImpl->xMailDispatcher->isStarted()) in ~SwSendMailDialog()
435 m_pImpl->xMailDispatcher->stop(); in ~SwSendMailDialog()
442 m_pImpl->xMailDispatcher->dequeueMailMessage(); in ~SwSendMailDialog()
446 xMessage = m_pImpl->xMailDispatcher->dequeueMailMessage(); in ~SwSendMailDialog()
463 if(m_pImpl->xMailDispatcher.is()) in AddDocument()
519 if(m_pImpl->xMailDispatcher.is()) in IMPL_LINK()
521 if(m_pImpl->xMailDispatcher->isStarted()) in IMPL_LINK()
523 m_pImpl->xMailDispatcher->stop(); in IMPL_LINK()
529 m_pImpl->xMailDispatcher->start(); in IMPL_LINK()
557 if( pThis->m_pImpl->xMailDispatcher.is() ) in IMPL_STATIC_LINK()
559 if(pThis->m_pImpl->xMailDispatcher->isStarted()) in IMPL_STATIC_LINK()
560 pThis->m_pImpl->xMailDispatcher->stop(); in IMPL_STATIC_LINK()
561 if(!pThis->m_pImpl->xMailDispatcher->isShutdownRequested()) in IMPL_STATIC_LINK()
562 pThis->m_pImpl->xMailDispatcher->shutdown(); in IMPL_STATIC_LINK()
566 (!pThis->m_pImpl->xMailDispatcher.is() || in IMPL_STATIC_LINK()
567 !pThis->m_pImpl->xMailDispatcher->isRunning())) in IMPL_STATIC_LINK()
582 if(pDialog->m_pImpl->xMailDispatcher.is() && in IMPL_STATIC_LINK_NOINSTANCE()
583 pDialog->m_pImpl->xMailDispatcher->isStarted()) in IMPL_STATIC_LINK_NOINSTANCE()
585 pDialog->m_pImpl->xMailDispatcher->stop(); in IMPL_STATIC_LINK_NOINSTANCE()
616 m_pImpl->xMailDispatcher.set( new MailDispatcher(xSmtpServer)); in SendMails()
619 m_pImpl->xMailDispatcher->addListener(m_pImpl->xMailListener); in SendMails()
622 m_pImpl->xMailDispatcher->start(); in SendMails()
701 m_pImpl->xMailDispatcher->enqueueMailMessage( xMessage ); in IterateMails()
738 m_pImpl->xMailDispatcher.is() && m_pImpl->xMailDispatcher->isStarted()) in DocumentSent()