Lines Matching refs:_rxControl

2296 …bool lcl_shouldListenForModifications( const Reference< XControl >& _rxControl, const Reference< X…  in lcl_shouldListenForModifications()  argument
2300 Reference< XBoundComponent > xBound( _rxControl, UNO_QUERY ); in lcl_shouldListenForModifications()
2305 else if ( _rxControl.is() ) in lcl_shouldListenForModifications()
2307 Reference< XPropertySet > xModelProps( _rxControl->getModel(), UNO_QUERY ); in lcl_shouldListenForModifications()
2475 void FormController::implControlInserted( const Reference< XControl>& _rxControl, bool _bAddToEvent… in implControlInserted() argument
2477 Reference< XWindow > xWindow( _rxControl, UNO_QUERY ); in implControlInserted()
2484 addToEventAttacher( _rxControl ); in implControlInserted()
2488 Reference< XDispatchProviderInterception > xInterception( _rxControl, UNO_QUERY ); in implControlInserted()
2492 if ( _rxControl.is() ) in implControlInserted()
2494 Reference< XControlModel > xModel( _rxControl->getModel() ); in implControlInserted()
2507 m_pControlBorderManager->validityChanged( _rxControl, xValidatable ); in implControlInserted()
2514 void FormController::implControlRemoved( const Reference< XControl>& _rxControl, bool _bRemoveFromE… in implControlRemoved() argument
2516 Reference< XWindow > xWindow( _rxControl, UNO_QUERY ); in implControlRemoved()
2523 removeFromEventAttacher( _rxControl ); in implControlRemoved()
2526 Reference< XDispatchProviderInterception > xInterception( _rxControl, UNO_QUERY); in implControlRemoved()
2530 if ( _rxControl.is() ) in implControlRemoved()
2532 Reference< XControlModel > xModel( _rxControl->getModel() ); in implControlRemoved()
2545 void FormController::implSetCurrentControl( const Reference< XControl >& _rxControl ) in implSetCurrentControl() argument
2547 if ( m_xCurrentControl.get() == _rxControl.get() ) in implSetCurrentControl()
2554 m_xCurrentControl = _rxControl; in implSetCurrentControl()