GM6000 Digital Heater Controller Branch: main
SDX-1330
Events.h
Go to the documentation of this file.
1#ifndef Ajax_Ui_Events_h_
2#define Ajax_Ui_Events_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 NOTE: This file can only contain valid C code since it will be included
16 via the colony_map.h LHeader pattern
17*/
18
19
20
21/// Enum for the set of UI events (okay, there are only button events)
23{
24 AJAX_UI_EVENT_BUTTON_A, //!< Top left button
25 AJAX_UI_EVENT_BUTTON_B, //!< Bottom left button
26 AJAX_UI_EVENT_BUTTON_X, //!< Top right button
27 AJAX_UI_EVENT_BUTTON_Y, //!< Bottom right button
28 AJAX_UI_EVENT_BUTTON_ESC, //!< The two bottom buttons pressed together
29 AJAX_UI_EVENT_NO_EVENT //!< No/null/nop event
30};
31
32
33
34#endif // end header latch
35
AjaxUiEvent_T
Enum for the set of UI events (okay, there are only button events)
Definition Events.h:23
@ AJAX_UI_EVENT_BUTTON_A
Top left button.
Definition Events.h:24
@ AJAX_UI_EVENT_BUTTON_B
Bottom left button.
Definition Events.h:25
@ AJAX_UI_EVENT_BUTTON_X
Top right button.
Definition Events.h:26
@ AJAX_UI_EVENT_BUTTON_Y
Bottom right button.
Definition Events.h:27
@ AJAX_UI_EVENT_NO_EVENT
No/null/nop event.
Definition Events.h:29
@ AJAX_UI_EVENT_BUTTON_ESC
The two bottom buttons pressed together.
Definition Events.h:28