GM6000 Digital Heater Controller Branch: main
SDX-1330
Screen.h
Go to the documentation of this file.
1#ifndef Ajax_Ui_About_Screen_h_
2#define Ajax_Ui_About_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"
17#include "Ajax/ScreenMgr/Api.h"
18
19///
20namespace Ajax {
21///
22namespace Ui {
23///
24namespace About {
25
26
27/** This class implements the About screen
28 */
30{
31public:
32 /// Constructor
34 pimoroni::PicoGraphics& graphics );
35
36public:
37 /// See Ajax::ScreenMgr::ScreenApi
38 void enter( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
39
40 /// See Ajax::ScreenMgr::ScreenApi
41 void exit( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
42
43 /// See Ajax::ScreenMgr::ScreenApi
44 void sleep( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
45
46 /// See Ajax::ScreenMgr::ScreenApi
47 void wake( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
48
49 /// See Ajax::ScreenMgr::ScreenApi
50 void dispatch( AjaxScreenMgrEvent_T event, Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
51
52 /// See Ajax::ScreenMgr::ScreenApi
53 bool tick( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
54
55 /// See Ajax::ScreenMgr::ScreenApi
56 bool refresh( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
57
58protected:
59 /// Handle to the screen manager
61
62 /// Graphic library handle
63 pimoroni::PicoGraphics& m_graphics;
64};
65
66} // end namespaces
67}
68}
69#endif // end header latch
70
#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 About screen.
Definition Screen.h:30
void dispatch(AjaxScreenMgrEvent_T event, Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
void wake(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.
Screen(Ajax::ScreenMgr::Navigation &screenMgr, pimoroni::PicoGraphics &graphics)
Constructor.
void exit(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
pimoroni::PicoGraphics & m_graphics
Graphic library handle.
Definition Screen.h:63
void enter(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
void sleep(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
Ajax::ScreenMgr::Navigation & m_screenMgr
Handle to the screen manager.
Definition Screen.h:60
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