mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-04 05:06:58 -04:00
35 lines
864 B
C++
35 lines
864 B
C++
/*
|
|
* MessagesStyle.hpp
|
|
*
|
|
* Created on: 25 lis 2019
|
|
* Author: kuba
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace messages
|
|
{
|
|
namespace threads
|
|
{
|
|
constexpr auto pageSize = 4;
|
|
|
|
constexpr auto listHeight = 445;
|
|
constexpr auto listWidth = 458;
|
|
constexpr auto listPositionX = 11;
|
|
constexpr auto ListPositionY = 105; // @TODO M.G. tweak it to design. Spacers between entries, top margin
|
|
} // namespace threads
|
|
|
|
namespace threadItem
|
|
{
|
|
|
|
constexpr auto contactPositionX = 14;
|
|
constexpr auto contactPositionY = 10;
|
|
constexpr auto cotactWidthOffset = 133;
|
|
|
|
constexpr auto timestampWidth = 100;
|
|
|
|
constexpr auto prewievPositionX = 14;
|
|
constexpr auto previewWidthOffset = 20;
|
|
} // namespace threadItem
|
|
} // namespace messages
|