CComponentsForm: add methods to get previous and next item

This commit is contained in:
2017-08-04 15:30:21 +02:00
parent a19a1f067e
commit a4af92d219
2 changed files with 43 additions and 2 deletions

View File

@@ -257,6 +257,16 @@ CComponentsItem* CComponentsForm::getCCItem(const uint& cc_item_id)
return NULL;
}
CComponentsItem* CComponentsForm::getPrevCCItem(CComponentsItem* current_cc_item)
{
return getCCItem(getCCItemId(current_cc_item) - 1);
}
CComponentsItem* CComponentsForm::getNextCCItem(CComponentsItem* current_cc_item)
{
return getCCItem(getCCItemId(current_cc_item) + 1);
}
void CComponentsForm::replaceCCItem(const uint& cc_item_id, CComponentsItem* new_cc_Item)
{
if (!v_cc_items.empty()){