GM6000 Digital Heater Controller Branch: main
SDX-1330
DisplayApi.h
Go to the documentation of this file.
1#ifndef Ajax_ScreenMgr_h_
2#define Ajax_ScreenMgr_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
16
17///
18namespace Ajax {
19///
20namespace ScreenMgr {
21
22
23
24/** This class defines the Screen Manager's interface to Graphic library. Only
25 functionality required by the Screen Manager is defined. The expectation
26 is that individual Screen instances directly access/use the Graphic library.
27 */
29{
30public:
31 /** This method is used to initialize/start the Graphics library. Returns
32 false if an UNRECOVERABLE error occurred; else true is returned.
33 */
34 virtual bool start() noexcept = 0;
35
36 /** This method is used to shutdown/stop the Graphics library
37 */
38 virtual void stop() noexcept = 0;
39
40 /** This method requests that the Graphic library physically update the
41 display. Returns false if an UNRECOVERABLE error occurred; else
42 true is returned.
43 */
44 virtual bool update() noexcept = 0;
45
46 /** This method requests that the display is 'turned off'. What 'off'
47 means is application/library/platform specific. Returns false if an
48 UNRECOVERABLE error occurred; else true is returned.
49 */
50 virtual bool turnOff() noexcept = 0;
51
52 /** This method restore the 'on' state after a previous call to turnOff().
53 Returns false if an UNRECOVERABLE error occurred; else true is
54 returned.
55 */
56 virtual bool turnOn() noexcept = 0;
57
58
59public:
60 /// Virtual destructor
61 virtual ~DisplayApi(){}
62};
63
64} // end namespaces
65}
66#endif // end header latch
67
This class defines the Screen Manager's interface to Graphic library.
Definition DisplayApi.h:29
virtual bool turnOff() noexcept=0
This method requests that the display is 'turned off'.
virtual void stop() noexcept=0
This method is used to shutdown/stop the Graphics library.
virtual bool start() noexcept=0
This method is used to initialize/start the Graphics library.
virtual bool update() noexcept=0
This method requests that the Graphic library physically update the display.
virtual bool turnOn() noexcept=0
This method restore the 'on' state after a previous call to turnOff().
The 'Ajax' namespace is the root name space all GM6000 application specific source code.