Lines Matching refs:mxListBox
512 uno::Reference< awt::XListBox > mxListBox; member in layout::ListBoxImpl
515 , mxListBox( peer, uno::UNO_QUERY ) in ListBoxImpl()
523 nPos = mxListBox->getItemCount(); in InsertEntry()
524 mxListBox->addItem( rtl::OUString( rStr ), nPos ); in InsertEntry()
530 mxListBox->removeItems( nPos, 1 ); in RemoveEntry()
536 nPos = mxListBox->getItemCount(); in RemoveEntry()
537 mxListBox->addItem( rtl::OUString( rStr ), nPos ); in RemoveEntry()
543 uno::Sequence< rtl::OUString> aItems( mxListBox->getItems() ); in GetEntryPos()
556 return mxListBox->getItem( nPos ); in GetEntry()
561 return mxListBox->getItemCount(); in GetEntryCount()
566 mxListBox->selectItemPos( nPos, bSelect ); in SelectEntryPos()
571 return sal::static_int_cast< sal_uInt16 >( mxListBox->getSelectedItems().getLength() ); in GetSelectEntryCount()
577 if ( mxListBox->isMutipleMode() ) in GetSelectEntryPos()
579 uno::Sequence< short > aItems( mxListBox->getSelectedItemsPos() ); in GetSelectEntryPos()
584 nSelected = mxListBox->getSelectedItemPos(); in GetSelectEntryPos()
592 mxListBox.clear (); in disposing()
603 mxListBox->removeActionListener( this ); in SetClickHdl()
605 mxListBox->addActionListener( this ); in SetClickHdl()
623 mxListBox->removeItemListener( this ); in SetSelectHdl()
625 mxListBox->addItemListener( this ); in SetSelectHdl()
751 if (&getImpl () && getImpl().mxListBox.is ()) in SetClickHdl()