mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-23 00:19:31 -04:00
19 lines
433 B
C++
19 lines
433 B
C++
#include "ListItem.hpp"
|
|
#include <log/log.hpp>
|
|
#include <Style.hpp>
|
|
|
|
namespace gui
|
|
{
|
|
|
|
ListItem::ListItem()
|
|
{
|
|
setRadius(0);
|
|
setEdges(RectangleEdgeFlags::GUI_RECT_EDGE_BOTTOM | RectangleEdgeFlags::GUI_RECT_EDGE_TOP);
|
|
|
|
setPenFocusWidth(style::window::default_border_focus_w);
|
|
setPenWidth(style::window::default_border_no_focus_w);
|
|
|
|
type = ItemType::LIST_ITEM;
|
|
}
|
|
} /* namespace gui */
|