mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-24 22:08:33 -05:00
40 lines
1.5 KiB
C++
40 lines
1.5 KiB
C++
/*
|
|
* @file MessageType.hpp
|
|
* @author Robert Borzecki (robert.borzecki@mudita.com)
|
|
* @date 3 cze 2019
|
|
* @brief
|
|
* @copyright Copyright (C) 2019 mudita.com
|
|
* @details
|
|
*/
|
|
#ifndef SOURCE_MESSAGETYPE_HPP_
|
|
#define SOURCE_MESSAGETYPE_HPP_
|
|
|
|
enum class MessageType {
|
|
|
|
MessageTypeUninitialized = 0,
|
|
//eink messages
|
|
EinkStateRequest, //message is used to pull status of the eink. If eink is ready to display image
|
|
EinkImageData, //message with pointer to the image data for displaying
|
|
EinkTemperatureUpdate, //message sent from timer handler. Message forces service to update temperature measured by the eink.
|
|
|
|
//gui messages
|
|
GUICommands, // list of rendering commands
|
|
GUIFocusInfo, // information about application that gained focus
|
|
GUIDisplayReady, //message that informs gui service that service controlling display device is ready for new buffer data.
|
|
GUIRenderingFinished, //Message is sent from the worker when all rendering is finished.
|
|
|
|
//application manager
|
|
APMSwitch, //request to switch to given application, optionally also to specified window
|
|
APMSwitchData, //request to switch to given application, optionally also to specified window with provided data.
|
|
APMSwitchPrevApp, //Request to switch to previous application.
|
|
APMConfirmSwitch, //Used when application confirms that it is loosing focus and also when application confirms that is has gained focus
|
|
APMConfirmClose, //Sent by application to confirm completion of the close procedure
|
|
|
|
//keyboard messages
|
|
KBDKeyEvent
|
|
};
|
|
|
|
|
|
|
|
#endif /* SOURCE_MESSAGETYPE_HPP_ */
|