GM6000 Digital Heater Controller Branch: main
SDX-1330
Screen.h
Go to the documentation of this file.
1#ifndef Ajax_Ui_Splash_Screen_h_
2#define Ajax_Ui_Splash_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
16#include "pimoroni/libraries/pico_graphics/pico_graphics.hpp"
17
18///
19namespace Ajax {
20///
21namespace Ui {
22///
23namespace Splash {
24
25
26/** This class implements the splash screen
27 */
29{
30public:
31 /// Constructor
32 Screen( pimoroni::PicoGraphics& graphics );
33
34public:
35 /// Ajax::ScreenMgr::StaticScreenApi
36 void paint( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept;
37
38protected:
39 /// Graphic library handle
40 pimoroni::PicoGraphics& m_graphics;
41};
42
43} // end namespaces
44}
45}
46#endif // end header latch
47
This class defines interface for Screens that only contain static data.
Definition StaticScreenApi.h:31
This class implements the splash screen.
Definition Screen.h:29
Screen(pimoroni::PicoGraphics &graphics)
Constructor.
void paint(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
Ajax::ScreenMgr::StaticScreenApi.
pimoroni::PicoGraphics & m_graphics
Graphic library handle.
Definition Screen.h:40
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