Lines Matching refs:ItemIndex
104 void SetIndex( ItemIndex _Index );
105 ItemIndex GetIndex() const;
110 void Update( ItemIndex _RMIndex, const ::rtl::OUString& _rText );
129 void ImplUpdateIndex( const ItemIndex _nIndex );
164 …void insertHyperLabel( ItemIndex _Index, RoadmapItem* _rRoadmapStep ) { m_aRoadmapS… in insertHyperLabel()
166 ItemIndex getItemCount() const { return m_aRoadmapSteps.size();} in getItemCount()
186 void removeHyperLabel( ItemIndex _Index ) in removeHyperLabel()
283 RoadmapItem* ORoadmap::GetPreviousHyperLabel( ItemIndex _Index) in GetPreviousHyperLabel()
294 …RoadmapItem* ORoadmap::InsertHyperLabel( ItemIndex _Index, const ::rtl::OUString& _sLabel, ItemId … in InsertHyperLabel()
375 void ORoadmap::UpdatefollowingHyperLabels( ItemIndex _nIndex ) in UpdatefollowingHyperLabels()
378 if ( _nIndex < (ItemIndex)rItems.size() ) in UpdatefollowingHyperLabels()
401 …void ORoadmap::ReplaceRoadmapItem( ItemIndex _Index, const ::rtl::OUString& _RoadmapItem, ItemId _… in ReplaceRoadmapItem()
413 RoadmapTypes::ItemIndex ORoadmap::GetItemCount() const in GetItemCount()
419 RoadmapTypes::ItemId ORoadmap::GetItemID( ItemIndex _nIndex ) const in GetItemID()
428 RoadmapTypes::ItemIndex ORoadmap::GetItemIndex( ItemId _nID ) const in GetItemIndex()
439 return ItemIndex( i - rItems.begin() ); in GetItemIndex()
445 …void ORoadmap::InsertRoadmapItem( ItemIndex _Index, const ::rtl::OUString& _RoadmapItem, ItemId _n… in InsertRoadmapItem()
453 void ORoadmap::DeleteRoadmapItem( ItemIndex _Index ) in DeleteRoadmapItem()
469 sal_Bool ORoadmap::IsRoadmapItemEnabled( ItemId _nItemId, ItemIndex _nStartIndex ) const in IsRoadmapItemEnabled()
476 void ORoadmap::EnableRoadmapItem( ItemId _nItemId, sal_Bool _bEnable, ItemIndex _nStartIndex ) in EnableRoadmapItem()
484 …void ORoadmap::ChangeRoadmapItemLabel( ItemId _nID, const ::rtl::OUString& _sLabel, ItemIndex _nSt… in ChangeRoadmapItemLabel()
504 ::rtl::OUString ORoadmap::GetRoadmapItemLabel( ItemId _nID, ItemIndex _nStartIndex ) in GetRoadmapItemLabel()
514 void ORoadmap::ChangeRoadmapItemID( ItemId _nID, ItemId _NewID, ItemIndex _nStartIndex ) in ChangeRoadmapItemID()
522 RoadmapItem* ORoadmap::GetByID( ItemId _nID, ItemIndex _nStartIndex) in GetByID()
539 const RoadmapItem* ORoadmap::GetByID( ItemId _nID, ItemIndex _nStartIndex ) const in GetByID()
545 RoadmapItem* ORoadmap::GetByIndex( ItemIndex _nItemIndex) in GetByIndex()
548 if ( ( _nItemIndex > -1 ) && ( _nItemIndex < (ItemIndex)rItems.size() ) ) in GetByIndex()
556 const RoadmapItem* ORoadmap::GetByIndex( ItemIndex _nItemIndex ) const in GetByIndex()
562 RoadmapTypes::ItemId ORoadmap::GetNextAvailableItemId( ItemIndex _nNewIndex ) in GetNextAvailableItemId()
566 ItemIndex searchIndex = ++_nNewIndex; in GetNextAvailableItemId()
579 RoadmapTypes::ItemId ORoadmap::GetPreviousAvailableItemId( ItemIndex _nNewIndex ) in GetPreviousAvailableItemId()
582 ItemIndex searchIndex = --_nNewIndex; in GetPreviousAvailableItemId()
821 void RoadmapItem::ImplUpdateIndex( const ItemIndex _nIndex ) in ImplUpdateIndex()
837 void RoadmapItem::SetIndex( ItemIndex _Index ) in SetIndex()
843 RoadmapTypes::ItemIndex RoadmapItem::GetIndex() const in GetIndex()
845 return mpDescription ? mpDescription->GetIndex() : ItemIndex(-1); in GetIndex()
942 void RoadmapItem::Update( ItemIndex _RMIndex, const ::rtl::OUString& _rText ) in Update()