1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:47:35 +00:00

Presenter: Add Presentation::has_a_[next,previous]_frame()

This commit is contained in:
Lucas CHOLLET 2023-01-15 23:09:33 -05:00 committed by Andreas Kling
parent 3ed9627f4e
commit 2372b3b8f9
2 changed files with 12 additions and 0 deletions

View file

@ -32,6 +32,8 @@ public:
unsigned current_slide_number() const { return m_current_slide.value(); }
unsigned current_frame_in_slide_number() const { return m_current_frame_in_slide.value(); }
bool has_a_next_frame() const;
bool has_a_previous_frame() const;
void next_frame();
void previous_frame();
void go_to_first_slide();