Lines Matching refs:mpListBox

78 	ListBox*						mpListBox;  member
121 mpTabCtrlData->mpListBox = NULL; in ImplInit()
128 mpTabCtrlData->mpListBox = new ListBox( this, WB_DROPDOWN ); in ImplInit()
129 mpTabCtrlData->mpListBox->SetPosSizePixel( Point( 0, 0 ), Size( 200, 20 ) ); in ImplInit()
130 mpTabCtrlData->mpListBox->SetSelectHdl( LINK( this, TabControl, ImplListBoxSelectHdl ) ); in ImplInit()
131 mpTabCtrlData->mpListBox->Show(); in ImplInit()
261 if( mpTabCtrlData->mpListBox ) in ~TabControl()
262 delete mpTabCtrlData->mpListBox; in ~TabControl()
691 if ( !GetPageCount() || mpTabCtrlData->mpListBox ) in ImplShowFocus()
990 SelectTabPage( GetPageId( mpTabCtrlData->mpListBox->GetSelectEntryPos() ) ); in IMPL_LINK()
1016 if( mpTabCtrlData->mpListBox == NULL ) in MouseButtonDown()
1032 if( mpTabCtrlData->mpListBox ) in KeyInput()
1033 mpTabCtrlData->mpListBox->KeyInput( rKEvt ); in KeyInput()
1177 if ( !mpTabCtrlData->maItemList.empty() && mpTabCtrlData->mpListBox == NULL ) in ImplPaint()
1247 if( mpTabCtrlData->mpListBox ) in Resize()
1251 long nPrefWidth = mpTabCtrlData->mpListBox->GetOptimalSize( WINDOWSIZE_PREFERRED ).Width(); in Resize()
1256 mpTabCtrlData->mpListBox->SetPosSizePixel( aNewPos, aNewSize ); in Resize()
1303 if( ! mpTabCtrlData->mpListBox ) in GetFocus()
1310 if( mpTabCtrlData->mpListBox->IsReallyVisible() ) in GetFocus()
1311 mpTabCtrlData->mpListBox->GrabFocus(); in GetFocus()
1320 if( ! mpTabCtrlData->mpListBox ) in LoseFocus()
1415 …if( (mpTabCtrlData->mpListBox == NULL) && (rCEvt.GetCommand() == COMMAND_CONTEXTMENU) && (GetPageC… in Command()
1461 if( mpTabCtrlData->mpListBox ) in StateChanged()
1665 if( mpTabCtrlData->mpListBox ) in InsertPage()
1666 mpTabCtrlData->mpListBox->InsertEntry( rText ); in InsertPage()
1673 if( mpTabCtrlData->mpListBox ) in InsertPage()
1674 mpTabCtrlData->mpListBox->InsertEntry( rText, nPos); in InsertPage()
1676 if( mpTabCtrlData->mpListBox ) in InsertPage()
1679 mpTabCtrlData->mpListBox->SelectEntryPos( 0 ); in InsertPage()
1680 mpTabCtrlData->mpListBox->SetDropDownLineCount( mpTabCtrlData->mpListBox->GetEntryCount() ); in InsertPage()
1699 if( mpTabCtrlData->mpListBox ) // reposition/resize listbox in InsertPage()
1718 if( mpTabCtrlData->mpListBox ) in RemovePage()
1720 mpTabCtrlData->mpListBox->RemoveEntry( nPos ); in RemovePage()
1721 mpTabCtrlData->mpListBox->SetDropDownLineCount( mpTabCtrlData->mpListBox->GetEntryCount() ); in RemovePage()
1760 if( mpTabCtrlData->mpListBox ) in Clear()
1761 mpTabCtrlData->mpListBox->Clear(); in Clear()
1782 if( mpTabCtrlData->mpListBox ) in EnablePage()
1783 mpTabCtrlData->mpListBox->SetEntryFlags( GetPagePos( i_nPageId ), in EnablePage()
1902 if( mpTabCtrlData->mpListBox ) in SelectTabPage()
1903 mpTabCtrlData->mpListBox->SelectEntryPos( GetPagePos( nPageId ) ); in SelectTabPage()
1968 if( mpTabCtrlData->mpListBox ) in SetPageText()
1971 mpTabCtrlData->mpListBox->RemoveEntry( nPos ); in SetPageText()
1972 mpTabCtrlData->mpListBox->InsertEntry( rText, nPos ); in SetPageText()