![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This class defines the interface - used by ScreenApi instances - to navigate to other screen instances. More...
This class defines the interface - used by ScreenApi instances - to navigate to other screen instances.
#include <Navigation.h>
Public Member Functions | |
virtual void | push (ScreenApi &newScreen) noexcept=0 |
This method pushes the current active screen onto the navigation stack and makes the specified screen the active screen. | |
virtual void | pop (unsigned count=1) noexcept=0 |
This method pops N-instances off of the navigation stack and make the last popped instance the current active screen. | |
virtual void | popTo (ScreenApi &returnToScreen) noexcept=0 |
This method is similar to pop(), except is pops screen instances till there is match for 'returnToScreen'. | |
virtual void | popToHome () noexcept=0 |
This method clears the navigation stack and make the Home screen the active screen. | |
virtual ScreenApi * | getCurrentScreen () noexcept=0 |
Returns a pointer to the current screen. | |
virtual bool | isCurrentScreenHaltError () noexcept=0 |
This method returns true ONLY when the 'Halt-Error-Screen' is displayed. | |
virtual | ~Navigation () |
Virtual destructor. | |
|
inlinevirtual |
Virtual destructor.
|
pure virtualnoexcept |
Returns a pointer to the current screen.
If there is no current screen (e.g. still displaying the splash screen), then nullptr is returned.
Implemented in Ajax::ScreenMgr::Api.
|
pure virtualnoexcept |
This method returns true ONLY when the 'Halt-Error-Screen' is displayed.
Implemented in Ajax::ScreenMgr::Api.
|
pure virtualnoexcept |
This method pops N-instances off of the navigation stack and make the last popped instance the current active screen.
If N exceeds the number of items on the stack, the Screen Manager 'logs an error' and the Home screen is made the active screen.
Implemented in Ajax::ScreenMgr::Api.
|
pure virtualnoexcept |
This method is similar to pop(), except is pops screen instances till there is match for 'returnToScreen'.
If the match is found, then 'returnToScreen' is made the current active screen. If no match is found, the Screen Manager 'logs an error' and the Home screen is made the active screen.
Implemented in Ajax::ScreenMgr::Api.
|
pure virtualnoexcept |
This method clears the navigation stack and make the Home screen the active screen.
Implemented in Ajax::ScreenMgr::Api.
|
pure virtualnoexcept |
This method pushes the current active screen onto the navigation stack and makes the specified screen the active screen.
If the navigation stack is full, then Screen Manager 'logs an error' and the Home screen is made the active screen.
If 'newScreen' is the current home screen - this is consider an error! However, when/if this happens, the call has the same behavior as popToHome(). That said the application should NEVER rely on this behavior as it is subject to CHANGE without notice.
Implemented in Ajax::ScreenMgr::Api.