Files
MuditaOS/module-apps/application-call/data/CallAppStyle.hpp
rrandomsky fbe3d8df0b [MOS-644] Displaying number entered on the keypad during a call
Now, on the active call screen, the user can see the numbers provided during the call,
which is useful when, for example, the user calls a call center.
2023-10-27 16:39:46 +02:00

101 lines
3.6 KiB
C++

// Copyright (c) 2017-2023, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
#pragma once
#include <Style.hpp>
namespace callAppStyle
{
namespace strings
{
inline constexpr auto call = "app_call_call";
inline constexpr auto clear = "app_call_clear";
inline constexpr auto reject = "app_call_reject";
inline constexpr auto answer = "app_call_answer";
inline constexpr auto message = "app_call_message";
inline constexpr auto endcall = "app_call_end_call";
inline constexpr auto emergency = "app_call_emergency";
inline constexpr auto iscalling = "app_call_is_calling";
inline constexpr auto calling = "app_call_calling";
inline constexpr auto callended = "app_call_call_ended";
inline constexpr auto callrejected = "app_call_call_rejected";
inline constexpr auto contact = "app_call_contact";
inline constexpr auto mute = "app_call_mute";
inline constexpr auto MUTED = "app_call_muted";
inline constexpr auto speaker = "app_call_speaker";
inline constexpr auto speakeron = "app_call_speaker_on";
inline constexpr auto bluetooth = "app_call_bluetooth";
inline constexpr auto privateNumber = "app_call_private_number";
inline constexpr auto endingcall = "app_call_ending_call";
} // namespace strings
namespace numberLabel
{
inline constexpr auto x = 60U;
inline constexpr auto y = 157U;
inline constexpr auto w = style::window_width - 2 * x;
inline constexpr auto h = 51U + 16U;
inline constexpr auto borderW = 1U;
} // namespace numberLabel
namespace numberDescriptionLabel
{
inline constexpr auto x = 60U;
inline constexpr auto y = 254U;
inline constexpr auto w = style::window_width - 2 * x;
inline constexpr auto h = 40U;
} // namespace numberDescriptionLabel
namespace icon
{
inline constexpr auto x_margin = 20U;
}
// ENTER NUMBER WINDOW
namespace enterNumberWindow
{
namespace iconsBox
{
inline constexpr auto y = 411U;
inline constexpr auto h = 100U;
} // namespace iconsBox
} // namespace enterNumberWindow
// CALL WINDOW
namespace callWindow
{
namespace imageCircleTop
{
inline constexpr auto x = 111U;
inline constexpr auto y = 59U;
inline constexpr auto name = "circle_top";
} // namespace imageCircleTop
namespace imageCircleBottom
{
inline constexpr auto x = 104U;
inline constexpr auto y = 240U;
inline constexpr auto name = "circle_bottom";
} // namespace imageCircleBottom
namespace durationLabel
{
inline constexpr auto x = 120U;
inline constexpr auto y = 223U;
inline constexpr auto w = 240U;
inline constexpr auto h = 20U;
} // namespace durationLabel
namespace enteredDigitsLabel
{
inline constexpr auto x = 120U;
inline constexpr auto y = 360U;
inline constexpr auto w = 240U;
inline constexpr auto h = 20U;
} // namespace enteredDigitsLabel
namespace iconsBox
{
inline constexpr auto y = 411U;
inline constexpr auto h = 100U;
} // namespace iconsBox
} // namespace callWindow
} // namespace callAppStyle