You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.8 KiB
69 lines
1.8 KiB
2 years ago
|
/*
|
||
|
* EEZ Generic Firmware
|
||
|
* Copyright (C) 2021-present, Envox d.o.o.
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program. If not, see http://www.gnu.org/licenses.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <eez/core/os.h>
|
||
|
|
||
|
#include <eez/gui/event.h>
|
||
|
|
||
|
namespace eez {
|
||
|
namespace gui {
|
||
|
|
||
|
void startThread();
|
||
|
|
||
|
enum {
|
||
|
GUI_QUEUE_MESSAGE_TYPE_DISPLAY_VSYNC = 1,
|
||
|
|
||
|
GUI_QUEUE_MESSAGE_TYPE_TOUCH_EVENT,
|
||
|
|
||
|
GUI_QUEUE_MESSAGE_TYPE_SHOW_PAGE,
|
||
|
GUI_QUEUE_MESSAGE_TYPE_PUSH_PAGE,
|
||
|
|
||
|
GUI_QUEUE_MESSAGE_MOUSE_DISCONNECTED,
|
||
|
|
||
|
GUI_QUEUE_MESSAGE_REFRESH_SCREEN,
|
||
|
|
||
|
GUI_QUEUE_MESSAGE_FLOW_START,
|
||
|
GUI_QUEUE_MESSAGE_FLOW_STOP,
|
||
|
|
||
|
GUI_QUEUE_MESSAGE_UNLOAD_EXTERNAL_ASSETS,
|
||
|
|
||
|
GUI_QUEUE_MESSAGE_DEBUGGER_CLIENT_CONNECTED,
|
||
|
GUI_QUEUE_MESSAGE_DEBUGGER_CLIENT_DISCONNECTED,
|
||
|
GUI_QUEUE_MESSAGE_DEBUGGER_INPUT_AVAILABLE,
|
||
|
|
||
|
GUI_QUEUE_MESSAGE_KEY_DOWN,
|
||
|
|
||
|
};
|
||
|
|
||
|
class AppContext;
|
||
|
class Page;
|
||
|
|
||
|
void sendMessageToGuiThread(uint8_t messageType, uint32_t messageParam = 0, uint32_t timeoutMillisec = osWaitForever);
|
||
|
void sendTouchEventToGuiThread(Event &touchEvent);
|
||
|
bool pushPageInGuiThread(AppContext *appContext, int pageId, Page *page);
|
||
|
bool showPageInGuiThread(AppContext *appContext, int pageId);
|
||
|
|
||
|
bool isGuiThread();
|
||
|
|
||
|
void processGuiQueue(uint32_t timeoutMillisec);
|
||
|
|
||
|
} // namespace gui
|
||
|
} // namespace eez
|