aseprite/src/ui/entry.cpp

889 lines
20 KiB
C++
Raw Normal View History

// Aseprite UI Library
// Copyright (C) 2018 Igara Studio S.A.
// Copyright (C) 2001-2018 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
2007-09-19 07:57:02 +08:00
#ifdef HAVE_CONFIG_H
2009-07-13 04:29:16 +08:00
#include "config.h"
#endif
2009-07-13 04:29:16 +08:00
2013-03-31 00:11:49 +08:00
#include "ui/entry.h"
2007-09-19 07:57:02 +08:00
#include "base/bind.h"
#include "base/string.h"
2018-08-09 23:58:43 +08:00
#include "os/draw_text.h"
#include "os/font.h"
#include "os/system.h"
2012-06-18 09:49:58 +08:00
#include "ui/manager.h"
#include "ui/menu.h"
2012-06-18 09:49:58 +08:00
#include "ui/message.h"
#include "ui/scale.h"
2015-12-04 08:50:05 +08:00
#include "ui/size_hint_event.h"
2012-06-18 09:49:58 +08:00
#include "ui/system.h"
#include "ui/theme.h"
#include "ui/widget.h"
2007-09-19 07:57:02 +08:00
#include <algorithm>
#include <cctype>
#include <cstdarg>
#include <cstdio>
2007-09-19 07:57:02 +08:00
namespace ui {
Entry::Entry(const int maxsize, const char* format, ...)
: Widget(kEntryWidget)
, m_timer(500, this)
, m_maxsize(maxsize)
, m_caret(0)
, m_scroll(0)
, m_select(0)
, m_hidden(false)
, m_state(false)
, m_readonly(false)
, m_recent_focused(false)
, m_lock_selection(false)
, m_translate_dead_keys(true)
2007-09-19 07:57:02 +08:00
{
enableFlags(CTRL_RIGHT_CLICK);
2007-09-19 07:57:02 +08:00
// formatted string
char buf[4096]; // TODO buffer overflow
2007-09-19 07:57:02 +08:00
if (format) {
va_list ap;
va_start(ap, format);
vsprintf(buf, format, ap);
va_end(ap);
2007-09-19 07:57:02 +08:00
}
// empty string
2007-09-19 07:57:02 +08:00
else {
buf[0] = 0;
2007-09-19 07:57:02 +08:00
}
// TODO support for text alignment and multi-line
// widget->align = LEFT | MIDDLE;
2010-12-09 01:28:13 +08:00
setText(buf);
2007-09-19 07:57:02 +08:00
setFocusStop(true);
initTheme();
2007-09-19 07:57:02 +08:00
}
2010-12-09 01:28:13 +08:00
Entry::~Entry()
2007-09-19 07:57:02 +08:00
{
}
void Entry::setMaxTextLength(const int maxsize)
{
m_maxsize = maxsize;
}
2010-12-09 01:28:13 +08:00
bool Entry::isReadOnly() const
2007-09-19 07:57:02 +08:00
{
2010-12-09 01:28:13 +08:00
return m_readonly;
2007-09-19 07:57:02 +08:00
}
2010-12-09 01:28:13 +08:00
void Entry::setReadOnly(bool state)
2007-09-19 07:57:02 +08:00
{
2010-12-09 01:28:13 +08:00
m_readonly = state;
2007-09-19 07:57:02 +08:00
}
2010-12-09 01:28:13 +08:00
void Entry::showCaret()
2007-09-19 07:57:02 +08:00
{
2010-12-09 01:28:13 +08:00
m_hidden = false;
invalidate();
2010-12-09 01:28:13 +08:00
}
2007-09-19 07:57:02 +08:00
2010-12-09 01:28:13 +08:00
void Entry::hideCaret()
{
m_hidden = true;
invalidate();
2007-09-19 07:57:02 +08:00
}
int Entry::lastCaretPos() const
{
return int(m_boxes.size()-1);
}
2010-12-09 01:28:13 +08:00
void Entry::setCaretPos(int pos)
2007-09-19 07:57:02 +08:00
{
gfx::Size caretSize = theme()->getEntryCaretSize(this);
int textlen = lastCaretPos();
m_caret = MID(0, pos, textlen);
m_scroll = MID(0, m_scroll, textlen);
2007-09-19 07:57:02 +08:00
// Backward scroll
if (m_caret < m_scroll)
2010-12-09 01:28:13 +08:00
m_scroll = m_caret;
// Forward scroll
else if (m_caret > m_scroll) {
int xLimit = bounds().x2() - border().right();
while (m_caret > m_scroll) {
int segmentWidth = 0;
for (int j=m_scroll; j<m_caret; ++j)
segmentWidth += m_boxes[j].width;
int x = bounds().x + border().left() + segmentWidth + caretSize.w;
if (x < xLimit)
2007-09-19 07:57:02 +08:00
break;
else
++m_scroll;
2007-09-19 07:57:02 +08:00
}
}
2007-09-19 07:57:02 +08:00
m_timer.start();
2010-12-09 01:28:13 +08:00
m_state = true;
2007-09-19 07:57:02 +08:00
invalidate();
2007-09-19 07:57:02 +08:00
}
void Entry::setCaretToEnd()
{
int end = lastCaretPos();
selectText(end, end);
}
2010-12-09 01:28:13 +08:00
void Entry::selectText(int from, int to)
2007-09-19 07:57:02 +08:00
{
int end = lastCaretPos();
2007-09-19 07:57:02 +08:00
2010-12-09 01:28:13 +08:00
m_select = from;
setCaretPos(from); // to move scroll
setCaretPos((to >= 0)? to: end+to+1);
2007-09-19 07:57:02 +08:00
invalidate();
2007-09-19 07:57:02 +08:00
}
void Entry::selectAllText()
{
selectText(0, -1);
}
2010-12-09 01:28:13 +08:00
void Entry::deselectText()
2007-09-19 07:57:02 +08:00
{
2010-12-09 01:28:13 +08:00
m_select = -1;
invalidate();
2007-09-19 07:57:02 +08:00
}
std::string Entry::selectedText() const
{
int selbeg, selend;
getEntryThemeInfo(nullptr, nullptr, nullptr, &selbeg, &selend);
if (selbeg >= 0 && selend >= 0) {
ASSERT(selbeg < int(m_boxes.size()));
ASSERT(selend < int(m_boxes.size()));
return text().substr(m_boxes[selbeg].from,
m_boxes[selend].to - m_boxes[selbeg].from);
}
else
return std::string();
}
2013-03-30 03:20:32 +08:00
void Entry::setSuffix(const std::string& suffix)
{
m_suffix = suffix;
invalidate();
}
void Entry::setTranslateDeadKeys(bool state)
{
m_translate_dead_keys = state;
}
2010-12-09 01:28:13 +08:00
void Entry::getEntryThemeInfo(int* scroll, int* caret, int* state,
int* selbeg, int* selend) const
2007-09-19 07:57:02 +08:00
{
2010-12-09 01:28:13 +08:00
if (scroll) *scroll = m_scroll;
if (caret) *caret = m_caret;
if (state) *state = !m_hidden && m_state;
if ((m_select >= 0) &&
(m_caret != m_select)) {
*selbeg = MIN(m_caret, m_select);
*selend = MAX(m_caret, m_select)-1;
2007-09-19 07:57:02 +08:00
}
else {
*selbeg = -1;
*selend = -1;
}
}
gfx::Rect Entry::getEntryTextBounds() const
{
return onGetEntryTextBounds();
}
bool Entry::onProcessMessage(Message* msg)
2007-09-19 07:57:02 +08:00
{
switch (msg->type()) {
2007-09-19 07:57:02 +08:00
case kTimerMessage:
if (hasFocus() && static_cast<TimerMessage*>(msg)->timer() == &m_timer) {
// Blinking caret
m_state = m_state ? false: true;
invalidate();
2007-09-19 07:57:02 +08:00
}
break;
case kFocusEnterMessage:
m_timer.start();
2010-12-09 01:28:13 +08:00
m_state = true;
invalidate();
2007-09-19 07:57:02 +08:00
if (m_lock_selection) {
m_lock_selection = false;
}
else {
selectAllText();
m_recent_focused = true;
}
// Start processing dead keys
if (m_translate_dead_keys)
2018-08-09 23:58:43 +08:00
os::instance()->setTranslateDeadKeys(true);
2007-09-19 07:57:02 +08:00
break;
case kFocusLeaveMessage:
invalidate();
2007-09-19 07:57:02 +08:00
m_timer.stop();
if (!m_lock_selection)
deselectText();
2010-12-09 01:28:13 +08:00
m_recent_focused = false;
// Stop processing dead keys
if (m_translate_dead_keys)
2018-08-09 23:58:43 +08:00
os::instance()->setTranslateDeadKeys(false);
2007-09-19 07:57:02 +08:00
break;
case kKeyDownMessage:
if (hasFocus() && !isReadOnly()) {
// Command to execute
EntryCmd cmd = EntryCmd::NoOp;
KeyMessage* keymsg = static_cast<KeyMessage*>(msg);
KeyScancode scancode = keymsg->scancode();
switch (scancode) {
case kKeyLeft:
2015-05-11 23:12:13 +08:00
if (msg->ctrlPressed() || msg->altPressed())
cmd = EntryCmd::BackwardWord;
2015-05-11 23:12:13 +08:00
else if (msg->cmdPressed())
cmd = EntryCmd::BeginningOfLine;
else
cmd = EntryCmd::BackwardChar;
break;
case kKeyRight:
2015-05-11 23:12:13 +08:00
if (msg->ctrlPressed() || msg->altPressed())
cmd = EntryCmd::ForwardWord;
2015-05-11 23:12:13 +08:00
else if (msg->cmdPressed())
cmd = EntryCmd::EndOfLine;
else
cmd = EntryCmd::ForwardChar;
break;
case kKeyHome:
cmd = EntryCmd::BeginningOfLine;
break;
case kKeyEnd:
cmd = EntryCmd::EndOfLine;
break;
case kKeyDel:
if (msg->shiftPressed())
cmd = EntryCmd::Cut;
else if (msg->ctrlPressed())
cmd = EntryCmd::DeleteForwardToEndOfLine;
else
cmd = EntryCmd::DeleteForward;
break;
case kKeyInsert:
if (msg->shiftPressed())
cmd = EntryCmd::Paste;
else if (msg->ctrlPressed())
cmd = EntryCmd::Copy;
break;
case kKeyBackspace:
if (msg->ctrlPressed())
cmd = EntryCmd::DeleteBackwardWord;
else
cmd = EntryCmd::DeleteBackward;
break;
default:
// Map common macOS/Windows shortcuts for Cut/Copy/Paste/Select all
#if defined __APPLE__
if (msg->onlyCmdPressed())
#else
if (msg->onlyCtrlPressed())
#endif
{
switch (scancode) {
case kKeyX: cmd = EntryCmd::Cut; break;
case kKeyC: cmd = EntryCmd::Copy; break;
case kKeyV: cmd = EntryCmd::Paste; break;
case kKeyA: cmd = EntryCmd::SelectAll; break;
}
}
break;
}
if (cmd == EntryCmd::NoOp) {
if (keymsg->unicodeChar() >= 32) {
executeCmd(EntryCmd::InsertChar, keymsg->unicodeChar(),
(msg->shiftPressed()) ? true: false);
// Select dead-key
if (keymsg->isDeadKey()) {
if (lastCaretPos() < m_maxsize)
selectText(m_caret-1, m_caret);
}
return true;
}
// Consume all key down of modifiers only, e.g. so the user
// can press first "Ctrl" key, and then "Ctrl+C"
// combination.
else if (keymsg->scancode() >= kKeyFirstModifierScancode) {
return true;
}
else {
break; // Propagate to manager
}
}
executeCmd(cmd, keymsg->unicodeChar(),
(msg->shiftPressed()) ? true: false);
return true;
2007-09-19 07:57:02 +08:00
}
break;
case kMouseDownMessage:
captureMouse();
2007-09-19 07:57:02 +08:00
case kMouseMoveMessage:
if (hasCapture()) {
bool is_dirty = false;
int c = getCaretFromMouse(static_cast<MouseMessage*>(msg));
if (static_cast<MouseMessage*>(msg)->left() || !isPosInSelection(c)) {
// Move caret
if (m_caret != c) {
setCaretPos(c);
is_dirty = true;
invalidate();
}
// Move selection
if (m_recent_focused) {
m_recent_focused = false;
m_select = m_caret;
}
else if (msg->type() == kMouseDownMessage)
m_select = m_caret;
}
// Show the caret
if (is_dirty) {
m_timer.start();
m_state = true;
}
return true;
2007-09-19 07:57:02 +08:00
}
break;
case kMouseUpMessage:
if (hasCapture()) {
releaseMouse();
MouseMessage* mouseMsg = static_cast<MouseMessage*>(msg);
if (mouseMsg->right()) {
// This flag is disabled in kFocusEnterMessage message handler.
m_lock_selection = true;
showEditPopupMenu(mouseMsg->position());
requestFocus();
}
}
return true;
2007-09-19 07:57:02 +08:00
case kDoubleClickMessage:
2010-12-09 01:28:13 +08:00
forwardWord();
m_select = m_caret;
backwardWord();
invalidate();
return true;
2007-09-19 07:57:02 +08:00
case kMouseEnterMessage:
case kMouseLeaveMessage:
// TODO theme stuff
if (isEnabled())
invalidate();
2007-09-19 07:57:02 +08:00
break;
}
2010-12-09 01:28:13 +08:00
return Widget::onProcessMessage(msg);
2007-09-19 07:57:02 +08:00
}
// static
gfx::Size Entry::sizeHintWithText(Entry* entry,
const std::string& text)
{
int w =
entry->font()->textLength(text) +
+ 2*entry->theme()->getEntryCaretSize(entry).w
+ entry->border().width();
w = std::min(w, ui::display_w()/2);
int h =
+ entry->font()->height()
+ entry->border().height();
return gfx::Size(w, h);
}
2015-12-04 08:50:05 +08:00
void Entry::onSizeHint(SizeHintEvent& ev)
2007-09-19 07:57:02 +08:00
{
int trailing = font()->textLength(getSuffix());
trailing = MAX(trailing, 2*theme()->getEntryCaretSize(this).w);
2010-12-09 01:28:13 +08:00
int w =
font()->textLength("w") * std::min(m_maxsize, 6) +
+ trailing
+ border().width();
w = std::min(w, ui::display_w()/2);
2007-09-19 07:57:02 +08:00
int h =
+ font()->height()
+ border().height();
2007-09-19 07:57:02 +08:00
2015-12-04 08:50:05 +08:00
ev.setSizeHint(w, h);
2010-12-09 01:28:13 +08:00
}
void Entry::onPaint(PaintEvent& ev)
{
theme()->paintEntry(ev);
}
void Entry::onSetText()
{
Widget::onSetText();
recalcCharBoxes(text());
int textlen = lastCaretPos();
if (m_caret >= 0 && m_caret > textlen)
m_caret = textlen;
}
void Entry::onChange()
2010-12-09 01:28:13 +08:00
{
Change();
2007-09-19 07:57:02 +08:00
}
gfx::Rect Entry::onGetEntryTextBounds() const
{
gfx::Rect bounds = clientBounds();
bounds.x += border().left();
bounds.y += bounds.h/2 - textHeight()/2;
bounds.w -= border().width();
bounds.h = textHeight();
return bounds;
}
int Entry::getCaretFromMouse(MouseMessage* mousemsg)
2007-09-19 07:57:02 +08:00
{
int mouseX = mousemsg->position().x;
if (mouseX < bounds().x+border().left()) {
// Scroll to the left
return MAX(0, m_scroll-1);
2007-09-19 07:57:02 +08:00
}
int lastPos = lastCaretPos();
int i = MIN(m_scroll, lastPos);
for (; i<lastPos; ++i) {
int segmentWidth = 0;
for (int j=m_scroll; j<i; ++j)
segmentWidth += m_boxes[j].width;
int x = bounds().x + border().left() + segmentWidth;
if (mouseX > bounds().x2() - border().right()) {
if (x >= bounds().x2() - border().right()) {
// Scroll to the right
break;
}
}
else {
if (x > mouseX) {
// Previous char is the selected one
if (i > m_scroll)
--i;
break;
}
}
}
2007-09-19 07:57:02 +08:00
return MID(0, i, lastPos);
2007-09-19 07:57:02 +08:00
}
void Entry::executeCmd(EntryCmd cmd, int unicodeChar, bool shift_pressed)
{
std::string text = this->text();
2017-03-07 22:06:58 +08:00
int selbeg, selend;
2010-12-09 01:28:13 +08:00
getEntryThemeInfo(NULL, NULL, NULL, &selbeg, &selend);
switch (cmd) {
case EntryCmd::NoOp:
break;
case EntryCmd::InsertChar:
// delete the entire selection
if (selbeg >= 0) {
text.erase(m_boxes[selbeg].from,
m_boxes[selend].to - m_boxes[selbeg].from);
m_caret = selbeg;
// We set the caret to the beginning of the erased selection,
// needed to show the first inserted character in case
// m_scroll > m_caret. E.g. we select all text and insert a
// new character to replace the whole text, the new inserted
// character makes m_caret=1, so m_scroll will be 1 too, but
// we need to make m_scroll=0 to show the new inserted char.)
// In this way, we first ensure a m_scroll value enough to
// show the new inserted character.
recalcCharBoxes(text);
setCaretPos(m_caret);
}
// Convert the unicode character -> wstring -> utf-8 string -> insert the utf-8 string
if (lastCaretPos() < m_maxsize) {
ASSERT(m_caret <= lastCaretPos());
std::wstring unicodeStr;
unicodeStr.push_back(unicodeChar);
text.insert(m_boxes[m_caret].from,
base::to_utf8(unicodeStr));
recalcCharBoxes(text);
++m_caret;
}
2010-12-09 01:28:13 +08:00
m_select = -1;
break;
case EntryCmd::BackwardChar:
case EntryCmd::BackwardWord:
// selection
if (shift_pressed) {
if (m_select < 0)
m_select = m_caret;
}
else
m_select = -1;
// backward word
if (cmd == EntryCmd::BackwardWord) {
backwardWord();
}
// backward char
2010-12-09 01:28:13 +08:00
else if (m_caret > 0) {
m_caret--;
}
break;
case EntryCmd::ForwardChar:
case EntryCmd::ForwardWord:
// selection
if (shift_pressed) {
if (m_select < 0)
m_select = m_caret;
}
else
m_select = -1;
// forward word
if (cmd == EntryCmd::ForwardWord) {
forwardWord();
}
// forward char
2010-12-09 01:28:13 +08:00
else if (m_caret < (int)text.size()) {
m_caret++;
}
break;
case EntryCmd::BeginningOfLine:
// selection
if (shift_pressed) {
if (m_select < 0)
m_select = m_caret;
}
else
m_select = -1;
2010-12-09 01:28:13 +08:00
m_caret = 0;
break;
case EntryCmd::EndOfLine:
// selection
if (shift_pressed) {
if (m_select < 0)
m_select = m_caret;
}
else
m_select = -1;
m_caret = lastCaretPos();
break;
case EntryCmd::DeleteForward:
case EntryCmd::Cut:
// delete the entire selection
if (selbeg >= 0) {
// *cut* text!
if (cmd == EntryCmd::Cut)
set_clipboard_text(selectedText());
// remove text
text.erase(m_boxes[selbeg].from,
m_boxes[selend].to - m_boxes[selbeg].from);
m_caret = selbeg;
}
// delete the next character
else {
if (m_caret < (int)text.size())
text.erase(m_boxes[m_caret].from,
m_boxes[m_caret].to - m_boxes[m_caret].from);
}
2010-12-09 01:28:13 +08:00
m_select = -1;
break;
case EntryCmd::Paste: {
std::string clipboard;
if (get_clipboard_text(clipboard)) {
// delete the entire selection
if (selbeg >= 0) {
text.erase(m_boxes[selbeg].from,
m_boxes[selend].to - m_boxes[selbeg].from);
m_caret = selbeg;
m_select = -1;
}
// Paste text
recalcCharBoxes(text);
int oldBoxes = m_boxes.size();
text.insert(m_boxes[m_caret].from, clipboard);
// Remove extra chars that do not fit in m_maxsize
recalcCharBoxes(text);
if (lastCaretPos() > m_maxsize) {
text.erase(m_boxes[m_maxsize].from,
text.size() - m_boxes[m_maxsize].from);
recalcCharBoxes(text);
}
int newBoxes = m_boxes.size();
setCaretPos(m_caret+(newBoxes - oldBoxes));
}
break;
}
case EntryCmd::Copy:
if (selbeg >= 0)
set_clipboard_text(selectedText());
break;
case EntryCmd::DeleteBackward:
// delete the entire selection
if (selbeg >= 0) {
text.erase(m_boxes[selbeg].from,
m_boxes[selend].to - m_boxes[selbeg].from);
m_caret = selbeg;
}
// delete the previous character
else {
if (m_caret > 0) {
--m_caret;
text.erase(m_boxes[m_caret].from,
m_boxes[m_caret].to - m_boxes[m_caret].from);
}
}
2010-12-09 01:28:13 +08:00
m_select = -1;
break;
case EntryCmd::DeleteBackwardWord:
m_select = m_caret;
backwardWord();
if (m_caret < m_select) {
text.erase(m_boxes[m_caret].from,
m_boxes[m_select].to - m_boxes[m_caret].from);
}
m_select = -1;
break;
case EntryCmd::DeleteForwardToEndOfLine:
text.erase(m_boxes[m_caret].from);
break;
case EntryCmd::SelectAll:
selectAllText();
break;
}
if (text != this->text()) {
setText(text);
onChange();
}
2010-12-09 01:28:13 +08:00
setCaretPos(m_caret);
invalidate();
}
#define IS_WORD_CHAR(ch) \
(!((!ch) || (std::isspace(ch)) || \
((ch) == '/') || ((ch) == '\\')))
2007-09-19 07:57:02 +08:00
2010-12-09 01:28:13 +08:00
void Entry::forwardWord()
2007-09-19 07:57:02 +08:00
{
int textlen = lastCaretPos();
2007-09-19 07:57:02 +08:00
int ch;
for (; m_caret < textlen; ++m_caret) {
ch = m_boxes[m_caret].codepoint;
if (IS_WORD_CHAR(ch))
2007-09-19 07:57:02 +08:00
break;
}
for (; m_caret < textlen; ++m_caret) {
ch = m_boxes[m_caret].codepoint;
if (!IS_WORD_CHAR(ch)) {
++m_caret;
2007-09-19 07:57:02 +08:00
break;
}
}
}
2010-12-09 01:28:13 +08:00
void Entry::backwardWord()
2007-09-19 07:57:02 +08:00
{
int ch;
for (--m_caret; m_caret >= 0; --m_caret) {
ch = m_boxes[m_caret].codepoint;
if (IS_WORD_CHAR(ch))
2007-09-19 07:57:02 +08:00
break;
}
for (; m_caret >= 0; --m_caret) {
ch = m_boxes[m_caret].codepoint;
if (!IS_WORD_CHAR(ch)) {
++m_caret;
2007-09-19 07:57:02 +08:00
break;
}
}
2010-12-09 01:28:13 +08:00
if (m_caret < 0)
m_caret = 0;
2007-09-19 07:57:02 +08:00
}
bool Entry::isPosInSelection(int pos)
{
return (pos >= MIN(m_caret, m_select) &&
pos <= MAX(m_caret, m_select));
}
void Entry::showEditPopupMenu(const gfx::Point& pt)
{
Menu menu;
MenuItem cut("Cut");
MenuItem copy("Copy");
MenuItem paste("Paste");
menu.addChild(&cut);
menu.addChild(&copy);
menu.addChild(&paste);
cut.Click.connect(base::Bind(&Entry::executeCmd, this, EntryCmd::Cut, 0, false));
copy.Click.connect(base::Bind(&Entry::executeCmd, this, EntryCmd::Copy, 0, false));
paste.Click.connect(base::Bind(&Entry::executeCmd, this, EntryCmd::Paste, 0, false));
if (isReadOnly()) {
cut.setEnabled(false);
paste.setEnabled(false);
}
menu.showPopup(pt);
}
2018-08-09 23:58:43 +08:00
class Entry::CalcBoxesTextDelegate : public os::DrawTextDelegate {
public:
CalcBoxesTextDelegate(const int end) : m_end(end) {
}
const Entry::CharBoxes& boxes() const { return m_boxes; }
void preProcessChar(const int index,
const int codepoint,
gfx::Color& fg, gfx::Color& bg) override {
if (!m_boxes.empty())
m_boxes.back().to = index;
m_box = CharBox();
m_box.codepoint = codepoint;
m_box.from = index;
m_box.to = m_end;
}
bool preDrawChar(const gfx::Rect& charBounds) override {
m_box.width = charBounds.w;
return true;
}
void postDrawChar(const gfx::Rect& charBounds) override {
m_boxes.push_back(m_box);
}
private:
Entry::CharBox m_box;
Entry::CharBoxes m_boxes;
int m_end;
};
void Entry::recalcCharBoxes(const std::string& text)
{
int lastTextIndex = int(text.size());
CalcBoxesTextDelegate delegate(lastTextIndex);
2018-08-09 23:58:43 +08:00
os::draw_text(nullptr, font(),
base::utf8_const_iterator(text.begin()),
base::utf8_const_iterator(text.end()),
gfx::ColorNone, gfx::ColorNone, 0, 0, &delegate);
m_boxes = delegate.boxes();
if (!m_boxes.empty()) {
m_boxes.back().to = lastTextIndex;
}
// A last box for the last position
CharBox box;
box.codepoint = 0;
box.from = box.to = lastTextIndex;
m_boxes.push_back(box);
}
} // namespace ui