mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-23 00:19:31 -04:00
18 lines
380 B
C++
18 lines
380 B
C++
#include "TextBubble.hpp"
|
|
|
|
namespace gui
|
|
{
|
|
|
|
TextBubble::TextBubble(Item *parent, Position x, Position y, Length w, Length h) : Text(parent, x, y, w, h)
|
|
{
|
|
setEditMode(EditMode::SCROLL);
|
|
setEdges(RectangleEdgeFlags::GUI_RECT_ALL_EDGES);
|
|
}
|
|
|
|
void TextBubble::setYaps(RectangleYapFlags yaps)
|
|
{
|
|
Rect::setYaps(yaps);
|
|
}
|
|
|
|
} // namespace gui
|