forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
entry.h
142 lines (114 loc) · 3.34 KB
/
entry.h
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
// Aseprite UI Library
// Copyright (C) 2018-2022 Igara Studio S.A.
// Copyright (C) 2001-2017 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef UI_ENTRY_H_INCLUDED
#define UI_ENTRY_H_INCLUDED
#pragma once
#include "obs/signal.h"
#include "ui/widget.h"
#include <memory>
namespace ui {
class MouseMessage;
class Entry : public Widget {
public:
struct Range {
int from = -1, to = -1;
Range() { }
Range(int from, int to) : from(from), to(to) { }
bool isEmpty() const { return from < 0; }
int size() const { return to - from; }
void reset() { from = to = -1; }
};
Entry(const int maxsize, const char *format, ...);
~Entry();
void setMaxTextLength(const int maxsize);
bool isReadOnly() const;
void setReadOnly(bool state);
void showCaret();
void hideCaret();
int caretPos() const { return m_caret; }
int lastCaretPos() const;
void setCaretPos(int pos);
void setCaretToEnd();
void selectText(int from, int to);
void selectAllText();
void deselectText();
std::string selectedText() const;
Range selectedRange() const;
void setSuffix(const std::string& suffix);
std::string getSuffix();
void setTranslateDeadKeys(bool state);
// for themes
void getEntryThemeInfo(int* scroll, int* caret, int* state, Range* range) const;
gfx::Rect getEntryTextBounds() const;
static gfx::Size sizeHintWithText(Entry* entry,
const std::string& text);
// Signals
obs::signal<void()> Change;
protected:
// Events
bool onProcessMessage(Message* msg) override;
void onSizeHint(SizeHintEvent& ev) override;
void onPaint(PaintEvent& ev) override;
void onSetText() override;
// New Events
virtual void onChange();
virtual gfx::Rect onGetEntryTextBounds() const;
private:
enum class EntryCmd {
NoOp,
InsertChar,
ForwardChar,
ForwardWord,
BackwardChar,
BackwardWord,
BeginningOfLine,
EndOfLine,
DeleteForward,
DeleteBackward,
DeleteBackwardWord,
DeleteForwardToEndOfLine,
Cut,
Copy,
Paste,
SelectAll,
};
int getCaretFromMouse(MouseMessage* mousemsg);
void executeCmd(EntryCmd cmd, int ascii, bool shift_pressed);
void forwardWord();
void backwardWord();
Range wordRange(int pos);
bool isPosInSelection(int pos);
void showEditPopupMenu(const gfx::Point& pt);
void recalcCharBoxes(const std::string& text);
bool shouldStartTimer(const bool hasFocus);
void deleteRange(const Range& range, std::string& text);
void startTimer();
void stopTimer();
class CalcBoxesTextDelegate;
struct CharBox {
int codepoint;
int from, to;
int width;
CharBox() { codepoint = from = to = width = 0; }
};
using CharBoxes = std::vector<CharBox>;
CharBoxes m_boxes;
int m_maxsize;
int m_caret;
int m_scroll;
int m_select;
bool m_hidden : 1;
bool m_state : 1; // show or not the text caret
bool m_readonly : 1;
bool m_recent_focused : 1;
bool m_lock_selection : 1;
bool m_translate_dead_keys : 1;
Range m_selecting_words;
std::unique_ptr<std::string> m_suffix;
};
} // namespace ui
#endif