Lines Matching refs:m_xCursor

217         return m_xCursor;  in getCursor()
279 …aState.Enabled = impl_getRowCount_throw() && ( !m_xCursor->isLast() || impl_isInsertionRow_throw()… in getState()
284 if ( m_xCursor->rowDeleted() ) in getState()
303 Reference< XRowSet > xCursorRowSet( m_xCursor, UNO_QUERY ); in getState()
335 sal_Bool bIsDeleted = m_xCursor->rowDeleted(); in getState()
368 sal_Int32 nPosition = m_xCursor->getRow(); in getState()
504 m_xCursor->first(); in execute()
534 m_xCursor->last(); in execute()
572 sal_Bool bLeft = m_xCursor->isLast() && ( nCount > 1 ); in execute()
573 sal_Bool bRight= !m_xCursor->isLast(); in execute()
583 aEvent.Source = Reference< XInterface >( m_xCursor, UNO_QUERY ); in execute()
601 m_xCursor->relative( bRight ? 1 : -1 ); in execute()
610 m_xCursor->first(); in execute()
637 m_xCursor->last(); in execute()
648 m_xCursor->last(); in execute()
774 m_xCursor->absolute( nPosition ); in executeWithArguments()
931 OSL_ENSURE( m_xCursor.is(), "FormOperations::modified: already disposed!" ); in modified()
944 if ( m_xCursor.is() && ( m_xCursor == _rEvent.Source ) ) in propertyChange()
957 if ( m_xParser.is() && ( m_xCursor == _rEvent.Source ) ) in propertyChange()
1003 if ( m_xCursor.is() ) in disposing()
1004 m_xCursor->removeRowSetListener( this ); in disposing()
1022 m_xCursor.clear(); in disposing()
1042 m_xCursor = m_xCursor.query( m_xController->getModel() ); in impl_initFromController_throw()
1043 if ( !m_xCursor.is() ) in impl_initFromController_throw()
1056 OSL_PRECOND( m_xCursor.is(), "FormOperations::impl_initFromForm_throw: invalid form!" ); in impl_initFromForm_throw()
1057 m_xCursorProperties = m_xCursorProperties.query ( m_xCursor ); in impl_initFromForm_throw()
1058 m_xUpdateCursor = m_xUpdateCursor.query ( m_xCursor ); in impl_initFromForm_throw()
1059 m_xLoadableForm = m_xLoadableForm.query ( m_xCursor ); in impl_initFromForm_throw()
1061 if ( !m_xCursor.is() || !m_xCursorProperties.is() || !m_xLoadableForm.is() ) in impl_initFromForm_throw()
1064 m_xCursor->addRowSetListener( this ); in impl_initFromForm_throw()
1084 m_xCursor = m_xCursor.query( _rxForm ); in createWithForm()
1085 if ( !m_xCursor.is() ) in createWithForm()
1145 … Reference< XMultiServiceFactory > xFactory( ::dbtools::getConnection( m_xCursor ), UNO_QUERY ); in impl_ensureInitializedParser_nothrow()
1218 return impl_getRowCount_throw() && ( !m_xCursor->isFirst() || impl_isInsertionRow_throw() ); in impl_canMoveLeft_throw()
1229 if ( impl_getRowCount_throw() && !m_xCursor->isLast() && !bIsNew ) in impl_canMoveRight_throw()
1397 Reference< XRowLocate > xLocate( m_xCursor, UNO_QUERY ); in impl_moveLeft_throw()
1408 m_xCursor->last(); in impl_moveLeft_throw()
1411 m_xCursor->previous(); in impl_moveLeft_throw()
1437 if ( m_xCursor->isLast() ) in impl_moveRight_throw()
1440 m_xCursor->next(); in impl_moveRight_throw()
1449 Reference< XIndexAccess > xContainer( m_xCursor, UNO_QUERY ); in impl_resetAllControls_nothrow()