mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-23 00:19:31 -04:00
* EGD-3229 [gui] Added Lenght & Position typedef in Common.hpp * EGD-3229 [gui] Item & Layout: General resize requests handling mechanism
17 lines
300 B
C++
17 lines
300 B
C++
#pragma once
|
|
|
|
#include <LayoutSizeStore.hpp>
|
|
#include <map>
|
|
|
|
namespace gui
|
|
{
|
|
class BoxLayoutSizeStore : public LayoutSizeStore
|
|
{
|
|
std::map<Item *, Size> grants;
|
|
|
|
public:
|
|
bool store(Item *, Size size) override;
|
|
Size get(Item *) override;
|
|
};
|
|
} // namespace gui
|