Files
MuditaOS/module-apps/application-call/data/CallAppStyle.hpp
Radoslaw Wicik a8573a404c Apply new style
2020-03-17 10:03:16 +01:00

45 lines
1.2 KiB
C++

#pragma once
#include <Style.hpp>
namespace callAppStyle
{
// ICON
namespace icon
{
constexpr uint32_t w = 100;
constexpr uint32_t h = 100;
namespace label
{
constexpr uint32_t x = 9;
constexpr uint32_t y = 58;
constexpr uint32_t w = 82;
constexpr uint32_t h = 20;
} // namespace label
namespace img
{
constexpr uint32_t x = 34;
constexpr uint32_t y = 15;
constexpr uint32_t w = 32;
constexpr uint32_t h = 32;
} // namespace img
} // namespace icon
// ENTER NUMBER WINDOW
namespace enterNumberWindow
{
namespace numberLabel
{
constexpr uint32_t x = 60;
constexpr uint32_t y = 157;
constexpr uint32_t w = style::window_width - 2 * x;
constexpr uint32_t h = 66;
constexpr uint32_t borderW = 1;
} // namespace numberLabel
namespace newContactIcon
{
constexpr uint32_t x = 190;
constexpr uint32_t y = 411;
} // namespace newContactIcon
} // namespace enterNumberWindow
} // namespace callAppStyle