Lines Matching refs:m_aContext

283 		m_aContext.xObjectModel = _rxObjectModel;  in OControlWizard()
330 Reference< XIndexAccess > xPageObjects(m_aContext.xDrawPage, UNO_QUERY); in implDetermineShape()
334 Reference< XControlModel > xModelCompare(m_aContext.xObjectModel, UNO_QUERY); in implDetermineShape()
350 m_aContext.xObjectShape = xControlShape; in implDetermineShape()
361 Reference< XChild > xModelAsChild(m_aContext.xObjectModel, UNO_QUERY); in implDetermineForm()
366 m_aContext.xForm = Reference< XPropertySet >(xControlParent, UNO_QUERY); in implDetermineForm()
367 m_aContext.xRowSet = Reference< XRowSet >(xControlParent, UNO_QUERY); in implDetermineForm()
368 DBG_ASSERT(m_aContext.xForm.is() && m_aContext.xRowSet.is(), in implDetermineForm()
379 Reference< XChild > xControlAsChild(m_aContext.xObjectModel, UNO_QUERY); in implDeterminePage()
392 m_aContext.xDocumentModel = xModel; in implDeterminePage()
428 m_aContext.xDrawPage = xPage; in implDeterminePage()
449 m_aContext.xDatasourceContext = Reference< XNameAccess >(xContext, UNO_QUERY); in implGetDSContext()
450 …DBG_ASSERT(m_aContext.xDatasourceContext.is() || !xContext.is(), "OControlWizard::implGetDSContext… in implGetDSContext()
469 if ( !::dbtools::isEmbeddedInDatabase(m_aContext.xForm,xConn) ) in getFormConnection()
470m_aContext.xForm->getPropertyValue(::rtl::OUString::createFromAscii("ActiveConnection")) >>= xConn; in getFormConnection()
494 Reference< XRowSet > xFormRowSet( m_aContext.xForm, UNO_QUERY ); in setFormConnection()
500m_aContext.xForm->setPropertyValue( ::rtl::OUString::createFromAscii("ActiveConnection"), makeAny(… in setFormConnection()
532 …DBG_ASSERT(m_aContext.xObjectModel.is(), "OGroupBoxWizard::initContext: have no control model to w… in initContext()
533 if (!m_aContext.xObjectModel.is()) in initContext()
537 m_aContext.xForm.clear(); in initContext()
538 m_aContext.xRowSet.clear(); in initContext()
539 m_aContext.xDocumentModel.clear(); in initContext()
540 m_aContext.xDrawPage.clear(); in initContext()
541 m_aContext.xObjectShape.clear(); in initContext()
542 m_aContext.aFieldNames.realloc(0); in initContext()
544 m_aContext.xObjectContainer.clear(); in initContext()
545 m_aContext.aTypes.clear(); in initContext()
546 m_aContext.bEmbedded = sal_False; in initContext()
567 if (m_aContext.xForm.is()) in initContext()
570 …::rtl::OUString sObjectName = ::comphelper::getString(m_aContext.xForm->getPropertyValue(::rtl::OU… in initContext()
571 …sal_Int32 nObjectType = ::comphelper::getINT32(m_aContext.xForm->getPropertyValue(::rtl::OUString:… in initContext()
575 m_aContext.bEmbedded = ::dbtools::isEmbeddedInDatabase( m_aContext.xForm, xConnection ); in initContext()
576 if ( !m_aContext.bEmbedded ) in initContext()
577 xConnection = ::dbtools::connectRowset( m_aContext.xRowSet, getServiceFactory(), sal_True ); in initContext()
590 m_aContext.xObjectContainer = xSupplyTables->getTables(); in initContext()
591 m_aContext.xObjectContainer->getByName(sObjectName) >>= xSupplyColumns; in initContext()
603 m_aContext.xObjectContainer = xSupplyQueries->getQueries(); in initContext()
604 m_aContext.xObjectContainer->getByName(sObjectName) >>= xSupplyColumns; in initContext()
629 m_aContext.aFieldNames = xColumns->getElementNames(); in initContext()
631 const ::rtl::OUString* pBegin = m_aContext.aFieldNames.getConstArray(); in initContext()
632 const ::rtl::OUString* pEnd = pBegin + m_aContext.aFieldNames.getLength(); in initContext()
646 m_aContext.aTypes.insert(OControlWizardContext::TNameTypeMap::value_type(*pBegin,nFieldType)); in initContext()
682 return 0 != m_aContext.aFieldNames.getLength(); in initContext()
688 …DBG_ASSERT(m_aContext.xObjectModel.is(), "OControlWizard::commitControlSettings: have no control m… in commitControlSettings()
689 if (!m_aContext.xObjectModel.is()) in commitControlSettings()
696 Reference< XPropertySetInfo > xInfo = m_aContext.xObjectModel->getPropertySetInfo(); in commitControlSettings()
700 m_aContext.xObjectModel->setPropertyValue( in commitControlSettings()
715 …DBG_ASSERT(m_aContext.xObjectModel.is(), "OControlWizard::initControlSettings: have no control mod… in initControlSettings()
716 if (!m_aContext.xObjectModel.is()) in initControlSettings()
723 Reference< XPropertySetInfo > xInfo = m_aContext.xObjectModel->getPropertySetInfo(); in initControlSettings()
727 m_aContext.xObjectModel->getPropertyValue(sLabelPropertyName) >>= sControlLabel; in initControlSettings()