GM6000 Digital Heater Controller Branch: main
SDX-1330
Navigation.h
Go to the documentation of this file.
1#ifndef Ajax_ScreenMgr_Navigation_h_
2#define Ajax_ScreenMgr_Navigation_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
16
17///
18namespace Ajax {
19///
20namespace ScreenMgr {
21
22
23/** This class defines the interface - used by ScreenApi instances - to navigate
24 to other screen instances.
25 */
27{
28public:
29 /** This method pushes the current active screen onto the navigation stack
30 and makes the specified screen the active screen.
31
32 If the navigation stack is full, then Screen Manager 'logs an error' and
33 the Home screen is made the active screen.
34
35 If 'newScreen' is the current home screen - this is consider an error!
36 However, when/if this happens, the call has the same behavior as
37 popToHome(). That said the application should NEVER rely on this
38 behavior as it is subject to CHANGE without notice.
39 */
40 virtual void push( ScreenApi& newScreen ) noexcept = 0;
41
42 /** This method pops N-instances off of the navigation stack and make the
43 last popped instance the current active screen. If N exceeds the
44 number of items on the stack, the Screen Manager 'logs an error' and
45 the Home screen is made the active screen.
46 */
47 virtual void pop( unsigned count=1 ) noexcept = 0;
48
49 /** This method is similar to pop(), except is pops screen instances till
50 there is match for 'returnToScreen'. If the match is found, then
51 'returnToScreen' is made the current active screen. If no match is
52 found, the Screen Manager 'logs an error' and the Home screen is made
53 the active screen.
54 */
55 virtual void popTo( ScreenApi& returnToScreen ) noexcept = 0;
56
57 /** This method clears the navigation stack and make the Home screen the
58 active screen.
59 */
60 virtual void popToHome() noexcept =0;
61
62public:
63 /** Returns a pointer to the current screen. If there is no current
64 screen (e.g. still displaying the splash screen), then nullptr
65 is returned.
66 */
67 virtual ScreenApi* getCurrentScreen() noexcept = 0;
68
69 /** This method returns true ONLY when the 'Halt-Error-Screen' is displayed
70 */
71 virtual bool isCurrentScreenHaltError() noexcept = 0;
72
73public:
74 /// Virtual destructor
75 virtual ~Navigation(){}
76};
77
78} // end namespaces
79}
80#endif // end header latch
81
This class defines the interface - used by ScreenApi instances - to navigate to other screen instance...
Definition Navigation.h:27
virtual void popToHome() noexcept=0
This method clears the navigation stack and make the Home screen the active screen.
virtual bool isCurrentScreenHaltError() noexcept=0
This method returns true ONLY when the 'Halt-Error-Screen' is displayed.
virtual ScreenApi * getCurrentScreen() noexcept=0
Returns a pointer to the current screen.
virtual void popTo(ScreenApi &returnToScreen) noexcept=0
This method is similar to pop(), except is pops screen instances till there is match for 'returnToScr...
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 curren...
virtual void push(ScreenApi &newScreen) noexcept=0
This method pushes the current active screen onto the navigation stack and makes the specified screen...
This class defines the interface for a 'Screen'.
Definition ScreenApi.h:31
The 'Ajax' namespace is the root name space all GM6000 application specific source code.