/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 . */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "datman.hxx" #include "bibresid.hxx" #include "bibmod.hxx" #include "bibview.hxx" #include "bibprop.hrc" #include "toolbar.hxx" #include "toolbar.hrc" #include "bibconfig.hxx" #include "bibbeam.hxx" #include "general.hxx" #include "bib.hrc" #include "bibliography.hrc" #include #include using namespace ::com::sun::star; using namespace ::com::sun::star::beans; using namespace ::com::sun::star::container; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::sdb; using namespace ::com::sun::star::sdbc; using namespace ::com::sun::star::sdbcx; using namespace ::com::sun::star::form; using namespace ::com::sun::star::frame; using namespace ::com::sun::star::lang; Reference< XConnection > getConnection(const OUString& _rURL) { // first get the sdb::DataSource corresponding to the url Reference< XDataSource > xDataSource; // is it a favorite title ? Reference xContext = comphelper::getProcessComponentContext(); Reference< XDatabaseContext > xNamingContext = DatabaseContext::create(xContext); if (xNamingContext->hasByName(_rURL)) { DBG_ASSERT(xNamingContext.is(), "::getDataSource : no NamingService interface on the sdb::DatabaseAccessContext !"); try { xDataSource = Reference< XDataSource > (xNamingContext->getRegisteredObject(_rURL), UNO_QUERY); } catch (const Exception&) { OSL_FAIL("Exception caught in ODatabaseContext::getRegisteredObject()"); } } // build the connection from the data source Reference< XConnection > xConn; if (xDataSource.is()) { // need user/pwd for this Reference< XPropertySet > xDataSourceProps(xDataSource, UNO_QUERY); Reference< XCompletedConnection > xComplConn(xDataSource, UNO_QUERY); try { Reference xIHdl( task::InteractionHandler::createWithParent(xContext, 0), UNO_QUERY_THROW); xConn = xComplConn->connectWithCompletion(xIHdl); } catch (const SQLException&) { // TODO : a real error handling } catch (const Exception&) { } } return xConn; } Reference< XConnection > getConnection(const Reference< XInterface > & xRowSet) { Reference< XConnection > xConn; try { Reference< XPropertySet > xFormProps(xRowSet, UNO_QUERY); if (!xFormProps.is()) return xConn; xConn = Reference< XConnection > (*static_cast const *>(xFormProps->getPropertyValue("ActiveConnection").getValue()), UNO_QUERY); if (!xConn.is()) { DBG_WARNING("no active connection"); } } catch (const Exception&) { OSL_FAIL("exception in getConnection"); } return xConn; } Reference< XNameAccess > getColumns(const Reference< XForm > & _rxForm) { Reference< XNameAccess > xReturn; // check if the form is alive Reference< XColumnsSupplier > xSupplyCols( _rxForm, UNO_QUERY ); if (xSupplyCols.is()) xReturn = xSupplyCols->getColumns(); if (!xReturn.is() || (xReturn->getElementNames().getLength() == 0)) { // no .... xReturn = NULL; // -> get the table the form is bound to and ask it for their columns Reference< XTablesSupplier > xSupplyTables( getConnection( _rxForm ), UNO_QUERY ); Reference< XPropertySet > xFormProps( _rxForm, UNO_QUERY ); if (xFormProps.is() && xSupplyTables.is()) { try { DBG_ASSERT((*static_cast(xFormProps->getPropertyValue("CommandType").getValue())) == CommandType::TABLE, "::getColumns : invalid form (has no table as data source) !"); OUString sTable; xFormProps->getPropertyValue("Command") >>= sTable; Reference< XNameAccess > xTables = xSupplyTables->getTables(); if (xTables.is() && xTables->hasByName(sTable)) xSupplyCols = Reference< XColumnsSupplier > ( *static_cast const *>(xTables->getByName(sTable).getValue()), UNO_QUERY); if (xSupplyCols.is()) xReturn = xSupplyCols->getColumns(); } catch (const Exception& e) { #ifdef DBG_UTIL OUString sMsg( "::getColumns : catched an exception (" + e.Message + ") ..." ); OSL_FAIL(OUStringToOString(sMsg, RTL_TEXTENCODING_ASCII_US ).getStr()); #else (void)e; #endif } } } return xReturn; } class MappingDialog_Impl : public ModalDialog { BibDataManager* pDatMan; VclPtr pOKBT; VclPtr pIdentifierLB; VclPtr pAuthorityTypeLB; VclPtr pAuthorLB; VclPtr pTitleLB; VclPtr pMonthLB; VclPtr pYearLB; VclPtr pISBNLB; VclPtr pBooktitleLB; VclPtr pChapterLB; VclPtr pEditionLB; VclPtr pEditorLB; VclPtr pHowpublishedLB; VclPtr pInstitutionLB; VclPtr pJournalLB; VclPtr pNoteLB; VclPtr pAnnoteLB; VclPtr pNumberLB; VclPtr pOrganizationsLB; VclPtr pPagesLB; VclPtr pPublisherLB; VclPtr pAddressLB; VclPtr pSchoolLB; VclPtr pSeriesLB; VclPtr pReportTypeLB; VclPtr pVolumeLB; VclPtr pURLLB; VclPtr pCustom1LB; VclPtr pCustom2LB; VclPtr pCustom3LB; VclPtr pCustom4LB; VclPtr pCustom5LB; VclPtr aListBoxes[COLUMN_COUNT]; OUString sNone; bool bModified; DECL_LINK(OkHdl, void *); DECL_LINK(ListBoxSelectHdl, ListBox*); public: MappingDialog_Impl(vcl::Window* pParent, BibDataManager* pDatMan); virtual ~MappingDialog_Impl(); virtual void dispose() SAL_OVERRIDE; void SetModified() {bModified = true;} }; static sal_uInt16 lcl_FindLogicalName(BibConfig* pConfig , const OUString& rLogicalColumnName) { for(sal_uInt16 i = 0; i < COLUMN_COUNT; i++) { if(rLogicalColumnName == pConfig->GetDefColumnName(i)) return i; } return USHRT_MAX; } MappingDialog_Impl::MappingDialog_Impl(vcl::Window* pParent, BibDataManager* pMan) : ModalDialog(pParent, "MappingDialog", "modules/sbibliography/ui/mappingdialog.ui") , pDatMan(pMan) , sNone(BIB_RESSTR(RID_BIB_STR_NONE)) , bModified(false) { get(pOKBT, "ok"); get(pIdentifierLB, "identifierCombobox"); get(pAuthorityTypeLB, "authorityTypeCombobox"); get(pAuthorLB, "authorCombobox"); get(pTitleLB, "titleCombobox"); get(pMonthLB, "monthCombobox"); get(pYearLB, "yearCombobox"); get(pISBNLB, "ISBNCombobox"); get(pBooktitleLB, "bookTitleCombobox"); get(pChapterLB, "chapterCombobox"); get(pEditionLB, "editionCombobox"); get(pEditorLB, "editorCombobox"); get(pHowpublishedLB, "howPublishedCombobox"); get(pInstitutionLB, "institutionCombobox"); get(pJournalLB, "journalCombobox"); get(pNoteLB, "noteCombobox"); get(pAnnoteLB, "annoteCombobox"); get(pNumberLB, "numberCombobox"); get(pOrganizationsLB, "organizationCombobox"); get(pPagesLB, "pagesCombobox"); get(pPublisherLB, "publisherCombobox"); get(pAddressLB, "addressCombobox"); get(pSchoolLB, "schoolCombobox"); get(pSeriesLB, "seriesCombobox"); get(pReportTypeLB, "reportTypeCombobox"); get(pVolumeLB, "volumeCombobox"); get(pURLLB, "URLCombobox"); get(pCustom1LB, "custom1Combobox"); get(pCustom2LB, "custom2Combobox"); get(pCustom3LB, "custom3Combobox"); get(pCustom4LB, "custom4Combobox"); get(pCustom5LB, "custom5Combobox"); pOKBT->SetClickHdl(LINK(this, MappingDialog_Impl, OkHdl)); OUString sTitle = GetText(); sTitle = sTitle.replaceFirst("%1", pDatMan->getActiveDataTable()); SetText(sTitle); aListBoxes[0] = pIdentifierLB; aListBoxes[1] = pAuthorityTypeLB; aListBoxes[2] = pAuthorLB; aListBoxes[3] = pTitleLB; aListBoxes[4] = pYearLB; aListBoxes[5] = pISBNLB; aListBoxes[6] = pBooktitleLB; aListBoxes[7] = pChapterLB; aListBoxes[8] = pEditionLB; aListBoxes[9] = pEditorLB; aListBoxes[10] = pHowpublishedLB; aListBoxes[11] = pInstitutionLB; aListBoxes[12] = pJournalLB; aListBoxes[13] = pMonthLB; aListBoxes[14] = pNoteLB; aListBoxes[15] = pAnnoteLB; aListBoxes[16] = pNumberLB; aListBoxes[17] = pOrganizationsLB; aListBoxes[18] = pPagesLB; aListBoxes[19] = pPublisherLB; aListBoxes[20] = pAddressLB; aListBoxes[21] = pSchoolLB; aListBoxes[22] = pSeriesLB; aListBoxes[23] = pReportTypeLB; aListBoxes[24] = pVolumeLB; aListBoxes[25] = pURLLB; aListBoxes[26] = pCustom1LB; aListBoxes[27] = pCustom2LB; aListBoxes[28] = pCustom3LB; aListBoxes[29] = pCustom4LB; aListBoxes[30] = pCustom5LB; aListBoxes[0]->InsertEntry(sNone); Reference< XNameAccess > xFields = getColumns( pDatMan->getForm() ); DBG_ASSERT(xFields.is(), "MappingDialog_Impl::MappingDialog_Impl : gave me an invalid form !"); if(xFields.is()) { Sequence< OUString > aNames = xFields->getElementNames(); sal_Int32 nFieldsCount = aNames.getLength(); const OUString* pNames = aNames.getConstArray(); for(sal_Int32 nField = 0; nField < nFieldsCount; nField++) aListBoxes[0]->InsertEntry(pNames[nField]); } Link<> aLnk = LINK(this, MappingDialog_Impl, ListBoxSelectHdl); aListBoxes[0]->SelectEntryPos(0); aListBoxes[0]->SetSelectHdl(aLnk); for(sal_uInt16 i = 1; i < COLUMN_COUNT; i++) { for(sal_uInt16 j = 0; j < aListBoxes[0]->GetEntryCount();j++) aListBoxes[i]->InsertEntry(aListBoxes[0]->GetEntry(j)); aListBoxes[i]->SelectEntryPos(0); aListBoxes[i]->SetSelectHdl(aLnk); } BibConfig* pConfig = BibModul::GetConfig(); BibDBDescriptor aDesc; aDesc.sDataSource = pDatMan->getActiveDataSource(); aDesc.sTableOrQuery = pDatMan->getActiveDataTable(); aDesc.nCommandType = CommandType::TABLE; const Mapping* pMapping = pConfig->GetMapping(aDesc); if(pMapping) { for(sal_uInt16 nEntry = 0; nEntry < COLUMN_COUNT; nEntry++) { sal_uInt16 nListBoxIndex = lcl_FindLogicalName( pConfig, pMapping->aColumnPairs[nEntry].sLogicalColumnName); if(nListBoxIndex < COLUMN_COUNT) { aListBoxes[nListBoxIndex]->SelectEntry(pMapping->aColumnPairs[nEntry].sRealColumnName); } } } } MappingDialog_Impl::~MappingDialog_Impl() { disposeOnce(); } void MappingDialog_Impl::dispose() { pOKBT.clear(); pIdentifierLB.clear(); pAuthorityTypeLB.clear(); pAuthorLB.clear(); pTitleLB.clear(); pMonthLB.clear(); pYearLB.clear(); pISBNLB.clear(); pBooktitleLB.clear(); pChapterLB.clear(); pEditionLB.clear(); pEditorLB.clear(); pHowpublishedLB.clear(); pInstitutionLB.clear(); pJournalLB.clear(); pNoteLB.clear(); pAnnoteLB.clear(); pNumberLB.clear(); pOrganizationsLB.clear(); pPagesLB.clear(); pPublisherLB.clear(); pAddressLB.clear(); pSchoolLB.clear(); pSeriesLB.clear(); pReportTypeLB.clear(); pVolumeLB.clear(); pURLLB.clear(); pCustom1LB.clear(); pCustom2LB.clear(); pCustom3LB.clear(); pCustom4LB.clear(); pCustom5LB.clear(); for(auto & a : aListBoxes) a.clear(); ModalDialog::dispose(); } IMPL_LINK(MappingDialog_Impl, ListBoxSelectHdl, ListBox*, pListBox) { sal_uInt16 nEntryPos = pListBox->GetSelectEntryPos(); if(0 < nEntryPos) { for(sal_uInt16 i = 0; i < COLUMN_COUNT; i++) { if(pListBox != aListBoxes[i] && aListBoxes[i]->GetSelectEntryPos() == nEntryPos) aListBoxes[i]->SelectEntryPos(0); } } SetModified(); return 0; } IMPL_LINK_NOARG(MappingDialog_Impl, OkHdl) { if(bModified) { Mapping aNew; aNew.sTableName = pDatMan->getActiveDataTable(); aNew.sURL = pDatMan->getActiveDataSource(); sal_uInt16 nWriteIndex = 0; BibConfig* pConfig = BibModul::GetConfig(); for(sal_uInt16 nEntry = 0; nEntry < COLUMN_COUNT; nEntry++) { OUString sSel = aListBoxes[nEntry]->GetSelectEntry(); if(sSel != sNone) { aNew.aColumnPairs[nWriteIndex].sRealColumnName = sSel; aNew.aColumnPairs[nWriteIndex].sLogicalColumnName = pConfig->GetDefColumnName(nEntry); nWriteIndex++; } } BibDBDescriptor aDesc; aDesc.sDataSource = pDatMan->getActiveDataSource(); aDesc.sTableOrQuery = pDatMan->getActiveDataTable(); aDesc.nCommandType = CommandType::TABLE; pDatMan->ResetIdentifierMapping(); pConfig->SetMapping(aDesc, &aNew); } EndDialog(bModified ? RET_OK : RET_CANCEL); return 0; } class DBChangeDialog_Impl : public ModalDialog { VclPtr m_pSelectionLB; DBChangeDialogConfig_Impl aConfig; BibDataManager* pDatMan; DECL_LINK(DoubleClickHdl, SvTabListBox*); public: DBChangeDialog_Impl(vcl::Window* pParent, BibDataManager* pMan ); virtual ~DBChangeDialog_Impl(); virtual void dispose() SAL_OVERRIDE; OUString GetCurrentURL()const; }; DBChangeDialog_Impl::DBChangeDialog_Impl(vcl::Window* pParent, BibDataManager* pMan ) : ModalDialog(pParent, "ChooseDataSourceDialog", "modules/sbibliography/ui/choosedatasourcedialog.ui") , pDatMan(pMan) { get(m_pSelectionLB, "treeview"); m_pSelectionLB->set_height_request(m_pSelectionLB->GetTextHeight() * 6); m_pSelectionLB->SetStyle(m_pSelectionLB->GetStyle() | WB_SORT); m_pSelectionLB->SetDoubleClickHdl( LINK(this, DBChangeDialog_Impl, DoubleClickHdl)); try { OUString sActiveSource = pDatMan->getActiveDataSource(); const Sequence< OUString >& rSources = aConfig.GetDataSourceNames(); const OUString* pSourceNames = rSources.getConstArray(); for (sal_Int32 i = 0; i < rSources.getLength(); ++i) m_pSelectionLB->InsertEntry(pSourceNames[i]); m_pSelectionLB->SelectEntry(sActiveSource); } catch (const Exception& e) { SAL_WARN("extensions.biblio", "Exception in BibDataManager::DBChangeDialog_Impl::DBChangeDialog_Impl " << e.Message); } } IMPL_LINK(DBChangeDialog_Impl, DoubleClickHdl, SvTabListBox*, /*pLB*/) { EndDialog(RET_OK); return 0; } DBChangeDialog_Impl::~DBChangeDialog_Impl() { disposeOnce(); } void DBChangeDialog_Impl::dispose() { m_pSelectionLB.clear(); ModalDialog::dispose(); } OUString DBChangeDialog_Impl::GetCurrentURL()const { return m_pSelectionLB->GetSelectEntry(); } // XDispatchProvider BibInterceptorHelper::BibInterceptorHelper( ::bib::BibBeamer* pBibBeamer, ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > xDispatch) { if( pBibBeamer ) { xInterception = pBibBeamer->getDispatchProviderInterception(); if( xInterception.is() ) xInterception->registerDispatchProviderInterceptor( this ); } if( xDispatch.is() ) xFormDispatch = xDispatch; } BibInterceptorHelper::~BibInterceptorHelper( ) { } void BibInterceptorHelper::ReleaseInterceptor() { if ( xInterception.is() ) xInterception->releaseDispatchProviderInterceptor( this ); xInterception.clear(); } ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > SAL_CALL BibInterceptorHelper::queryDispatch( const ::com::sun::star::util::URL& aURL, const OUString& aTargetFrameName, sal_Int32 nSearchFlags ) throw (::com::sun::star::uno::RuntimeException, std::exception) { Reference< XDispatch > xReturn; OUString aCommand( aURL.Path ); if ( aCommand == "FormSlots/ConfirmDeletion" ) xReturn = xFormDispatch; else if ( xSlaveDispatchProvider.is() ) xReturn = xSlaveDispatchProvider->queryDispatch( aURL, aTargetFrameName, nSearchFlags); return xReturn; } ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > > SAL_CALL BibInterceptorHelper::queryDispatches( const ::com::sun::star::uno::Sequence< ::com::sun::star::frame::DispatchDescriptor >& aDescripts ) throw (::com::sun::star::uno::RuntimeException, std::exception) { Sequence< Reference< XDispatch> > aReturn( aDescripts.getLength() ); Reference< XDispatch >* pReturn = aReturn.getArray(); const DispatchDescriptor* pDescripts = aDescripts.getConstArray(); for ( sal_Int16 i=0; iFeatureURL, pDescripts->FrameName, pDescripts->SearchFlags ); } return aReturn; } // XDispatchProviderInterceptor ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatchProvider > SAL_CALL BibInterceptorHelper::getSlaveDispatchProvider( ) throw (::com::sun::star::uno::RuntimeException, std::exception) { return xSlaveDispatchProvider; } void SAL_CALL BibInterceptorHelper::setSlaveDispatchProvider( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatchProvider >& xNewSlaveDispatchProvider ) throw (::com::sun::star::uno::RuntimeException, std::exception) { xSlaveDispatchProvider = xNewSlaveDispatchProvider; } ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatchProvider > SAL_CALL BibInterceptorHelper::getMasterDispatchProvider( ) throw (::com::sun::star::uno::RuntimeException, std::exception) { return xMasterDispatchProvider; } void SAL_CALL BibInterceptorHelper::setMasterDispatchProvider( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatchProvider >& xNewMasterDispatchProvider ) throw (::com::sun::star::uno::RuntimeException, std::exception) { xMasterDispatchProvider = xNewMasterDispatchProvider; } #define STR_UID "uid" OUString gGridName("theGrid"); OUString gViewName("theView"); OUString gGlobalName("theGlobals"); OUString gBeamerSize("theBeamerSize"); OUString gViewSize("theViewSize"); BibDataManager::BibDataManager() :BibDataManager_Base( GetMutex() ) ,m_pInterceptorHelper( NULL ) ,m_aLoadListeners(m_aMutex) ,pBibView( NULL ) ,pToolbar(0) { } BibDataManager::~BibDataManager() { Reference< XLoadable > xLoad( m_xForm, UNO_QUERY ); Reference< XPropertySet > xPrSet( m_xForm, UNO_QUERY ); Reference< XComponent > xComp( m_xForm, UNO_QUERY ); if ( m_xForm.is() ) { Reference< XComponent > xConnection; xPrSet->getPropertyValue("ActiveConnection") >>= xConnection; RemoveMeAsUidListener(); if (xLoad.is()) xLoad->unload(); if (xComp.is()) xComp->dispose(); if(xConnection.is()) xConnection->dispose(); m_xForm = NULL; } if( m_pInterceptorHelper ) { m_pInterceptorHelper->ReleaseInterceptor(); m_pInterceptorHelper->release(); m_pInterceptorHelper = NULL; } } void BibDataManager::InsertFields(const Reference< XFormComponent > & _rxGrid) { if ( !_rxGrid.is() ) return; try { Reference< XNameContainer > xColContainer( _rxGrid, UNO_QUERY ); // remove the old fields if ( xColContainer->hasElements() ) { Sequence< OUString > aNames = xColContainer->getElementNames(); const OUString* pNames = aNames.getConstArray(); const OUString* pNamesEnd = pNames + aNames.getLength(); for ( ; pNames != pNamesEnd; ++pNames ) xColContainer->removeByName( *pNames ); } Reference< XNameAccess > xFields = getColumns( m_xForm ); if (!xFields.is()) return; Reference< XGridColumnFactory > xColFactory( _rxGrid, UNO_QUERY ); Reference< XPropertySet > xField; Sequence< OUString > aFields( xFields->getElementNames() ); const OUString* pFields = aFields.getConstArray(); const OUString* pFieldsEnd = pFields + aFields.getLength(); for ( ; pFields != pFieldsEnd; ++pFields ) { xFields->getByName( *pFields ) >>= xField; OUString sCurrentModelType; const OUString sType("Type"); sal_Int32 nType = 0; bool bIsFormatted = false; sal_Bool bFormattedIsNumeric = sal_True; xField->getPropertyValue(sType) >>= nType; switch(nType) { case DataType::BIT: case DataType::BOOLEAN: sCurrentModelType = "CheckBox"; break; case DataType::BINARY: case DataType::VARBINARY: case DataType::LONGVARBINARY: case DataType::BLOB: sCurrentModelType = "TextField"; break; case DataType::VARCHAR: case DataType::LONGVARCHAR: case DataType::CHAR: case DataType::CLOB: bFormattedIsNumeric = sal_False; // _NO_ break ! default: sCurrentModelType = "FormattedField"; bIsFormatted = true; break; } Reference< XPropertySet > xCurrentCol = xColFactory->createColumn(sCurrentModelType); if (bIsFormatted) { OUString sFormatKey("FormatKey"); xCurrentCol->setPropertyValue(sFormatKey, xField->getPropertyValue(sFormatKey)); Any aFormatted(&bFormattedIsNumeric, cppu::UnoType::get()); xCurrentCol->setPropertyValue("TreatAsNumber", aFormatted); } Any aColName = makeAny( *pFields ); xCurrentCol->setPropertyValue(FM_PROP_CONTROLSOURCE, aColName); xCurrentCol->setPropertyValue(FM_PROP_LABEL, aColName); xColContainer->insertByName( *pFields, makeAny( xCurrentCol ) ); } } catch (const Exception&) { OSL_FAIL("Exception in BibDataManager::InsertFields"); } } Reference< awt::XControlModel > BibDataManager::updateGridModel() { return updateGridModel( m_xForm ); } Reference< awt::XControlModel > BibDataManager::updateGridModel(const Reference< XForm > & xDbForm) { try { Reference< XPropertySet > aFormPropSet( xDbForm, UNO_QUERY ); OUString sName; aFormPropSet->getPropertyValue("Command") >>= sName; if ( !m_xGridModel.is() ) { m_xGridModel = createGridModel( gGridName ); Reference< XNameContainer > xNameCont(xDbForm, UNO_QUERY); xNameCont->insertByName( sName, makeAny( m_xGridModel ) ); } // insert the fields Reference< XFormComponent > xFormComp( m_xGridModel, UNO_QUERY ); InsertFields( xFormComp ); } catch (const Exception&) { OSL_FAIL("::updateGridModel: something went wrong !"); } return m_xGridModel; } Reference< XForm > BibDataManager::createDatabaseForm(BibDBDescriptor& rDesc) { Reference< XForm > xResult; try { Reference< XMultiServiceFactory > xMgr = comphelper::getProcessServiceFactory(); m_xForm = Reference< XForm > ( xMgr->createInstance( "com.sun.star.form.component.Form" ), UNO_QUERY ); Reference< XPropertySet > aPropertySet( m_xForm, UNO_QUERY ); aDataSourceURL = rDesc.sDataSource; if(aPropertySet.is()) { Any aVal; aVal <<= (sal_Int32)ResultSetType::SCROLL_INSENSITIVE; aPropertySet->setPropertyValue("ResultSetType",aVal ); aVal <<= (sal_Int32)ResultSetConcurrency::READ_ONLY; aPropertySet->setPropertyValue("ResultSetConcurrency", aVal); //Caching for Performance aVal <<= (sal_Int32)50; aPropertySet->setPropertyValue("FetchSize", aVal); Reference< XConnection > xConnection = getConnection(rDesc.sDataSource); aVal <<= xConnection; aPropertySet->setPropertyValue("ActiveConnection", aVal); Reference< XTablesSupplier > xSupplyTables(xConnection, UNO_QUERY); Reference< XNameAccess > xTables = xSupplyTables.is() ? xSupplyTables->getTables() : Reference< XNameAccess > (); Sequence< OUString > aTableNameSeq; if (xTables.is()) aTableNameSeq = xTables->getElementNames(); if(aTableNameSeq.getLength() > 0) { const OUString* pTableNames = aTableNameSeq.getConstArray(); if(!rDesc.sTableOrQuery.isEmpty()) aActiveDataTable = rDesc.sTableOrQuery; else { rDesc.sTableOrQuery = aActiveDataTable = pTableNames[0]; rDesc.nCommandType = CommandType::TABLE; } aVal <<= aActiveDataTable; aPropertySet->setPropertyValue("Command", aVal); aVal <<= rDesc.nCommandType; aPropertySet->setPropertyValue("CommandType", aVal); Reference< XDatabaseMetaData > xMetaData = xConnection->getMetaData(); aQuoteChar = xMetaData->getIdentifierQuoteString(); Reference< XMultiServiceFactory > xFactory(xConnection, UNO_QUERY); if ( xFactory.is() ) m_xParser.set( xFactory->createInstance("com.sun.star.sdb.SingleSelectQueryComposer"), UNO_QUERY ); OUString aString("SELECT * FROM "); OUString sCatalog, sSchema, sName; ::dbtools::qualifiedNameComponents( xMetaData, aActiveDataTable, sCatalog, sSchema, sName, ::dbtools::eInDataManipulation ); aString += ::dbtools::composeTableNameForSelect( xConnection, sCatalog, sSchema, sName ); m_xParser->setElementaryQuery(aString); BibConfig* pConfig = BibModul::GetConfig(); pConfig->setQueryField(getQueryField()); startQueryWith(pConfig->getQueryText()); xResult = m_xForm; } } } catch (const Exception&) { OSL_FAIL("::createDatabaseForm: something went wrong !"); } return xResult; } Sequence< OUString > BibDataManager::getDataSources() { Sequence< OUString > aTableNameSeq; try { Reference< XTablesSupplier > xSupplyTables( getConnection( m_xForm ), UNO_QUERY ); Reference< XNameAccess > xTables; if (xSupplyTables.is()) xTables = xSupplyTables->getTables(); if (xTables.is()) aTableNameSeq = xTables->getElementNames(); } catch (const Exception&) { OSL_FAIL("::getDataSources: something went wrong !"); } return aTableNameSeq; } void BibDataManager::setFilter(const OUString& rQuery) { if(!m_xParser.is()) return; try { m_xParser->setFilter( rQuery ); OUString aQuery = m_xParser->getFilter(); Reference< XPropertySet > xFormProps( m_xForm, UNO_QUERY_THROW ); xFormProps->setPropertyValue( "Filter", makeAny( aQuery ) ); xFormProps->setPropertyValue( "ApplyFilter", makeAny( sal_True ) ); reload(); } catch (const Exception&) { DBG_UNHANDLED_EXCEPTION(); } } OUString BibDataManager::getFilter() { OUString aQueryString; try { Reference< XPropertySet > xFormProps( m_xForm, UNO_QUERY_THROW ); OSL_VERIFY( xFormProps->getPropertyValue( "Filter" ) >>= aQueryString ); } catch (const Exception&) { DBG_UNHANDLED_EXCEPTION(); } return aQueryString; } Sequence< OUString > BibDataManager::getQueryFields() { Sequence< OUString > aFieldSeq; Reference< XNameAccess > xFields = getColumns( m_xForm ); if (xFields.is()) aFieldSeq = xFields->getElementNames(); return aFieldSeq; } OUString BibDataManager::getQueryField() { BibConfig* pConfig = BibModul::GetConfig(); OUString aFieldString = pConfig->getQueryField(); if(aFieldString.isEmpty()) { Sequence< OUString > aSeq = getQueryFields(); const OUString* pFields = aSeq.getConstArray(); if(aSeq.getLength()>0) { aFieldString=pFields[0]; } } return aFieldString; } void BibDataManager::startQueryWith(const OUString& rQuery) { BibConfig* pConfig = BibModul::GetConfig(); pConfig->setQueryText( rQuery ); OUString aQueryString; if(!rQuery.isEmpty()) { aQueryString=aQuoteChar; aQueryString+=getQueryField(); aQueryString+=aQuoteChar; aQueryString+=" like '"; OUString sQuery(rQuery); sQuery = sQuery.replaceAll("?","_"); sQuery = sQuery.replaceAll("*","%"); aQueryString += sQuery; aQueryString+="%'"; } setFilter(aQueryString); } void BibDataManager::setActiveDataSource(const OUString& rURL) { OUString sTmp(aDataSourceURL); aDataSourceURL = rURL; Reference< XPropertySet > aPropertySet( m_xForm, UNO_QUERY ); if(aPropertySet.is()) { unload(); Reference< XComponent > xOldConnection; aPropertySet->getPropertyValue("ActiveConnection") >>= xOldConnection; Reference< XConnection > xConnection = getConnection(rURL); if(!xConnection.is()) { aDataSourceURL = sTmp; return; } Any aVal; aVal <<= xConnection; aPropertySet->setPropertyValue("ActiveConnection", aVal); Reference< XMultiServiceFactory > xFactory(xConnection, UNO_QUERY); if ( xFactory.is() ) m_xParser.set( xFactory->createInstance("com.sun.star.sdb.SingleSelectQueryComposer"), UNO_QUERY ); if(xOldConnection.is()) xOldConnection->dispose(); Sequence< OUString > aTableNameSeq; Reference< XTablesSupplier > xSupplyTables(xConnection, UNO_QUERY); if(xSupplyTables.is()) { Reference< XNameAccess > xAccess = xSupplyTables->getTables(); aTableNameSeq = xAccess->getElementNames(); } if(aTableNameSeq.getLength() > 0) { const OUString* pTableNames = aTableNameSeq.getConstArray(); aActiveDataTable = pTableNames[0]; aVal <<= aActiveDataTable; aPropertySet->setPropertyValue("Command", aVal); aPropertySet->setPropertyValue("CommandType", makeAny(CommandType::TABLE)); //Caching for Performance aVal <<= (sal_Int32)50; aPropertySet->setPropertyValue("FetchSize", aVal); OUString aString("SELECT * FROM "); // quote the table name which may contain catalog.schema.table Reference xMetaData(xConnection->getMetaData(),UNO_QUERY); aQuoteChar = xMetaData->getIdentifierQuoteString(); OUString sCatalog, sSchema, sName; ::dbtools::qualifiedNameComponents( xMetaData, aActiveDataTable, sCatalog, sSchema, sName, ::dbtools::eInDataManipulation ); aString += ::dbtools::composeTableNameForSelect( xConnection, sCatalog, sSchema, sName ); m_xParser->setElementaryQuery(aString); BibConfig* pConfig = BibModul::GetConfig(); pConfig->setQueryField(getQueryField()); startQueryWith(pConfig->getQueryText()); setActiveDataTable(aActiveDataTable); } FeatureStateEvent aEvent; util::URL aURL; aEvent.IsEnabled = sal_True; aEvent.Requery = sal_False; aEvent.FeatureDescriptor = getActiveDataTable(); aEvent.State = makeAny( getDataSources() ); if(pToolbar) { aURL.Complete =".uno:Bib/source"; aEvent.FeatureURL = aURL; pToolbar->statusChanged( aEvent ); } updateGridModel(); load(); } } void BibDataManager::setActiveDataTable(const OUString& rTable) { ResetIdentifierMapping(); try { Reference< XPropertySet > aPropertySet( m_xForm, UNO_QUERY ); if(aPropertySet.is()) { Reference< XConnection > xConnection = getConnection( m_xForm ); Reference< XTablesSupplier > xSupplyTables(xConnection, UNO_QUERY); Reference< XNameAccess > xAccess = xSupplyTables->getTables(); Sequence< OUString > aTableNameSeq = xAccess->getElementNames(); sal_uInt32 nCount = aTableNameSeq.getLength(); const OUString* pTableNames = aTableNameSeq.getConstArray(); const OUString* pTableNamesEnd = pTableNames + nCount; for ( ; pTableNames != pTableNamesEnd; ++pTableNames ) { if ( rTable == *pTableNames ) { aActiveDataTable = rTable; Any aVal; aVal <<= rTable; aPropertySet->setPropertyValue( "Command", aVal ); break; } } if (pTableNames != pTableNamesEnd) { Reference< XDatabaseMetaData > xMetaData = xConnection->getMetaData(); aQuoteChar = xMetaData->getIdentifierQuoteString(); Reference< XMultiServiceFactory > xFactory(xConnection, UNO_QUERY); if ( xFactory.is() ) m_xParser.set( xFactory->createInstance("com.sun.star.sdb.SingleSelectQueryComposer"), UNO_QUERY ); OUString aString("SELECT * FROM "); OUString sCatalog, sSchema, sName; ::dbtools::qualifiedNameComponents( xMetaData, aActiveDataTable, sCatalog, sSchema, sName, ::dbtools::eInDataManipulation ); aString += ::dbtools::composeTableNameForSelect( xConnection, sCatalog, sSchema, sName ); m_xParser->setElementaryQuery(aString); BibConfig* pConfig = BibModul::GetConfig(); pConfig->setQueryField(getQueryField()); startQueryWith(pConfig->getQueryText()); BibDBDescriptor aDesc; aDesc.sDataSource = aDataSourceURL; aDesc.sTableOrQuery = aActiveDataTable; aDesc.nCommandType = CommandType::TABLE; BibModul::GetConfig()->SetBibliographyURL(aDesc); } } } catch (const Exception&) { OSL_FAIL("::setActiveDataTable: something went wrong !"); } } void SAL_CALL BibDataManager::load( ) throw (RuntimeException, std::exception) { if ( isLoaded() ) // nothing to do return; Reference< XLoadable > xFormAsLoadable( m_xForm, UNO_QUERY ); DBG_ASSERT( xFormAsLoadable.is() || !m_xForm.is(), "BibDataManager::load: invalid form!"); if ( xFormAsLoadable.is() ) { xFormAsLoadable->load(); SetMeAsUidListener(); EventObject aEvt( static_cast< XWeak* >( this ) ); m_aLoadListeners.notifyEach( &XLoadListener::loaded, aEvt ); } } void SAL_CALL BibDataManager::unload( ) throw (RuntimeException, std::exception) { if ( !isLoaded() ) // nothing to do return; Reference< XLoadable >xFormAsLoadable( m_xForm, UNO_QUERY ); DBG_ASSERT( xFormAsLoadable.is() || !m_xForm.is(), "BibDataManager::unload: invalid form!"); if ( xFormAsLoadable.is() ) { EventObject aEvt( static_cast< XWeak* >( this ) ); { m_aLoadListeners.notifyEach( &XLoadListener::unloading, aEvt ); } RemoveMeAsUidListener(); xFormAsLoadable->unload(); { m_aLoadListeners.notifyEach( &XLoadListener::unloaded, aEvt ); } } } void SAL_CALL BibDataManager::reload( ) throw (RuntimeException, std::exception) { if ( !isLoaded() ) // nothing to do return; Reference< XLoadable >xFormAsLoadable( m_xForm, UNO_QUERY ); DBG_ASSERT( xFormAsLoadable.is() || !m_xForm.is(), "BibDataManager::unload: invalid form!"); if ( xFormAsLoadable.is() ) { EventObject aEvt( static_cast< XWeak* >( this ) ); { m_aLoadListeners.notifyEach( &XLoadListener::reloading, aEvt ); } xFormAsLoadable->reload(); { m_aLoadListeners.notifyEach( &XLoadListener::reloaded, aEvt ); } } } sal_Bool SAL_CALL BibDataManager::isLoaded( ) throw (RuntimeException, std::exception) { Reference< XLoadable >xFormAsLoadable( m_xForm, UNO_QUERY ); DBG_ASSERT( xFormAsLoadable.is() || !m_xForm.is(), "BibDataManager::isLoaded: invalid form!"); bool bLoaded = false; if ( xFormAsLoadable.is() ) bLoaded = xFormAsLoadable->isLoaded(); return bLoaded; } void SAL_CALL BibDataManager::addLoadListener( const Reference< XLoadListener >& aListener ) throw (RuntimeException, std::exception) { m_aLoadListeners.addInterface( aListener ); } void SAL_CALL BibDataManager::removeLoadListener( const Reference< XLoadListener >& aListener ) throw (RuntimeException, std::exception) { m_aLoadListeners.removeInterface( aListener ); } Reference< awt::XControlModel > BibDataManager::createGridModel(const OUString& rName) { Reference< awt::XControlModel > xModel; try { // create the control model Reference< XMultiServiceFactory > xMgr = ::comphelper::getProcessServiceFactory(); Reference< XInterface > xObject = xMgr->createInstance("com.sun.star.form.component.GridControl"); xModel=Reference< awt::XControlModel > ( xObject, UNO_QUERY ); // set the Reference< XPropertySet > xPropSet( xModel, UNO_QUERY ); xPropSet->setPropertyValue( "Name", makeAny( rName ) ); // set the name of the to-be-created control OUString aControlName("com.sun.star.form.control.InteractionGridControl"); Any aAny; aAny <<= aControlName; xPropSet->setPropertyValue( "DefaultControl",aAny ); // the helpURL OUString uProp("HelpURL"); Reference< XPropertySetInfo > xPropInfo = xPropSet->getPropertySetInfo(); if (xPropInfo->hasPropertyByName(uProp)) { xPropSet->setPropertyValue( uProp, makeAny(INET_HID_SCHEME HID_BIB_DB_GRIDCTRL)); } } catch (const Exception&) { OSL_FAIL("::createGridModel: something went wrong !"); } return xModel; } OUString BibDataManager::getControlName(sal_Int32 nFormatKey ) { OUString aResStr; switch (nFormatKey) { case DataType::BIT: case DataType::BOOLEAN: aResStr="CheckBox"; break; case DataType::TINYINT: case DataType::SMALLINT: case DataType::INTEGER: aResStr="NumericField"; break; case DataType::REAL: case DataType::DOUBLE: case DataType::NUMERIC: case DataType::DECIMAL: aResStr="FormattedField"; break; case DataType::TIMESTAMP: aResStr="FormattedField"; break; case DataType::DATE: aResStr="DateField"; break; case DataType::TIME: aResStr="TimeField"; break; case DataType::CHAR: case DataType::VARCHAR: case DataType::LONGVARCHAR: default: aResStr="TextField"; break; } return aResStr; } Reference< awt::XControlModel > BibDataManager::loadControlModel( const OUString& rName, bool bForceListBox) { Reference< awt::XControlModel > xModel; OUString aName("View_"); aName += rName; try { Reference< XNameAccess > xFields = getColumns( m_xForm ); if (!xFields.is()) return xModel; Reference< XPropertySet > xField; Any aElement; if(xFields->hasByName(rName)) { aElement = xFields->getByName(rName); aElement >>= xField; Reference< XPropertySetInfo > xInfo = xField.is() ? xField->getPropertySetInfo() : Reference< XPropertySetInfo > (); const OUString sType("Type"); sal_Int32 nFormatKey = 0; xField->getPropertyValue(sType) >>= nFormatKey; OUString aInstanceName("com.sun.star.form.component."); if (bForceListBox) aInstanceName += "ListBox"; else aInstanceName += getControlName(nFormatKey); Reference< XComponentContext > xContext = comphelper::getProcessComponentContext(); Reference< XInterface > xObject = xContext->getServiceManager()->createInstanceWithContext(aInstanceName, xContext); xModel=Reference< awt::XControlModel > ( xObject, UNO_QUERY ); Reference< XPropertySet > xPropSet( xModel, UNO_QUERY ); Any aFieldName; aFieldName <<= aName; xPropSet->setPropertyValue( FM_PROP_NAME,aFieldName); xPropSet->setPropertyValue( FM_PROP_CONTROLSOURCE, makeAny( rName ) ); xPropSet->setPropertyValue("NativeWidgetLook", makeAny( true ) ); if (bForceListBox) { uno::Any aAny; //uno::Reference< beans::XPropertySet > xPropSet(xControl, UNO_QUERY); aAny <<= (sal_Int16)1; xPropSet->setPropertyValue("BoundColumn", aAny); ListSourceType eSet = ListSourceType_VALUELIST; aAny.setValue( &eSet, ::cppu::UnoType::get() ); xPropSet->setPropertyValue("ListSourceType", aAny); uno::Sequence aListSource(TYPE_COUNT); OUString* pListSourceArr = aListSource.getArray(); //pListSourceArr[0] = "select TypeName, TypeIndex from TypeNms"; for(sal_Int32 i = 0; i < TYPE_COUNT; ++i) pListSourceArr[i] = OUString::number(i); aAny.setValue(&aListSource, cppu::UnoType>::get()); xPropSet->setPropertyValue("ListSource", aAny); uno::Sequence aValues(TYPE_COUNT + 1); OUString* pValuesArr = aValues.getArray(); pValuesArr[0] = BIB_RESSTR(ST_TYPE_ARTICLE); pValuesArr[1] = BIB_RESSTR(ST_TYPE_BOOK); pValuesArr[2] = BIB_RESSTR(ST_TYPE_BOOKLET); pValuesArr[3] = BIB_RESSTR(ST_TYPE_CONFERENCE); pValuesArr[4] = BIB_RESSTR(ST_TYPE_INBOOK ); pValuesArr[5] = BIB_RESSTR(ST_TYPE_INCOLLECTION); pValuesArr[6] = BIB_RESSTR(ST_TYPE_INPROCEEDINGS); pValuesArr[7] = BIB_RESSTR(ST_TYPE_JOURNAL ); pValuesArr[8] = BIB_RESSTR(ST_TYPE_MANUAL ); pValuesArr[9] = BIB_RESSTR(ST_TYPE_MASTERSTHESIS); pValuesArr[10] = BIB_RESSTR(ST_TYPE_MISC ); pValuesArr[11] = BIB_RESSTR(ST_TYPE_PHDTHESIS ); pValuesArr[12] = BIB_RESSTR(ST_TYPE_PROCEEDINGS ); pValuesArr[13] = BIB_RESSTR(ST_TYPE_TECHREPORT ); pValuesArr[14] = BIB_RESSTR(ST_TYPE_UNPUBLISHED ); pValuesArr[15] = BIB_RESSTR(ST_TYPE_EMAIL ); pValuesArr[16] = BIB_RESSTR(ST_TYPE_WWW ); pValuesArr[17] = BIB_RESSTR(ST_TYPE_CUSTOM1 ); pValuesArr[18] = BIB_RESSTR(ST_TYPE_CUSTOM2 ); pValuesArr[19] = BIB_RESSTR(ST_TYPE_CUSTOM3 ); pValuesArr[20] = BIB_RESSTR(ST_TYPE_CUSTOM4 ); pValuesArr[21] = BIB_RESSTR(ST_TYPE_CUSTOM5 ); // empty string if an invalid value no values is set pValuesArr[TYPE_COUNT].clear(); aAny.setValue(&aValues, cppu::UnoType>::get()); xPropSet->setPropertyValue("StringItemList", aAny); sal_Bool bTrue = sal_True; aAny.setValue( &bTrue, cppu::UnoType::get() ); xPropSet->setPropertyValue( "Dropdown", aAny ); } Reference< XFormComponent > aFormComp(xModel,UNO_QUERY ); Reference< XNameContainer > xNameCont( m_xForm, UNO_QUERY ); xNameCont->insertByName(aName, makeAny( aFormComp ) ); // now if the form where we inserted the new model is already loaded, notify the model of this // Note that this implementation below is a HACK as it relies on the fact that the model adds itself // as load listener to its parent, which is an implementation detail of the model. // // the better solution would be the following: // in the current scenario, we insert a control model into a form. This results in the control model // adding itself as load listener to the form. Now, the form should realize that it's already loaded // and notify the model (which it knows as XLoadListener only) immediately. This seems to make sense. // (as an anologon to the XStatusListener semantics). // // But this would be way too risky for this last-day fix here. Reference< XLoadable > xLoad( m_xForm, UNO_QUERY ); if ( xLoad.is() && xLoad->isLoaded() ) { Reference< XLoadListener > xListener( aFormComp, UNO_QUERY ); if ( xListener.is() ) { EventObject aLoadSource; aLoadSource.Source = xLoad; xListener->loaded( aLoadSource ); } } } } catch (const Exception&) { OSL_FAIL("::loadControlModel: something went wrong !"); } return xModel; } void SAL_CALL BibDataManager::disposing() { BibDataManager_Base::WeakComponentImplHelperBase::disposing(); } void BibDataManager::disposing( const EventObject& /*Source*/ ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) { // not interested in } void BibDataManager::propertyChange(const beans::PropertyChangeEvent& evt) throw( RuntimeException, std::exception ) { try { if(evt.PropertyName == FM_PROP_VALUE) { if( evt.NewValue.getValueType() == cppu::UnoType::get()) { Reference< io::XDataInputStream > xStream( *static_cast *>(evt.NewValue.getValue()), UNO_QUERY ); aUID <<= xStream->readUTF(); } else aUID = evt.NewValue; Reference< XRowLocate > xLocate(xBibCursor, UNO_QUERY); DBG_ASSERT(xLocate.is(), "BibDataManager::propertyChange : invalid cursor !"); xLocate->moveToBookmark(aUID); } } catch (const Exception&) { OSL_FAIL("::propertyChange: something went wrong !"); } } void BibDataManager::SetMeAsUidListener() { try { Reference< XNameAccess > xFields = getColumns( m_xForm ); if (!xFields.is()) return; Sequence< OUString > aFields(xFields->getElementNames()); const OUString* pFields = aFields.getConstArray(); sal_Int32 nCount=aFields.getLength(); OUString StrUID(STR_UID); OUString theFieldName; for( sal_Int32 i=0; i xPropSet; Any aElement; aElement = xFields->getByName(theFieldName); xPropSet = *static_cast const *>(aElement.getValue()); xPropSet->addPropertyChangeListener(FM_PROP_VALUE, this); } } catch (const Exception&) { OSL_FAIL("Exception in BibDataManager::SetMeAsUidListener"); } } void BibDataManager::RemoveMeAsUidListener() { try { Reference< XNameAccess > xFields = getColumns( m_xForm ); if (!xFields.is()) return; Sequence< OUString > aFields(xFields->getElementNames()); const OUString* pFields = aFields.getConstArray(); sal_Int32 nCount=aFields.getLength(); OUString StrUID(STR_UID); OUString theFieldName; for( sal_Int32 i=0; i xPropSet; Any aElement; aElement = xFields->getByName(theFieldName); xPropSet = *static_cast const *>(aElement.getValue()); xPropSet->removePropertyChangeListener(FM_PROP_VALUE, this); } } catch (const Exception&) { OSL_FAIL("Exception in BibDataManager::RemoveMeAsUidListener"); } } void BibDataManager::CreateMappingDialog(vcl::Window* pParent) { VclPtrInstance< MappingDialog_Impl > pDlg(pParent, this); if(RET_OK == pDlg->Execute() && pBibView) { reload(); } } OUString BibDataManager::CreateDBChangeDialog(vcl::Window* pParent) { OUString uRet; VclPtrInstance< DBChangeDialog_Impl > pDlg(pParent, this ); if(RET_OK == pDlg->Execute()) { OUString sNewURL = pDlg->GetCurrentURL(); if(sNewURL != getActiveDataSource()) { uRet = sNewURL; } } return uRet; } void BibDataManager::DispatchDBChangeDialog() { if(pToolbar) pToolbar->SendDispatch(TBC_BT_CHANGESOURCE, Sequence< PropertyValue >()); } const OUString& BibDataManager::GetIdentifierMapping() { if(sIdentifierMapping.isEmpty()) { BibConfig* pConfig = BibModul::GetConfig(); BibDBDescriptor aDesc; aDesc.sDataSource = getActiveDataSource(); aDesc.sTableOrQuery = getActiveDataTable(); aDesc.nCommandType = CommandType::TABLE; const Mapping* pMapping = pConfig->GetMapping(aDesc); sIdentifierMapping = pConfig->GetDefColumnName(IDENTIFIER_POS); if(pMapping) { for(sal_uInt16 nEntry = 0; nEntry < COLUMN_COUNT; nEntry++) { if(pMapping->aColumnPairs[nEntry].sLogicalColumnName == sIdentifierMapping) { sIdentifierMapping = pMapping->aColumnPairs[nEntry].sRealColumnName; break; } } } } return sIdentifierMapping; } void BibDataManager::SetToolbar(BibToolBar* pSet) { pToolbar = pSet; if(pToolbar) pToolbar->SetDatMan(*this); } uno::Reference< form::runtime::XFormController > BibDataManager::GetFormController() { if(!m_xFormCtrl.is()) { Reference< uno::XComponentContext > xContext = comphelper::getProcessComponentContext(); m_xFormCtrl = form::runtime::FormController::create(xContext); m_xFormCtrl->setModel(uno::Reference< awt::XTabControllerModel > (getForm(), UNO_QUERY)); m_xFormDispatch = uno::Reference< frame::XDispatch > ( m_xFormCtrl, UNO_QUERY); } return m_xFormCtrl; } void BibDataManager::RegisterInterceptor( ::bib::BibBeamer* pBibBeamer) { DBG_ASSERT( !m_pInterceptorHelper, "BibDataManager::RegisterInterceptor: called twice!" ); if( pBibBeamer ) m_pInterceptorHelper = new BibInterceptorHelper( pBibBeamer, m_xFormDispatch); if( m_pInterceptorHelper ) m_pInterceptorHelper->acquire(); } bool BibDataManager::HasActiveConnection()const { bool bRet = false; Reference< XPropertySet > xPrSet( m_xForm, UNO_QUERY ); if( xPrSet.is() ) { Reference< XComponent > xConnection; xPrSet->getPropertyValue("ActiveConnection") >>= xConnection; bRet = xConnection.is(); } return bRet; } bool BibDataManager::HasActiveConnection() { return getConnection( m_xForm ).is(); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */