Files
MuditaOS/module-gui/gui/widgets/TextBubble.cpp
pholat adaf18829e gui::Text rewrite (#483)
* Text refactor added
2020-07-07 14:37:53 +02:00

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