Lines Matching refs:rpButton
393 PushButton*& rpButton = _bPrimary ? m_pBrowseButton : m_pAdditionalBrowseButton; in impl_ensureButton() local
395 if ( !rpButton ) in impl_ensureButton()
397 rpButton = new PushButton( m_pTheParent, WB_NOPOINTERFOCUS ); in impl_ensureButton()
398 rpButton->SetGetFocusHdl( LINK( this, OBrowserLine, OnButtonFocus ) ); in impl_ensureButton()
399 rpButton->SetClickHdl( LINK( this, OBrowserLine, OnButtonClicked ) ); in impl_ensureButton()
400 rpButton->SetText( String::CreateFromAscii( "..." ) ); in impl_ensureButton()
403 rpButton->Show(); in impl_ensureButton()
407 return *rpButton; in impl_ensureButton()
478 PushButton*& rpButton = _bPrimary ? m_pBrowseButton : m_pAdditionalBrowseButton; in implHideBrowseButton() local
480 if ( rpButton ) in implHideBrowseButton()
482 rpButton->Hide(); in implHideBrowseButton()
483 delete rpButton; in implHideBrowseButton()
484 rpButton = NULL; in implHideBrowseButton()