2026-03-26 21:02:10 +01:00
|
|
|
#include <pd/ultra/layout.hpp>
|
|
|
|
|
|
|
|
|
|
namespace PD {
|
|
|
|
|
namespace Ultra {
|
|
|
|
|
PD_API void Layout::SetFont(PD::Li::Font& font) { pList.SetFont(&font); }
|
|
|
|
|
|
|
|
|
|
PD_API void Layout::Render() {
|
|
|
|
|
pList.Clear();
|
2026-03-29 04:28:45 +02:00
|
|
|
for (auto& it : GetElements()) {
|
2026-03-26 21:02:10 +01:00
|
|
|
it->Draw(pList);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} // namespace Ultra
|
|
|
|
|
} // namespace PD
|