forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
entry.h
122 lines (98 loc) · 2.75 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
// Aseprite UI Library
// 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/timer.h"
#include "ui/widget.h"
namespace ui {
class MouseMessage;
class Entry : public Widget {
public:
Entry(const std::size_t maxsize, const char *format, ...);
~Entry();
void setMaxTextLength(const std::size_t 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;
void setSuffix(const std::string& suffix);
const std::string& getSuffix() { return m_suffix; }
void setTranslateDeadKeys(bool state);
// for themes
void getEntryThemeInfo(int* scroll, int* caret, int* state,
int* selbeg, int* selend) const;
gfx::Rect getEntryTextBounds() const;
// 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();
bool isPosInSelection(int pos);
void showEditPopupMenu(const gfx::Point& pt);
void recalcCharBoxes(const std::string& text);
class CalcBoxesTextDelegate;
struct CharBox {
int codepoint;
int from, to;
int width;
CharBox() { codepoint = from = to = width = 0; }
};
typedef std::vector<CharBox> CharBoxes;
CharBoxes m_boxes;
Timer m_timer;
std::size_t m_maxsize;
int m_caret;
int m_scroll;
int m_select;
bool m_hidden;
bool m_state; // show or not the text caret
bool m_readonly;
bool m_recent_focused;
bool m_lock_selection;
bool m_translate_dead_keys;
std::string m_suffix;
};
} // namespace ui
#endif