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 _DBU_REGHELPER_HXX_ 28cdf0e10cSrcweir #include "dbu_reghelper.hxx" 29cdf0e10cSrcweir #endif 30cdf0e10cSrcweir #ifndef _DBAUI_ADABASSETTINGSDLG_HXX 31cdf0e10cSrcweir #include "AdabasSettingsDlg.hxx" 32cdf0e10cSrcweir #endif 33cdf0e10cSrcweir #ifndef DBAUI_ADABASSTATDLG_HXX 34cdf0e10cSrcweir #include "AdabasStatDlg.hxx" 35cdf0e10cSrcweir #endif 36cdf0e10cSrcweir 37cdf0e10cSrcweir 38cdf0e10cSrcweir using namespace dbaui; 39cdf0e10cSrcweir createRegistryInfo_OAdabasSettingsDialog()40cdf0e10cSrcweirextern "C" void SAL_CALL createRegistryInfo_OAdabasSettingsDialog() 41cdf0e10cSrcweir { 42cdf0e10cSrcweir static OMultiInstanceAutoRegistration< OAdabasSettingsDialog > aAutoRegistration; 43cdf0e10cSrcweir } 44cdf0e10cSrcweir 45cdf0e10cSrcweir //......................................................................... 46cdf0e10cSrcweir namespace dbaui 47cdf0e10cSrcweir { 48cdf0e10cSrcweir //......................................................................... 49cdf0e10cSrcweir 50cdf0e10cSrcweir using namespace ::com::sun::star::uno; 51cdf0e10cSrcweir using namespace ::com::sun::star::lang; 52cdf0e10cSrcweir using namespace ::com::sun::star::beans; 53cdf0e10cSrcweir 54cdf0e10cSrcweir //========================================================================= 55cdf0e10cSrcweir //------------------------------------------------------------------------- OAdabasSettingsDialog(const Reference<XMultiServiceFactory> & _rxORB)56cdf0e10cSrcweirOAdabasSettingsDialog::OAdabasSettingsDialog(const Reference< XMultiServiceFactory >& _rxORB) 57cdf0e10cSrcweir :ODatabaseAdministrationDialog(_rxORB) 58cdf0e10cSrcweir { 59cdf0e10cSrcweir } 60cdf0e10cSrcweir //------------------------------------------------------------------------- getImplementationId()61cdf0e10cSrcweirSequence<sal_Int8> SAL_CALL OAdabasSettingsDialog::getImplementationId( ) throw(RuntimeException) 62cdf0e10cSrcweir { 63cdf0e10cSrcweir static ::cppu::OImplementationId aId; 64cdf0e10cSrcweir return aId.getImplementationId(); 65cdf0e10cSrcweir } 66cdf0e10cSrcweir 67cdf0e10cSrcweir //------------------------------------------------------------------------- Create(const Reference<XMultiServiceFactory> & _rxFactory)68cdf0e10cSrcweirReference< XInterface > SAL_CALL OAdabasSettingsDialog::Create(const Reference< XMultiServiceFactory >& _rxFactory) 69cdf0e10cSrcweir { 70cdf0e10cSrcweir return *(new OAdabasSettingsDialog(_rxFactory)); 71cdf0e10cSrcweir } 72cdf0e10cSrcweir 73cdf0e10cSrcweir //------------------------------------------------------------------------- getImplementationName()74cdf0e10cSrcweir::rtl::OUString SAL_CALL OAdabasSettingsDialog::getImplementationName() throw(RuntimeException) 75cdf0e10cSrcweir { 76cdf0e10cSrcweir return getImplementationName_Static(); 77cdf0e10cSrcweir } 78cdf0e10cSrcweir 79cdf0e10cSrcweir //------------------------------------------------------------------------- getImplementationName_Static()80cdf0e10cSrcweir::rtl::OUString OAdabasSettingsDialog::getImplementationName_Static() throw(RuntimeException) 81cdf0e10cSrcweir { 82cdf0e10cSrcweir return ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("org.openoffice.comp.dbu.OAdabasSettingsDialog")); 83cdf0e10cSrcweir } 84cdf0e10cSrcweir 85cdf0e10cSrcweir //------------------------------------------------------------------------- getSupportedServiceNames()86cdf0e10cSrcweir::comphelper::StringSequence SAL_CALL OAdabasSettingsDialog::getSupportedServiceNames() throw(RuntimeException) 87cdf0e10cSrcweir { 88cdf0e10cSrcweir return getSupportedServiceNames_Static(); 89cdf0e10cSrcweir } 90cdf0e10cSrcweir 91cdf0e10cSrcweir //------------------------------------------------------------------------- getSupportedServiceNames_Static()92cdf0e10cSrcweir::comphelper::StringSequence OAdabasSettingsDialog::getSupportedServiceNames_Static() throw(RuntimeException) 93cdf0e10cSrcweir { 94cdf0e10cSrcweir ::comphelper::StringSequence aSupported(1); 95cdf0e10cSrcweir aSupported.getArray()[0] = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.sdb.AdabasAdministrationDialog")); 96cdf0e10cSrcweir return aSupported; 97cdf0e10cSrcweir } 98cdf0e10cSrcweir 99cdf0e10cSrcweir //------------------------------------------------------------------------- getPropertySetInfo()100cdf0e10cSrcweirReference<XPropertySetInfo> SAL_CALL OAdabasSettingsDialog::getPropertySetInfo() throw(RuntimeException) 101cdf0e10cSrcweir { 102cdf0e10cSrcweir Reference<XPropertySetInfo> xInfo( createPropertySetInfo( getInfoHelper() ) ); 103cdf0e10cSrcweir return xInfo; 104cdf0e10cSrcweir } 105cdf0e10cSrcweir 106cdf0e10cSrcweir //------------------------------------------------------------------------- getInfoHelper()107cdf0e10cSrcweir::cppu::IPropertyArrayHelper& OAdabasSettingsDialog::getInfoHelper() 108cdf0e10cSrcweir { 109cdf0e10cSrcweir return *const_cast<OAdabasSettingsDialog*>(this)->getArrayHelper(); 110cdf0e10cSrcweir } 111cdf0e10cSrcweir 112cdf0e10cSrcweir //------------------------------------------------------------------------------ createArrayHelper() const113cdf0e10cSrcweir::cppu::IPropertyArrayHelper* OAdabasSettingsDialog::createArrayHelper( ) const 114cdf0e10cSrcweir { 115cdf0e10cSrcweir Sequence< Property > aProps; 116cdf0e10cSrcweir describeProperties(aProps); 117cdf0e10cSrcweir return new ::cppu::OPropertyArrayHelper(aProps); 118cdf0e10cSrcweir } 119cdf0e10cSrcweir //------------------------------------------------------------------------------ createDialog(Window * _pParent)120cdf0e10cSrcweirDialog* OAdabasSettingsDialog::createDialog(Window* _pParent) 121cdf0e10cSrcweir { 122cdf0e10cSrcweir OAdabasStatPageDlg* pDlg = new OAdabasStatPageDlg(_pParent, m_pDatasourceItems, m_aContext.getLegacyServiceFactory(),m_aInitialSelection); 123cdf0e10cSrcweir return pDlg; 124cdf0e10cSrcweir } 125cdf0e10cSrcweir 126cdf0e10cSrcweir //......................................................................... 127cdf0e10cSrcweir } // namespace dbaui 128cdf0e10cSrcweir //......................................................................... 129cdf0e10cSrcweir 130