GM6000 Digital Heater Controller Branch: main
SDX-1330
ScreenApi.h
Go to the documentation of this file.
1#ifndef Ajax_ScreenMgr_ScreenApi_h_
2#define Ajax_ScreenMgr_ScreenApi_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
17
18///
19namespace Ajax {
20///
21namespace ScreenMgr {
22
23
24
25/** This class defines the interface for a 'Screen'.
26
27 The current elapsed time (since power-up) is passed as argument to all
28 of the calls.
29 */
31{
32public:
33 /** This method is called as part of making the screen the 'active' screen
34 */
35 virtual void enter( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept = 0;
36
37 /** This method is called as part of the sequence where the screen instance
38 is no longer the active screen.
39 */
40 virtual void exit( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept = 0;
41
42public:
43 /** This method is used to inform the active screen that the display has
44 been 'turned off'. When the screen is off - no content is visible to
45 user. The actual state of the display RAM is indeterminate
46 */
47 virtual void sleep( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept = 0;
48
49 /** This method is used to inform the active screen that the display is about
50 to be turned back on. The Screen Manager is responsible for triggering
51 a refresh() call if the display RAM needs to be updated.
52 */
53 virtual void wake( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept = 0;
54
55public:
56 /** This method is used to dispatch/forward a UI event to active screen.
57 */
58 virtual void dispatch( AjaxScreenMgrEvent_T event, Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept = 0;
59
60 /** This method is used to notify the active screen that the Screen Managers
61 20Hz timer has expired (i.e. called every 50ms)
62
63 NOTE: A software timer is used, so the accuracy of the callback frequency
64 is NOT guaranteed
65
66 Returning true forces a physical display update.
67 */
68 virtual bool tick( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept = 0;
69
70 /** This method requests the active screen to ensure the its screen contents
71 are up to date. If the screen contents have not changed since the
72 last time the method was - the method returns false. Returning true
73 forces a physical display update.
74 */
75 virtual bool refresh( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept = 0;
76
77public:
78 /// Virtual destructor
79 virtual ~ScreenApi(){}
80};
81
82} // end namespaces
83}
84#endif // end header latch
85
#define AjaxScreenMgrEvent_T
Application specific type for Events.
Definition Event.h:21
This class defines the interface for a 'Screen'.
Definition ScreenApi.h:31
virtual ~ScreenApi()
Virtual destructor.
Definition ScreenApi.h:79
virtual bool tick(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept=0
This method is used to notify the active screen that the Screen Managers 20Hz timer has expired (i....
virtual void dispatch(AjaxScreenMgrEvent_T event, Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept=0
This method is used to dispatch/forward a UI event to active screen.
virtual bool refresh(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept=0
This method requests the active screen to ensure the its screen contents are up to date.
virtual void exit(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept=0
This method is called as part of the sequence where the screen instance is no longer the active scree...
virtual void enter(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept=0
This method is called as part of making the screen the 'active' screen.
virtual void wake(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept=0
This method is used to inform the active screen that the display is about to be turned back on.
virtual void sleep(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept=0
This method is used to inform the active screen that the display has been 'turned off'.
The 'Ajax' namespace is the root name space all GM6000 application specific source code.
Data type for time in seconds with a 'fractional' millisecond precision.
Definition ElapsedTime.h:35