Lines Matching refs:_nFeatureId
57 static bool isArtificialItem( sal_Int16 _nFeatureId ) in isArtificialItem() argument
59 return ( _nFeatureId == LID_RECORD_LABEL ) in isArtificialItem()
60 || ( _nFeatureId == LID_RECORD_FILLER ); in isArtificialItem()
220 void NavigationToolBar::enableFeature( sal_Int16 _nFeatureId, bool _bEnabled ) in enableFeature() argument
222 DBG_ASSERT( m_pToolbar->GetItemPos( (sal_uInt16)_nFeatureId ) != TOOLBOX_ITEM_NOTFOUND, in enableFeature()
225 implEnableItem( (sal_uInt16)_nFeatureId, _bEnabled ); in enableFeature()
229 void NavigationToolBar::checkFeature( sal_Int16 _nFeatureId, bool _bEnabled ) in checkFeature() argument
231 DBG_ASSERT( m_pToolbar->GetItemPos( (sal_uInt16)_nFeatureId ) != TOOLBOX_ITEM_NOTFOUND, in checkFeature()
234 m_pToolbar->CheckItem( (sal_uInt16)_nFeatureId, _bEnabled ); in checkFeature()
238 void NavigationToolBar::setFeatureText( sal_Int16 _nFeatureId, const ::rtl::OUString& _rText ) in setFeatureText() argument
240 DBG_ASSERT( m_pToolbar->GetItemPos( (sal_uInt16)_nFeatureId ) != TOOLBOX_ITEM_NOTFOUND, in setFeatureText()
243 Window* pItemWindow = m_pToolbar->GetItemWindow( (sal_uInt16)_nFeatureId ); in setFeatureText()
247 m_pToolbar->SetItemText( (sal_uInt16)_nFeatureId, _rText ); in setFeatureText()