Lines Matching refs:hwndCtrl

387     HWND hwndCtrl = GetHwndDlgItem( aControlId );  in setValue()  local
391 if ( !hwndCtrl || (aControlId == LISTBOX_FILTER) ) in setValue()
397 CTRL_CLASS aCtrlClass = GetCtrlClass( hwndCtrl ); in setValue()
416 lpfnSetValue( hwndCtrl, aValue, Reference< XInterface >( ), 3 ); in setValue()
429 HWND hwndCtrl = GetHwndDlgItem( aControlId ); in getValue() local
433 if ( !hwndCtrl || (aControlId == LISTBOX_FILTER) ) in getValue()
439 CTRL_CLASS aCtrlClass = GetCtrlClass( hwndCtrl ); in getValue()
455 return lpfnGetValue( hwndCtrl ); in getValue()
464 HWND hwndCtrl = GetHwndDlgItem( aControlId ); in enableControl() local
466 OSL_ENSURE( IsWindow( hwndCtrl ), "invalid element id"); in enableControl()
468 EnableWindow( hwndCtrl, bEnable ); in enableControl()
477 HWND hwndCtrl = GetHwndDlgItem( aControlId ); in setLabel() local
479 OSL_ENSURE( IsWindow( hwndCtrl ), "invalid element id"); in setLabel()
481 if ( IsListboxControl( hwndCtrl ) ) in setLabel()
482 hwndCtrl = GetListboxLabelItem( aControlId ); in setLabel()
488 SetWindowText( hwndCtrl, reinterpret_cast<LPCTSTR>(aWinLabel.getStr( )) ); in setLabel()
497 HWND hwndCtrl = GetHwndDlgItem( aControlId ); in getLabel() local
499 OSL_ENSURE( IsWindow( hwndCtrl ), "invalid element id"); in getLabel()
501 if ( IsListboxControl( hwndCtrl ) ) in getLabel()
502 hwndCtrl = GetListboxLabelItem( aControlId ); in getLabel()
505 int nRet = GetWindowText( hwndCtrl, reinterpret_cast<LPTSTR>(aLabel), MAX_LABEL ); in getLabel()
686 HWND hwndCtrl = GetHwndDlgItem( aLabelId ); in GetListboxLabelItem() local
688 OSL_ASSERT( IsWindow( hwndCtrl ) ); in GetListboxLabelItem()
690 return hwndCtrl; in GetListboxLabelItem()
701 HWND hwndCtrl = GetDlgItem( m_hwndDlg, aControlId ); in GetHwndDlgItem() local
705 if ( !hwndCtrl && bIncludeStdCtrls ) in GetHwndDlgItem()
707 hwndCtrl = GetDlgItem( in GetHwndDlgItem()
712 return hwndCtrl; in GetHwndDlgItem()