mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-13 10:13:47 +00:00
245 lines
5.8 KiB
C++
245 lines
5.8 KiB
C++
// Aseprite UI Library
|
|
// Copyright (C) 2019-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.
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "ui/int_entry.h"
|
|
|
|
#include "base/scoped_value.h"
|
|
#include "gfx/rect.h"
|
|
#include "gfx/region.h"
|
|
#include "os/font.h"
|
|
#include "ui/fit_bounds.h"
|
|
#include "ui/manager.h"
|
|
#include "ui/message.h"
|
|
#include "ui/popup_window.h"
|
|
#include "ui/scale.h"
|
|
#include "ui/size_hint_event.h"
|
|
#include "ui/slider.h"
|
|
#include "ui/system.h"
|
|
#include "ui/theme.h"
|
|
|
|
#include <algorithm>
|
|
#include <cmath>
|
|
|
|
namespace ui {
|
|
|
|
using namespace gfx;
|
|
|
|
IntEntry::IntEntry(int min, int max, SliderDelegate* sliderDelegate)
|
|
: Entry(int(std::floor(std::log10(double(max))))+1, "")
|
|
, m_min(min)
|
|
, m_max(max)
|
|
, m_slider(m_min, m_max, m_min, sliderDelegate)
|
|
, m_popupWindow(nullptr)
|
|
, m_changeFromSlider(false)
|
|
{
|
|
m_slider.setFocusStop(false); // In this way the IntEntry doesn't lost the focus
|
|
m_slider.setTransparent(true);
|
|
m_slider.Change.connect(&IntEntry::onChangeSlider, this);
|
|
initTheme();
|
|
}
|
|
|
|
IntEntry::~IntEntry()
|
|
{
|
|
closePopup();
|
|
}
|
|
|
|
int IntEntry::getValue() const
|
|
{
|
|
int value = m_slider.convertTextToValue(text());
|
|
return std::clamp(value, m_min, m_max);
|
|
}
|
|
|
|
void IntEntry::setValue(int value)
|
|
{
|
|
value = std::clamp(value, m_min, m_max);
|
|
|
|
setText(m_slider.convertValueToText(value));
|
|
|
|
if (m_popupWindow && !m_changeFromSlider)
|
|
m_slider.setValue(value);
|
|
|
|
onValueChange();
|
|
}
|
|
|
|
bool IntEntry::onProcessMessage(Message* msg)
|
|
{
|
|
switch (msg->type()) {
|
|
|
|
// Reset value if it's out of bounds when focus is lost
|
|
case kFocusLeaveMessage:
|
|
setValue(std::clamp(getValue(), m_min, m_max));
|
|
deselectText();
|
|
break;
|
|
|
|
case kMouseDownMessage:
|
|
requestFocus();
|
|
captureMouse();
|
|
|
|
openPopup();
|
|
selectAllText();
|
|
return true;
|
|
|
|
case kMouseMoveMessage:
|
|
if (hasCapture()) {
|
|
MouseMessage* mouseMsg = static_cast<MouseMessage*>(msg);
|
|
Widget* pick = manager()->pickFromScreenPos(
|
|
display()->nativeWindow()->pointToScreen(mouseMsg->position()));
|
|
if (pick == &m_slider) {
|
|
releaseMouse();
|
|
|
|
MouseMessage mouseMsg2(kMouseDownMessage,
|
|
*mouseMsg,
|
|
mouseMsg->positionForDisplay(pick->display()));
|
|
mouseMsg2.setDisplay(pick->display());
|
|
pick->sendMessage(&mouseMsg2);
|
|
}
|
|
}
|
|
break;
|
|
|
|
case kMouseWheelMessage:
|
|
if (isEnabled()) {
|
|
int oldValue = getValue();
|
|
int newValue = oldValue
|
|
+ static_cast<MouseMessage*>(msg)->wheelDelta().x
|
|
- static_cast<MouseMessage*>(msg)->wheelDelta().y;
|
|
newValue = std::clamp(newValue, m_min, m_max);
|
|
if (newValue != oldValue) {
|
|
setValue(newValue);
|
|
selectAllText();
|
|
}
|
|
return true;
|
|
}
|
|
break;
|
|
|
|
case kKeyDownMessage:
|
|
if (hasFocus() && !isReadOnly()) {
|
|
KeyMessage* keymsg = static_cast<KeyMessage*>(msg);
|
|
int chr = keymsg->unicodeChar();
|
|
if (chr >= 32 && (chr < '0' || chr > '9')) {
|
|
// "Eat" all keys that aren't number
|
|
return true;
|
|
}
|
|
// Else we use the default Entry processing function which
|
|
// will process keys like Left/Right arrows, clipboard
|
|
// handling, etc.
|
|
}
|
|
break;
|
|
}
|
|
return Entry::onProcessMessage(msg);
|
|
}
|
|
|
|
void IntEntry::onInitTheme(InitThemeEvent& ev)
|
|
{
|
|
Entry::onInitTheme(ev);
|
|
m_slider.initTheme(); // The slider might not be in the popup window
|
|
if (m_popupWindow)
|
|
m_popupWindow->initTheme();
|
|
}
|
|
|
|
void IntEntry::onSizeHint(SizeHintEvent& ev)
|
|
{
|
|
int trailing = font()->textLength(getSuffix());
|
|
trailing = std::max(trailing, 2*theme()->getEntryCaretSize(this).w);
|
|
|
|
int min_w = font()->textLength(m_slider.convertValueToText(m_min));
|
|
int max_w = font()->textLength(m_slider.convertValueToText(m_max)) + trailing;
|
|
|
|
int w = std::max(min_w, max_w);
|
|
int h = textHeight();
|
|
|
|
w += border().width();
|
|
h += border().height();
|
|
|
|
ev.setSizeHint(w, h);
|
|
}
|
|
|
|
void IntEntry::onChange()
|
|
{
|
|
Entry::onChange();
|
|
onValueChange();
|
|
}
|
|
|
|
void IntEntry::onValueChange()
|
|
{
|
|
// Do nothing
|
|
}
|
|
|
|
void IntEntry::openPopup()
|
|
{
|
|
m_slider.setValue(getValue());
|
|
|
|
m_popupWindow = std::make_unique<TransparentPopupWindow>(PopupWindow::ClickBehavior::CloseOnClickInOtherWindow);
|
|
m_popupWindow->setAutoRemap(false);
|
|
m_popupWindow->addChild(&m_slider);
|
|
m_popupWindow->Close.connect(&IntEntry::onPopupClose, this);
|
|
|
|
fit_bounds(
|
|
display(),
|
|
m_popupWindow.get(),
|
|
gfx::Rect(0, 0, 128*guiscale(), m_popupWindow->sizeHint().h),
|
|
[this](const gfx::Rect& workarea,
|
|
gfx::Rect& rc,
|
|
std::function<gfx::Rect(Widget*)> getWidgetBounds) {
|
|
Rect entryBounds = getWidgetBounds(this);
|
|
|
|
rc.x = entryBounds.x;
|
|
rc.y = entryBounds.y2();
|
|
|
|
if (rc.x2() > workarea.x2())
|
|
rc.x = rc.x-rc.w+entryBounds.w;
|
|
|
|
if (rc.y2() > workarea.y2())
|
|
rc.y = entryBounds.y-entryBounds.h;
|
|
|
|
m_popupWindow->setBounds(rc);
|
|
});
|
|
|
|
Region rgn(m_popupWindow->boundsOnScreen().createUnion(boundsOnScreen()));
|
|
m_popupWindow->setHotRegion(rgn);
|
|
|
|
m_popupWindow->openWindow();
|
|
}
|
|
|
|
void IntEntry::closePopup()
|
|
{
|
|
if (m_popupWindow) {
|
|
removeSlider();
|
|
|
|
m_popupWindow->closeWindow(nullptr);
|
|
m_popupWindow.reset();
|
|
}
|
|
}
|
|
|
|
void IntEntry::onChangeSlider()
|
|
{
|
|
base::ScopedValue<bool> lockFlag(m_changeFromSlider, true, false);
|
|
setValue(m_slider.getValue());
|
|
selectAllText();
|
|
}
|
|
|
|
void IntEntry::onPopupClose(CloseEvent& ev)
|
|
{
|
|
removeSlider();
|
|
|
|
deselectText();
|
|
releaseFocus();
|
|
}
|
|
|
|
void IntEntry::removeSlider()
|
|
{
|
|
if (m_popupWindow &&
|
|
m_slider.parent() == m_popupWindow.get()) {
|
|
m_popupWindow->removeChild(&m_slider);
|
|
}
|
|
}
|
|
|
|
} // namespace ui
|