mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-27 15:34:10 -05:00
Changed VoLTE label from 'beta' to 'experimental'. Fixed transition state label font size to match the design.
60 lines
1.5 KiB
C++
60 lines
1.5 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>
|
|
#include <utf8/UTF8.hpp>
|
|
|
|
namespace gui::option
|
|
{
|
|
enum class Arrow : bool
|
|
{
|
|
Disabled,
|
|
Enabled
|
|
};
|
|
|
|
enum class ContactOperation
|
|
{
|
|
Add,
|
|
Details,
|
|
Edit
|
|
};
|
|
|
|
enum class SettingRightItem
|
|
{
|
|
Disabled,
|
|
ArrowBlack,
|
|
ArrowWhite,
|
|
Transiting,
|
|
On,
|
|
Off,
|
|
Bt,
|
|
Checked,
|
|
SIM1,
|
|
SIM2,
|
|
Text
|
|
};
|
|
|
|
enum class OptionRecordValidity
|
|
{
|
|
Uninitialized,
|
|
Invalid,
|
|
Valid
|
|
};
|
|
|
|
namespace window
|
|
{
|
|
inline constexpr gui::Length option_left_margin = 10;
|
|
inline constexpr gui::Length option_right_margin = 10;
|
|
inline constexpr gui::Length option_bottom_margin = style::margins::big;
|
|
inline constexpr gui::Length option_label_spacer = style::margins::small;
|
|
inline constexpr uint32_t optionsListTopMargin = 10U;
|
|
inline constexpr uint32_t optionsListX = style::window::default_left_margin;
|
|
inline constexpr uint32_t optionsListY = style::window::default_vertical_pos + optionsListTopMargin;
|
|
inline constexpr uint32_t optionsListW = style::listview::body_width_with_scroll;
|
|
inline constexpr uint32_t optionsListH = style::window::default_body_height;
|
|
} // namespace window
|
|
|
|
} // namespace gui::option
|