mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-06-14 03:25:25 -04:00
* EGD-516 fixed layout in enterwindow. Gently refactor the code. Minor enhancments. * EGD-516 removed reinterpret casts from enterwindow * EGD-516 added new contact icon * EGD-516 added missing font and new Icon widget. * EGD-516 fixed icon label alignment * EGD-516 minor icon changes * EGD-516 add CallAppStyle * EGD-516 added icon styl to callappstyle
45 lines
895 B
C++
45 lines
895 B
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
|