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