~aleteoryx/muditaos

ref: 58b11ee8dd9d4da8242836a207548bcd485cdc50 muditaos/module-apps/application-notes/style/NotesMainWindowStyle.hpp -rw-r--r-- 1.2 KiB
58b11ee8 — Artur Śleszyński [EGD-6563] Don't allow to edit exponent output in calculator 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// 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 <module-gui/gui/widgets/Style.hpp>

namespace app::notes::style::main_window
{
    namespace new_note_arrow
    {
        constexpr inline auto X           = 30;
        constexpr inline auto Y           = 62;
        constexpr inline auto ImageSource = "arrow_left";
    } // namespace new_note_arrow

    namespace new_note_image
    {
        constexpr inline auto X           = 48;
        constexpr inline auto Y           = 55;
        constexpr inline auto ImageSource = "cross";
    } // namespace new_note_image

    namespace search_arrow
    {
        constexpr inline auto X           = 480 - 30 - 13;
        constexpr inline auto Y           = 62;
        constexpr inline auto ImageSource = "arrow_right";
    } // namespace search_arrow

    namespace search_image
    {
        constexpr inline auto X           = 480 - 48 - 26;
        constexpr inline auto Y           = 55;
        constexpr inline auto ImageSource = "search";
    } // namespace search_image
} // namespace app::notes::style::main_window