forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathentry.h
More file actions
108 lines (88 loc) · 2.44 KB
/
entry.h
File metadata and controls
108 lines (88 loc) · 2.44 KB
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
// Aseprite UI Library
// Copyright (C) 2001-2016 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 isPassword() const;
bool isReadOnly() const;
void setReadOnly(bool state);
void setPassword(bool state);
void showCaret();
void hideCaret();
void setCaretPos(int pos);
void selectText(int from, int to);
void selectAllText();
void deselectText();
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);
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();
int getAvailableTextLength();
bool isPosInSelection(int pos);
void showEditPopupMenu(const gfx::Point& pt);
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_password;
bool m_recent_focused;
bool m_lock_selection;
bool m_translate_dead_keys;
std::string m_suffix;
};
} // namespace ui
#endif