mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-06-28 18:27:08 -04:00
24 lines
918 B
C++
24 lines
918 B
C++
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include <inttypes.h>
|
|
|
|
namespace style::window::pin_lock
|
|
{
|
|
const inline uint32_t image_x = 177;
|
|
const inline uint32_t image_y = 132;
|
|
const inline uint32_t title_label_y = 60;
|
|
const inline uint32_t title_label_h = 40;
|
|
const inline uint32_t label_size = 30;
|
|
const inline uint32_t label_size_screen = 60;
|
|
const inline uint32_t pin_label_x = 85;
|
|
const inline uint32_t pin_label_x_screen = 100;
|
|
const inline uint32_t pin_label_y = 450;
|
|
const inline uint32_t info_text_y = 294;
|
|
const inline uint32_t info_text_h_screen = 60;
|
|
const inline uint32_t info_text_h_sim = 150;
|
|
const inline uint32_t info_text_h_puk = 180;
|
|
} // namespace style::window::pin_lock
|