ImagingTools Core SDK
IPageNavigationController.h
1// SPDX-License-Identifier: LGPL-2.1-or-later OR GPL-2.0-or-later OR GPL-3.0-or-later OR LicenseRef-ImtCore-Commercial
2#pragma once
3
4
5
6// ImCore includes
7#include <istd/IChangeable.h>
8
9
10namespace imtgui
11{
12
13
14class IPageNavigationController: virtual public istd::IChangeable
15{
16public:
17 virtual bool IsNextPageAvailable() const = 0;
18 virtual bool IsPreviousPageAvailable() const = 0;
19 virtual void GoForward() = 0;
20 virtual void GoBack() = 0;
21};
22
23
24} // namespace imtgui
25
26