Add methods to the flow implementations to add new items dynamically

This commit is contained in:
Luis Ángel San Martín
2023-08-13 11:15:47 +02:00
parent 82aa380bb5
commit 024f6df9de
4 changed files with 49 additions and 2 deletions

View File

@ -133,7 +133,12 @@ public slots:
void addSlide(const QPixmap &pixmap);
/*!
Removes an existing slide.
Insert and empty slide at index.
*/
void insertSlide(int index);
/*!
Removes an existing slide.
*/
void removeSlide(int index);