Files
MuditaOS/module-gui/gui/widgets/ImageBox.hpp
2020-10-20 12:55:10 +02:00

22 lines
471 B
C++

// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
#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