mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-25 23:38:49 -04:00
47 lines
1.4 KiB
C++
47 lines
1.4 KiB
C++
#include "Icon.hpp"
|
|
#include <i18/i18.hpp>
|
|
#include <Style.hpp>
|
|
|
|
using namespace gui;
|
|
|
|
namespace style
|
|
{
|
|
namespace img
|
|
{
|
|
constexpr uint32_t x = 176;
|
|
constexpr uint32_t y = 90;
|
|
} // namespace img
|
|
namespace text
|
|
{
|
|
constexpr uint32_t x = 40;
|
|
constexpr uint32_t y = 247;
|
|
constexpr uint32_t w = 400;
|
|
constexpr uint32_t h = 66;
|
|
constexpr Color color = {7, 0};
|
|
} // namespace text
|
|
} // namespace style
|
|
|
|
Icon::Icon(Item *parent,
|
|
const uint32_t &x,
|
|
const uint32_t &y,
|
|
const uint32_t &w,
|
|
const uint32_t &h,
|
|
const UTF8 imageName,
|
|
const UTF8 &str)
|
|
: Rect(parent, x, y, w, h)
|
|
{
|
|
setEdges(RectangleEdgeFlags::GUI_RECT_EDGE_NO_EDGES);
|
|
setPenFocusWidth(style::window::default_border_no_focus_w);
|
|
setPenWidth(style::window::default_border_no_focus_w);
|
|
|
|
img = new Image(this, style::img::x, style::img::y, imageName);
|
|
|
|
text = new Text(this, style::text::x, style::text::y, style::text::w, style::text::h, str);
|
|
text->setTextType(Text::TextType::MULTI_LINE);
|
|
text->setEditMode(Text::EditMode::BROWSE);
|
|
text->setEdges(RectangleEdgeFlags::GUI_RECT_EDGE_NO_EDGES);
|
|
text->setFont(style::window::font::medium);
|
|
text->setAlignment(gui::Alignment(gui::Alignment::ALIGN_HORIZONTAL_CENTER, gui::Alignment::ALIGN_VERTICAL_CENTER));
|
|
text->setTextColor(style::text::color);
|
|
}
|