GM6000 Digital Heater Controller Branch: main
SDX-1330
Screen.h
Go to the documentation of this file.
1#ifndef Eros_Ui_LcdTest_Screen_h_
2#define Eros_Ui_LcdTest_Screen_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
15#include "pimoroni/libraries/pico_graphics/pico_graphics.hpp"
18#include "Cpl/Dm/Mp/Int32.h"
20
21///
22namespace Eros {
23///
24namespace Ui {
25///
26namespace LcdTest {
27
28
29/** This class implements the Home screen
30 */
32{
33public:
34 /// Constructor
36 pimoroni::PicoGraphics& graphics );
37
38public:
39 /// See Ajax::ScreenMgr::ScreenApi
40 void enter( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
41
42 /// See Ajax::ScreenMgr::ScreenApi
43 void exit( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
44
45 /// See Ajax::ScreenMgr::ScreenApi
46 void sleep( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
47
48 /// See Ajax::ScreenMgr::ScreenApi
49 void wake( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
50
51 /// See Ajax::ScreenMgr::ScreenApi
52 void dispatch( AjaxScreenMgrEvent_T event, Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
53
54 /// See Ajax::ScreenMgr::ScreenApi
55 bool tick( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
56
57 /// See Ajax::ScreenMgr::ScreenApi
58 bool refresh( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
59
60protected:
61 /// Color state
63 {
64 RED = 0, //!< Background: Red
65 GREEN, //!< Background: Green
66 BLUE, //!< Background: Blue
67 BLACK, //!< Background: Black
68 WHITE, //!< Background: White
69 FIRST = RED, //!< Marker to the first color
70 LAST = WHITE //!< Marker to the last color
71 };
72
73protected:
74 /// Handle to the screen manager
76
77 /// Graphic library handle
78 pimoroni::PicoGraphics& m_graphics;
79
80 /// Internal (color) state
82
83 /// My internal 'dirty' flag
84 bool m_stale;
85};
86
87} // end namespaces
88}
89}
90#endif // end header latch
91
#define AjaxScreenMgrEvent_T
Application specific type for Events.
Definition Event.h:21
This class defines the interface - used by ScreenApi instances - to navigate to other screen instance...
Definition Navigation.h:27
This class defines the interface for a 'Screen'.
Definition ScreenApi.h:31
This class implements the Home screen.
Definition Screen.h:32
pimoroni::PicoGraphics & m_graphics
Graphic library handle.
Definition Screen.h:78
void exit(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
bool tick(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
bool refresh(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
ColorState_T m_color
Internal (color) state.
Definition Screen.h:81
void sleep(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
void dispatch(AjaxScreenMgrEvent_T event, Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
Screen(Ajax::ScreenMgr::Navigation &screenMgr, pimoroni::PicoGraphics &graphics)
Constructor.
void enter(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
void wake(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
ColorState_T
Color state.
Definition Screen.h:63
@ RED
Background: Red.
Definition Screen.h:64
@ WHITE
Background: White.
Definition Screen.h:68
@ BLUE
Background: Blue.
Definition Screen.h:66
@ LAST
Marker to the last color.
Definition Screen.h:70
@ FIRST
Marker to the first color.
Definition Screen.h:69
@ GREEN
Background: Green.
Definition Screen.h:65
@ BLACK
Background: Black.
Definition Screen.h:67
bool m_stale
My internal 'dirty' flag.
Definition Screen.h:84
Ajax::ScreenMgr::Navigation & m_screenMgr
Handle to the screen manager.
Definition Screen.h:75
The 'Eros' namespace is the root name space all of the GM6000 Engineering Test Application specific s...
Definition screens.h:22
Data type for time in seconds with a 'fractional' millisecond precision.
Definition ElapsedTime.h:35