Files
MuditaOS/module-gui/gui/widgets/Icon.hpp
Przemyslaw Brudny d0200de5d5 [EGD-5398] Added onBoarding application first version
Created first version of onBoarding application. Added welcome
window, configuration start window and adopted language
window. Small Icon GUI refactor. AppManager language copy removed.
2021-02-11 16:37:51 +01:00

27 lines
570 B
C++

// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
#pragma once
#include <BoxLayout.hpp>
#include <Text.hpp>
#include <Image.hpp>
namespace gui
{
class Icon : public VBox
{
public:
Icon(Item *parent,
const uint32_t &x,
const uint32_t &y,
const uint32_t &w,
const uint32_t &h,
const UTF8 &imageName,
const UTF8 &text);
~Icon() override = default;
};
}; // namespace gui