mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-22 10:42:49 +00:00
19 lines
519 B
C
19 lines
519 B
C
|
|
#pragma once
|
||
|
|
#include "OLEDDisplay.h"
|
||
|
|
#include "OLEDDisplayUi.h"
|
||
|
|
#include "graphics/emotes.h"
|
||
|
|
|
||
|
|
namespace graphics
|
||
|
|
{
|
||
|
|
namespace MessageRenderer
|
||
|
|
{
|
||
|
|
|
||
|
|
// Text and emote rendering
|
||
|
|
void drawStringWithEmotes(OLEDDisplay *display, int x, int y, const std::string &line, const Emote *emotes, int emoteCount);
|
||
|
|
|
||
|
|
/// Draws the text message frame for displaying received messages
|
||
|
|
void drawTextMessageFrame(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y);
|
||
|
|
|
||
|
|
} // namespace MessageRenderer
|
||
|
|
} // namespace graphics
|