summaryrefslogtreecommitdiff
path: root/shell/source/win32/simplemail/smplmailsuppl.cxx
diff options
context:
space:
mode:
authorTino Rachui <tra@openoffice.org>2001-05-14 07:09:21 +0000
committerTino Rachui <tra@openoffice.org>2001-05-14 07:09:21 +0000
commit71d18a67367c272e4e222a2f5a162458a8cd51d1 (patch)
treeebc98599f062745f2d3c349761575113fb6344ed /shell/source/win32/simplemail/smplmailsuppl.cxx
parent84208493f58b72d92da95767b1db3cc630a38c0c (diff)
*** empty log message ***
Diffstat (limited to 'shell/source/win32/simplemail/smplmailsuppl.cxx')
-rw-r--r--shell/source/win32/simplemail/smplmailsuppl.cxx197
1 files changed, 197 insertions, 0 deletions
diff --git a/shell/source/win32/simplemail/smplmailsuppl.cxx b/shell/source/win32/simplemail/smplmailsuppl.cxx
new file mode 100644
index 000000000000..62cee02c2b82
--- /dev/null
+++ b/shell/source/win32/simplemail/smplmailsuppl.cxx
@@ -0,0 +1,197 @@
+/*************************************************************************
+ *
+ * $RCSfile: smplmailsuppl.cxx,v $
+ *
+ * $Revision: 1.1 $
+ *
+ * last change: $Author: tra $ $Date: 2001-05-14 08:08:49 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (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.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+//------------------------------------------------------------------------
+// includes
+//------------------------------------------------------------------------
+
+#ifndef _OSL_DIAGNOSE_H_
+#include <osl/diagnose.h>
+#endif
+
+#ifndef _SMPLMAILSUPPL_HXX_
+#include "smplmailsuppl.hxx"
+#endif
+
+#ifndef _SMPLMAILCLIENT_HXX_
+#include "smplmailclient.hxx"
+#endif
+
+//------------------------------------------------------------------------
+// namespace directives
+//------------------------------------------------------------------------
+
+using com::sun::star::uno::Reference;
+using com::sun::star::uno::RuntimeException;
+using com::sun::star::uno::Sequence;
+using com::sun::star::lang::XServiceInfo;
+using com::sun::star::system::XSimpleMailClientSupplier;
+using com::sun::star::system::XSimpleMailClient;
+using rtl::OUString;
+using osl::Mutex;
+
+using namespace cppu;
+
+//------------------------------------------------------------------------
+// defines
+//------------------------------------------------------------------------
+
+#define COMP_IMPL_NAME "com.sun.star.sys.shell.SimpleSystemMail"
+
+//------------------------------------------------------------------------
+// helper functions
+//------------------------------------------------------------------------
+
+namespace // private
+{
+ Sequence< OUString > SAL_CALL Component_getSupportedServiceNames()
+ {
+ Sequence< OUString > aRet(1);
+ aRet[0] = OUString::createFromAscii("com.sun.star.sys.shell.SimpleSystemMail");
+ return aRet;
+ }
+
+} // end private namespace
+
+//-------------------------------------------------
+//
+//-------------------------------------------------
+
+CSmplMailSuppl::CSmplMailSuppl( ) :
+ WeakComponentImplHelper2< XSimpleMailClientSupplier, XServiceInfo >( m_aMutex ),
+ m_pSimpleMapi( CSimpleMapi::create( ) )
+{
+}
+
+//-------------------------------------------------
+//
+//-------------------------------------------------
+
+CSmplMailSuppl::~CSmplMailSuppl( )
+{
+}
+
+//-------------------------------------------------
+//
+//-------------------------------------------------
+
+Reference< XSimpleMailClient > SAL_CALL CSmplMailSuppl::querySimpleMailClient( )
+ throw (RuntimeException)
+{
+ // try to determine if a valid mapi mail client
+ // is available
+ // if so create and return a new instance of a
+ // simple mail client
+ FLAGS flFlag =MAPI_NEW_SESSION;// | MAPI_LOGON_UI;
+ LHANDLE hSession;
+ ULONG ulRet = m_pSimpleMapi->MAPILogon(
+ 0, NULL, NULL, flFlag, 0L, &hSession );
+
+ Reference< XSimpleMailClient > xSmplMailClient;
+
+ if ( SUCCESS_SUCCESS == ulRet )
+ {
+ xSmplMailClient =
+ Reference< XSimpleMailClient >( new CSmplMailClient( ) );
+
+ // logoff again
+ m_pSimpleMapi->MAPILogoff( hSession, 0, 0, 0 );
+ }
+
+ return xSmplMailClient;
+}
+
+// -------------------------------------------------
+// XServiceInfo
+// -------------------------------------------------
+
+OUString SAL_CALL CSmplMailSuppl::getImplementationName( )
+ throw( RuntimeException )
+{
+ return OUString::createFromAscii( COMP_IMPL_NAME );
+}
+
+// -------------------------------------------------
+// XServiceInfo
+// -------------------------------------------------
+
+sal_Bool SAL_CALL CSmplMailSuppl::supportsService( const OUString& ServiceName )
+ throw( RuntimeException )
+{
+ Sequence < OUString > SupportedServicesNames = Component_getSupportedServiceNames();
+
+ for ( sal_Int32 n = SupportedServicesNames.getLength(); n--; )
+ if (SupportedServicesNames[n].compareTo(ServiceName) == 0)
+ return sal_True;
+
+ return sal_False;
+}
+
+// -------------------------------------------------
+// XServiceInfo
+// -------------------------------------------------
+
+Sequence< OUString > SAL_CALL CSmplMailSuppl::getSupportedServiceNames( )
+ throw( RuntimeException )
+{
+ return Component_getSupportedServiceNames();
+}
+