mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-06-19 14:00:55 -04:00
19 lines
335 B
C++
19 lines
335 B
C++
#pragma once
|
|
|
|
#include <BoxLayout.hpp>
|
|
#include <Image.hpp>
|
|
|
|
namespace gui
|
|
{
|
|
class ImageBox : public HBox
|
|
{
|
|
|
|
public:
|
|
ImageBox(
|
|
Item *parent, const uint32_t &x, const uint32_t &y, const uint32_t &w, const uint32_t &h, Image *image);
|
|
|
|
~ImageBox() override = default;
|
|
};
|
|
|
|
}; // namespace gui
|