Lines Matching refs:pControl

238 		Control* pControl = implGetControl( _rControlName, &nControlId, &nPropertyMask );  in getControlProperty()  local
251 return implGetControlProperty( pControl, aPropDesc->nPropertyId ); in getControlProperty()
257 Control* pControl = NULL; in implGetControl() local
264 pControl = m_pFilePickerController->getControl( aFoundRange.first->nControlId ); in implGetControl()
268 if ( !pControl ) in implGetControl()
277 return pControl; in implGetControl()
285 Control* pControl = implGetControl( _rControlName, &nControlId ); in setControlProperty() local
294 implSetControlProperty( nControlId, pControl, aPropDesc->nPropertyId, _rValue, sal_False ); in setControlProperty()
361 Control* pControl = m_pFilePickerController->getControl( _nControlId ); in setValue() local
362 DBG_ASSERT( pControl, "OControlAccess::SetValue: don't have this control in the current mode!" ); in setValue()
363 if ( pControl ) in setValue()
397 …DBG_ASSERT( WINDOW_LISTBOX == pControl->GetType(), "OControlAccess::SetValue: implGetControl retur… in setValue()
398 implDoListboxAction( static_cast< ListBox* >( pControl ), _nControlAction, _rValue ); in setValue()
405 implSetControlProperty( _nControlId, pControl, nPropertyId, _rValue ); in setValue()
414 Control* pControl = m_pFilePickerController->getControl( _nControlId, sal_False ); in getValue() local
415 DBG_ASSERT( pControl, "OControlAccess::GetValue: don't have this control in the current mode!" ); in getValue()
416 if ( pControl ) in getValue()
471 aRet = implGetControlProperty( pControl, nPropertyId ); in getValue()
480 Control* pControl = m_pFilePickerController->getControl( nId, sal_True ); in setLabel() local
481 DBG_ASSERT( pControl, "OControlAccess::GetValue: don't have this control in the current mode!" ); in setLabel()
482 if ( pControl ) in setLabel()
483 pControl->SetText( rLabel ); in setLabel()
491 Control* pControl = m_pFilePickerController->getControl( nId, sal_True ); in getLabel() local
492 DBG_ASSERT( pControl, "OControlAccess::GetValue: don't have this control in the current mode!" ); in getLabel()
493 if ( pControl ) in getLabel()
494 sLabel = pControl->GetText(); in getLabel()