blob: 3ef3be3a9de6aa1985b381e4d5616ed113193f19 (
plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
/*
* Copyright (c) 2019-2020, Sergey Bugaev <bugaevc@serenityos.org>
* Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/DeprecatedString.h>
#include <LibCrypto/BigFraction/BigFraction.h>
#include <LibCrypto/BigInt/UnsignedBigInteger.h>
// This type implements number typing and
// displaying mechanics. It does not perform
// any arithmetic operations or anything on
// the values it deals with.
class Keypad final {
public:
Keypad() = default;
~Keypad() = default;
void type_digit(int digit);
void type_decimal_point();
void type_backspace();
Crypto::BigFraction value() const;
void set_value(Crypto::BigFraction);
void set_typed_value(Crypto::BigFraction);
void set_to_0();
void shrink(unsigned);
void set_rounding_length(unsigned);
unsigned rounding_length() const;
DeprecatedString to_deprecated_string() const;
bool in_typing_state() const;
private:
// Internal representation of the current decimal value.
// Those variables are only used when the user is entering a value.
// Otherwise, the BigFraction m_internal_value is used.
Crypto::UnsignedBigInteger m_int_value { 0 };
Crypto::UnsignedBigInteger m_frac_value { 0 };
Crypto::UnsignedBigInteger m_frac_length { 0 };
// E.g. for -35.004200,
// m_negative = true
// m_int_value = 35
// m_frac_value = 4200
// m_frac_length = 6
mutable Crypto::BigFraction m_internal_value {};
unsigned m_displayed_fraction_length { 0 };
enum class State {
External,
TypedExternal,
TypingInteger,
TypingDecimal
};
State m_state { State::External };
};
|