Lines Matching refs:mxListBox
504 uno::Reference< awt::XListBox > mxListBox; member in layout::ListBoxImpl
507 , mxListBox( peer, uno::UNO_QUERY ) in ListBoxImpl()
515 nPos = mxListBox->getItemCount(); in InsertEntry()
516 mxListBox->addItem( rtl::OUString( rStr ), nPos ); in InsertEntry()
522 mxListBox->removeItems( nPos, 1 ); in RemoveEntry()
528 nPos = mxListBox->getItemCount(); in RemoveEntry()
529 mxListBox->addItem( rtl::OUString( rStr ), nPos ); in RemoveEntry()
535 uno::Sequence< rtl::OUString> aItems( mxListBox->getItems() ); in GetEntryPos()
548 return mxListBox->getItem( nPos ); in GetEntry()
553 return mxListBox->getItemCount(); in GetEntryCount()
558 mxListBox->selectItemPos( nPos, bSelect ); in SelectEntryPos()
563 return sal::static_int_cast< sal_uInt16 >( mxListBox->getSelectedItems().getLength() ); in GetSelectEntryCount()
569 if ( mxListBox->isMutipleMode() ) in GetSelectEntryPos()
571 uno::Sequence< short > aItems( mxListBox->getSelectedItemsPos() ); in GetSelectEntryPos()
576 nSelected = mxListBox->getSelectedItemPos(); in GetSelectEntryPos()
584 mxListBox.clear (); in disposing()
595 mxListBox->removeActionListener( this ); in SetClickHdl()
597 mxListBox->addActionListener( this ); in SetClickHdl()
615 mxListBox->removeItemListener( this ); in SetSelectHdl()
617 mxListBox->addItemListener( this ); in SetSelectHdl()
744 if (getImpl() && getImpl()->mxListBox.is ()) in SetClickHdl()