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 10cdf0e10cSrcweir * 11*96de5490SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 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. 19cdf0e10cSrcweir * 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 _DBAUI_SQLMESSAGE_HXX_ 28cdf0e10cSrcweir #include "sqlmessage.hxx" 29cdf0e10cSrcweir #endif 30cdf0e10cSrcweir #ifndef _DBAUI_UNOSQLMESSAGE_HXX_ 31cdf0e10cSrcweir #include "unosqlmessage.hxx" 32cdf0e10cSrcweir #endif 33cdf0e10cSrcweir #ifndef _DBU_REGHELPER_HXX_ 34cdf0e10cSrcweir #include "dbu_reghelper.hxx" 35cdf0e10cSrcweir #endif 36cdf0e10cSrcweir #ifndef DBACCESS_SHARED_DBUSTRINGS_HRC 37cdf0e10cSrcweir #include "dbustrings.hrc" 38cdf0e10cSrcweir #endif 39cdf0e10cSrcweir #ifndef _CPPUHELPER_TYPEPROVIDER_HXX_ 40cdf0e10cSrcweir #include <cppuhelper/typeprovider.hxx> 41cdf0e10cSrcweir #endif 42cdf0e10cSrcweir #ifndef _DBHELPER_DBEXCEPTION_HXX_ 43cdf0e10cSrcweir #include <connectivity/dbexception.hxx> 44cdf0e10cSrcweir #endif 45cdf0e10cSrcweir 46cdf0e10cSrcweir using namespace dbaui; 47cdf0e10cSrcweir using namespace dbtools; 48cdf0e10cSrcweir 49cdf0e10cSrcweir using namespace ::com::sun::star::sdbc; 50cdf0e10cSrcweir using namespace ::com::sun::star::sdb; 51cdf0e10cSrcweir 52cdf0e10cSrcweir extern "C" void SAL_CALL createRegistryInfo_OSQLMessageDialog() 53cdf0e10cSrcweir { 54cdf0e10cSrcweir static OMultiInstanceAutoRegistration< OSQLMessageDialog > aAutoRegistration; 55cdf0e10cSrcweir } 56cdf0e10cSrcweir 57cdf0e10cSrcweir //......................................................................... 58cdf0e10cSrcweir namespace dbaui 59cdf0e10cSrcweir { 60cdf0e10cSrcweir //......................................................................... 61cdf0e10cSrcweir 62cdf0e10cSrcweir using namespace ::com::sun::star::uno; 63cdf0e10cSrcweir using namespace ::com::sun::star::lang; 64cdf0e10cSrcweir using namespace ::com::sun::star::beans; 65cdf0e10cSrcweir 66cdf0e10cSrcweir //========================================================================= 67cdf0e10cSrcweir //------------------------------------------------------------------------- 68cdf0e10cSrcweir OSQLMessageDialog::OSQLMessageDialog(const Reference< XMultiServiceFactory >& _rxORB) 69cdf0e10cSrcweir :OSQLMessageDialogBase(_rxORB) 70cdf0e10cSrcweir { 71cdf0e10cSrcweir registerMayBeVoidProperty(PROPERTY_SQLEXCEPTION, PROPERTY_ID_SQLEXCEPTION, PropertyAttribute::TRANSIENT | PropertyAttribute::MAYBEVOID, 72cdf0e10cSrcweir &m_aException, ::getCppuType(static_cast<SQLException*>(NULL))); 73cdf0e10cSrcweir registerProperty( PROPERTY_HELP_URL, PROPERTY_ID_HELP_URL, PropertyAttribute::TRANSIENT, 74cdf0e10cSrcweir &m_sHelpURL, ::getCppuType( &m_sHelpURL ) ); 75cdf0e10cSrcweir } 76cdf0e10cSrcweir 77cdf0e10cSrcweir //------------------------------------------------------------------------- 78cdf0e10cSrcweir Sequence<sal_Int8> SAL_CALL OSQLMessageDialog::getImplementationId( ) throw(RuntimeException) 79cdf0e10cSrcweir { 80cdf0e10cSrcweir static ::cppu::OImplementationId aId; 81cdf0e10cSrcweir return aId.getImplementationId(); 82cdf0e10cSrcweir } 83cdf0e10cSrcweir 84cdf0e10cSrcweir //------------------------------------------------------------------------- 85cdf0e10cSrcweir Reference< XInterface > SAL_CALL OSQLMessageDialog::Create(const Reference< XMultiServiceFactory >& _rxFactory) 86cdf0e10cSrcweir { 87cdf0e10cSrcweir return *(new OSQLMessageDialog(_rxFactory)); 88cdf0e10cSrcweir } 89cdf0e10cSrcweir 90cdf0e10cSrcweir //------------------------------------------------------------------------- 91cdf0e10cSrcweir ::rtl::OUString SAL_CALL OSQLMessageDialog::getImplementationName() throw(RuntimeException) 92cdf0e10cSrcweir { 93cdf0e10cSrcweir return getImplementationName_Static(); 94cdf0e10cSrcweir } 95cdf0e10cSrcweir 96cdf0e10cSrcweir //------------------------------------------------------------------------- 97cdf0e10cSrcweir ::rtl::OUString OSQLMessageDialog::getImplementationName_Static() throw(RuntimeException) 98cdf0e10cSrcweir { 99cdf0e10cSrcweir return ::rtl::OUString::createFromAscii("org.openoffice.comp.dbu.OSQLMessageDialog"); 100cdf0e10cSrcweir } 101cdf0e10cSrcweir 102cdf0e10cSrcweir //------------------------------------------------------------------------- 103cdf0e10cSrcweir ::comphelper::StringSequence SAL_CALL OSQLMessageDialog::getSupportedServiceNames() throw(RuntimeException) 104cdf0e10cSrcweir { 105cdf0e10cSrcweir return getSupportedServiceNames_Static(); 106cdf0e10cSrcweir } 107cdf0e10cSrcweir 108cdf0e10cSrcweir //------------------------------------------------------------------------- 109cdf0e10cSrcweir ::comphelper::StringSequence OSQLMessageDialog::getSupportedServiceNames_Static() throw(RuntimeException) 110cdf0e10cSrcweir { 111cdf0e10cSrcweir ::comphelper::StringSequence aSupported(1); 112cdf0e10cSrcweir aSupported.getArray()[0] = ::rtl::OUString::createFromAscii("com.sun.star.sdb.ErrorMessageDialog"); 113cdf0e10cSrcweir return aSupported; 114cdf0e10cSrcweir } 115cdf0e10cSrcweir 116cdf0e10cSrcweir //------------------------------------------------------------------------- 117cdf0e10cSrcweir sal_Bool SAL_CALL OSQLMessageDialog::convertFastPropertyValue( Any& _rConvertedValue, Any& _rOldValue, sal_Int32 _nHandle, const Any& _rValue) throw(IllegalArgumentException) 118cdf0e10cSrcweir { 119cdf0e10cSrcweir switch (_nHandle) 120cdf0e10cSrcweir { 121cdf0e10cSrcweir case PROPERTY_ID_SQLEXCEPTION: 122cdf0e10cSrcweir { 123cdf0e10cSrcweir SQLExceptionInfo aInfo(_rValue); 124cdf0e10cSrcweir if (!aInfo.isValid()) 125cdf0e10cSrcweir throw IllegalArgumentException(); 126cdf0e10cSrcweir 127cdf0e10cSrcweir _rOldValue = m_aException; 128cdf0e10cSrcweir _rConvertedValue = aInfo.get(); 129cdf0e10cSrcweir 130cdf0e10cSrcweir return sal_True; 131cdf0e10cSrcweir // always assume "modified", don't bother with with comparing the two values 132cdf0e10cSrcweir } 133cdf0e10cSrcweir default: 134cdf0e10cSrcweir return OSQLMessageDialogBase::convertFastPropertyValue(_rConvertedValue, _rOldValue, _nHandle, _rValue); 135cdf0e10cSrcweir } 136cdf0e10cSrcweir } 137cdf0e10cSrcweir 138cdf0e10cSrcweir //------------------------------------------------------------------------- 139cdf0e10cSrcweir Reference<XPropertySetInfo> SAL_CALL OSQLMessageDialog::getPropertySetInfo() throw(RuntimeException) 140cdf0e10cSrcweir { 141cdf0e10cSrcweir Reference<XPropertySetInfo> xInfo( createPropertySetInfo( getInfoHelper() ) ); 142cdf0e10cSrcweir return xInfo; 143cdf0e10cSrcweir } 144cdf0e10cSrcweir 145cdf0e10cSrcweir //------------------------------------------------------------------------- 146cdf0e10cSrcweir ::cppu::IPropertyArrayHelper& OSQLMessageDialog::getInfoHelper() 147cdf0e10cSrcweir { 148cdf0e10cSrcweir return *const_cast<OSQLMessageDialog*>(this)->getArrayHelper(); 149cdf0e10cSrcweir } 150cdf0e10cSrcweir 151cdf0e10cSrcweir //------------------------------------------------------------------------------ 152cdf0e10cSrcweir ::cppu::IPropertyArrayHelper* OSQLMessageDialog::createArrayHelper( ) const 153cdf0e10cSrcweir { 154cdf0e10cSrcweir Sequence< Property > aProps; 155cdf0e10cSrcweir describeProperties(aProps); 156cdf0e10cSrcweir return new ::cppu::OPropertyArrayHelper(aProps); 157cdf0e10cSrcweir } 158cdf0e10cSrcweir 159cdf0e10cSrcweir //------------------------------------------------------------------------------ 160cdf0e10cSrcweir Dialog* OSQLMessageDialog::createDialog(Window* _pParent) 161cdf0e10cSrcweir { 162cdf0e10cSrcweir if ( m_aException.hasValue() ) 163cdf0e10cSrcweir return new OSQLMessageBox( _pParent, SQLExceptionInfo( m_aException ), WB_OK | WB_DEF_OK, m_sHelpURL ); 164cdf0e10cSrcweir 165cdf0e10cSrcweir OSL_ENSURE(sal_False, "OSQLMessageDialog::createDialog : You should use the SQLException property to specify the error to display!"); 166cdf0e10cSrcweir return new OSQLMessageBox(_pParent, SQLException()); 167cdf0e10cSrcweir } 168cdf0e10cSrcweir 169cdf0e10cSrcweir //......................................................................... 170cdf0e10cSrcweir } // namespace dbaui 171cdf0e10cSrcweir //......................................................................... 172cdf0e10cSrcweir 173