1*96de5490SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*96de5490SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*96de5490SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*96de5490SAndrew Rist * distributed with this work for additional information 6*96de5490SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*96de5490SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*96de5490SAndrew Rist * "License"); you may not use this file except in compliance 9*96de5490SAndrew Rist * with the License. You may obtain a copy of the License at 10*96de5490SAndrew Rist * 11*96de5490SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*96de5490SAndrew Rist * 13*96de5490SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*96de5490SAndrew Rist * software distributed under the License is distributed on an 15*96de5490SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*96de5490SAndrew Rist * KIND, either express or implied. See the License for the 17*96de5490SAndrew Rist * specific language governing permissions and limitations 18*96de5490SAndrew Rist * under the License. 19*96de5490SAndrew Rist * 20*96de5490SAndrew Rist *************************************************************/ 21*96de5490SAndrew Rist 22*96de5490SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 25cdf0e10cSrcweir #include "precompiled_dbaccess.hxx" 26cdf0e10cSrcweir 27cdf0e10cSrcweir #ifndef DBACCESS_ASYNCMODALDIALOG_HXX 28cdf0e10cSrcweir #include "asyncmodaldialog.hxx" 29cdf0e10cSrcweir #endif 30cdf0e10cSrcweir 31cdf0e10cSrcweir /** === begin UNO includes === **/ 32cdf0e10cSrcweir #ifndef _COM_SUN_STAR_LANG_ILLEGALARGUMENTEXCEPTION_HPP_ 33cdf0e10cSrcweir #include <com/sun/star/lang/IllegalArgumentException.hpp> 34cdf0e10cSrcweir #endif 35cdf0e10cSrcweir /** === end UNO includes === **/ 36cdf0e10cSrcweir 37cdf0e10cSrcweir #ifndef _SV_SVAPP_HXX 38cdf0e10cSrcweir #include <vcl/svapp.hxx> 39cdf0e10cSrcweir #endif 40cdf0e10cSrcweir #ifndef TOOLS_DIAGNOSE_EX_H 41cdf0e10cSrcweir #include <tools/diagnose_ex.h> 42cdf0e10cSrcweir #endif 43cdf0e10cSrcweir 44cdf0e10cSrcweir //........................................................................ 45cdf0e10cSrcweir namespace dbaui 46cdf0e10cSrcweir { 47cdf0e10cSrcweir //........................................................................ 48cdf0e10cSrcweir 49cdf0e10cSrcweir /** === begin UNO using === **/ 50cdf0e10cSrcweir using ::com::sun::star::uno::Reference; 51cdf0e10cSrcweir using ::com::sun::star::ui::dialogs::XExecutableDialog; 52cdf0e10cSrcweir using ::com::sun::star::lang::IllegalArgumentException; 53cdf0e10cSrcweir using ::com::sun::star::uno::Exception; 54cdf0e10cSrcweir /** === end UNO using === **/ 55cdf0e10cSrcweir 56cdf0e10cSrcweir //==================================================================== 57cdf0e10cSrcweir //= AsyncDialogExecutor 58cdf0e10cSrcweir //==================================================================== 59cdf0e10cSrcweir class DialogExecutor_Impl 60cdf0e10cSrcweir { 61cdf0e10cSrcweir Reference< XExecutableDialog > m_xDialog; 62cdf0e10cSrcweir 63cdf0e10cSrcweir public: DialogExecutor_Impl(const Reference<XExecutableDialog> & _rxDialog)64cdf0e10cSrcweir DialogExecutor_Impl( const Reference< XExecutableDialog >& _rxDialog ) 65cdf0e10cSrcweir :m_xDialog( _rxDialog ) 66cdf0e10cSrcweir { 67cdf0e10cSrcweir } 68cdf0e10cSrcweir execute()69cdf0e10cSrcweir void execute() 70cdf0e10cSrcweir { 71cdf0e10cSrcweir Application::PostUserEvent( LINK( this, DialogExecutor_Impl, onExecute ) ); 72cdf0e10cSrcweir } 73cdf0e10cSrcweir 74cdf0e10cSrcweir protected: ~DialogExecutor_Impl()75cdf0e10cSrcweir ~DialogExecutor_Impl() 76cdf0e10cSrcweir { 77cdf0e10cSrcweir } 78cdf0e10cSrcweir 79cdf0e10cSrcweir private: 80cdf0e10cSrcweir DECL_LINK( onExecute, void* ); 81cdf0e10cSrcweir }; 82cdf0e10cSrcweir 83cdf0e10cSrcweir //-------------------------------------------------------------------- 84cdf0e10cSrcweir IMPL_LINK( DialogExecutor_Impl, onExecute, void*, /* _notInterestedIn */ ) 85cdf0e10cSrcweir { 86cdf0e10cSrcweir try 87cdf0e10cSrcweir { 88cdf0e10cSrcweir m_xDialog->execute(); 89cdf0e10cSrcweir } 90cdf0e10cSrcweir catch( const Exception& ) 91cdf0e10cSrcweir { 92cdf0e10cSrcweir DBG_UNHANDLED_EXCEPTION(); 93cdf0e10cSrcweir } 94cdf0e10cSrcweir 95cdf0e10cSrcweir delete this; 96cdf0e10cSrcweir return 0L; 97cdf0e10cSrcweir } 98cdf0e10cSrcweir 99cdf0e10cSrcweir //==================================================================== 100cdf0e10cSrcweir //= AsyncDialogExecutor 101cdf0e10cSrcweir //==================================================================== 102cdf0e10cSrcweir //-------------------------------------------------------------------- executeModalDialogAsync(const Reference<XExecutableDialog> & _rxDialog)103cdf0e10cSrcweir void AsyncDialogExecutor::executeModalDialogAsync( const Reference< XExecutableDialog >& _rxDialog ) 104cdf0e10cSrcweir { 105cdf0e10cSrcweir if ( !_rxDialog.is() ) 106cdf0e10cSrcweir throw IllegalArgumentException(); 107cdf0e10cSrcweir 108cdf0e10cSrcweir 109cdf0e10cSrcweir DialogExecutor_Impl* pExecutor = new DialogExecutor_Impl( _rxDialog ); 110cdf0e10cSrcweir pExecutor->execute(); 111cdf0e10cSrcweir // will delete itself 112cdf0e10cSrcweir } 113cdf0e10cSrcweir 114cdf0e10cSrcweir //........................................................................ 115cdf0e10cSrcweir } // namespace dbaui 116cdf0e10cSrcweir //........................................................................ 117cdf0e10cSrcweir 118