mirror of https://github.com/aseprite/aseprite.git
241 lines
5.4 KiB
C++
241 lines
5.4 KiB
C++
// Aseprite UI Library
|
|
// Copyright (C) 2001-2013 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 "base/unique_ptr.h"
|
|
#include "gfx/size.h"
|
|
#include "ui/graphics.h"
|
|
#include "ui/intern.h"
|
|
#include "ui/paint_event.h"
|
|
#include "ui/preferred_size_event.h"
|
|
#include "ui/ui.h"
|
|
|
|
#include <string>
|
|
|
|
static const int kTooltipDelayMsecs = 300;
|
|
|
|
namespace ui {
|
|
|
|
using namespace gfx;
|
|
|
|
TooltipManager::TooltipManager()
|
|
: Widget(kGenericWidget)
|
|
{
|
|
Manager* manager = Manager::getDefault();
|
|
manager->addMessageFilter(kMouseEnterMessage, this);
|
|
manager->addMessageFilter(kKeyDownMessage, this);
|
|
manager->addMessageFilter(kMouseDownMessage, this);
|
|
manager->addMessageFilter(kMouseLeaveMessage, this);
|
|
|
|
setVisible(false);
|
|
}
|
|
|
|
TooltipManager::~TooltipManager()
|
|
{
|
|
Manager* manager = Manager::getDefault();
|
|
manager->removeMessageFilterFor(this);
|
|
}
|
|
|
|
void TooltipManager::addTooltipFor(Widget* widget, const std::string& text, int arrowAlign)
|
|
{
|
|
m_tips[widget] = TipInfo(text, arrowAlign);
|
|
}
|
|
|
|
bool TooltipManager::onProcessMessage(Message* msg)
|
|
{
|
|
switch (msg->type()) {
|
|
|
|
case kMouseEnterMessage: {
|
|
UI_FOREACH_WIDGET(msg->recipients(), itWidget) {
|
|
Tips::iterator it = m_tips.find(*itWidget);
|
|
if (it != m_tips.end()) {
|
|
m_target.widget = it->first;
|
|
m_target.tipInfo = it->second;
|
|
|
|
if (m_timer == NULL) {
|
|
m_timer.reset(new Timer(kTooltipDelayMsecs, this));
|
|
m_timer->Tick.connect(&TooltipManager::onTick, this);
|
|
}
|
|
|
|
m_timer->start();
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
case kKeyDownMessage:
|
|
case kMouseDownMessage:
|
|
case kMouseLeaveMessage:
|
|
if (m_tipWindow) {
|
|
m_tipWindow->closeWindow(NULL);
|
|
m_tipWindow.reset();
|
|
}
|
|
|
|
if (m_timer)
|
|
m_timer->stop();
|
|
|
|
return false;
|
|
}
|
|
|
|
return Widget::onProcessMessage(msg);
|
|
}
|
|
|
|
void TooltipManager::onTick()
|
|
{
|
|
if (!m_tipWindow) {
|
|
m_tipWindow.reset(new TipWindow(m_target.tipInfo.text.c_str()));
|
|
gfx::Rect bounds = m_target.widget->getBounds();
|
|
int x = jmouse_x(0)+12*jguiscale();
|
|
int y = jmouse_y(0)+12*jguiscale();
|
|
int w, h;
|
|
|
|
m_tipWindow->setArrowAlign(m_target.tipInfo.arrowAlign);
|
|
m_tipWindow->remapWindow();
|
|
|
|
w = m_tipWindow->getBounds().w;
|
|
h = m_tipWindow->getBounds().h;
|
|
|
|
switch (m_target.tipInfo.arrowAlign) {
|
|
case JI_TOP | JI_LEFT:
|
|
x = bounds.x + bounds.w;
|
|
y = bounds.y + bounds.h;
|
|
break;
|
|
case JI_TOP | JI_RIGHT:
|
|
x = bounds.x - w;
|
|
y = bounds.y + bounds.h;
|
|
break;
|
|
case JI_BOTTOM | JI_LEFT:
|
|
x = bounds.x + bounds.w;
|
|
y = bounds.y - h;
|
|
break;
|
|
case JI_BOTTOM | JI_RIGHT:
|
|
x = bounds.x - w;
|
|
y = bounds.y - h;
|
|
break;
|
|
case JI_TOP:
|
|
x = bounds.x + bounds.w/2 - w/2;
|
|
y = bounds.y + bounds.h;
|
|
break;
|
|
case JI_BOTTOM:
|
|
x = bounds.x + bounds.w/2 - w/2;
|
|
y = bounds.y - h;
|
|
break;
|
|
case JI_LEFT:
|
|
x = bounds.x + bounds.w;
|
|
y = bounds.y + bounds.h/2 - h/2;
|
|
break;
|
|
case JI_RIGHT:
|
|
x = bounds.x - w;
|
|
y = bounds.y + bounds.h/2 - h/2;
|
|
break;
|
|
}
|
|
|
|
// if (x+w > JI_SCREEN_W) {
|
|
// x = jmouse_x(0) - w - 4*jguiscale();
|
|
// y = jmouse_y(0);
|
|
// }
|
|
|
|
m_tipWindow->positionWindow(MID(0, x, JI_SCREEN_W-w),
|
|
MID(0, y, JI_SCREEN_H-h));
|
|
m_tipWindow->openWindow();
|
|
}
|
|
m_timer->stop();
|
|
}
|
|
|
|
// TipWindow
|
|
|
|
TipWindow::TipWindow(const char *text)
|
|
: PopupWindow(text, kCloseOnClickInOtherWindow)
|
|
, m_arrowAlign(0)
|
|
{
|
|
setTransparent(true);
|
|
|
|
makeFixed();
|
|
initTheme();
|
|
}
|
|
|
|
TipWindow::~TipWindow()
|
|
{
|
|
}
|
|
|
|
int TipWindow::getArrowAlign() const
|
|
{
|
|
return m_arrowAlign;
|
|
}
|
|
|
|
void TipWindow::setArrowAlign(int arrowAlign)
|
|
{
|
|
m_arrowAlign = arrowAlign;
|
|
}
|
|
|
|
bool TipWindow::onProcessMessage(Message* msg)
|
|
{
|
|
switch (msg->type()) {
|
|
|
|
case kKeyDownMessage:
|
|
if (static_cast<KeyMessage*>(msg)->scancode() < kKeyFirstModifierScancode)
|
|
closeWindow(NULL);
|
|
break;
|
|
|
|
}
|
|
|
|
return PopupWindow::onProcessMessage(msg);
|
|
}
|
|
|
|
void TipWindow::onPreferredSize(PreferredSizeEvent& ev)
|
|
{
|
|
ScreenGraphics g;
|
|
g.setFont(getFont());
|
|
Size resultSize = g.fitString(getText(),
|
|
(getClientBounds() - getBorder()).w,
|
|
getAlign());
|
|
|
|
resultSize.w += this->border_width.l + this->border_width.r;
|
|
resultSize.h += this->border_width.t + this->border_width.b;
|
|
|
|
if (!getChildren().empty()) {
|
|
Size maxSize(0, 0);
|
|
Size reqSize;
|
|
|
|
UI_FOREACH_WIDGET(getChildren(), it) {
|
|
Widget* child = *it;
|
|
|
|
reqSize = child->getPreferredSize();
|
|
|
|
maxSize.w = MAX(maxSize.w, reqSize.w);
|
|
maxSize.h = MAX(maxSize.h, reqSize.h);
|
|
}
|
|
|
|
resultSize.w = MAX(resultSize.w, border_width.l + maxSize.w + border_width.r);
|
|
resultSize.h += maxSize.h;
|
|
}
|
|
|
|
ev.setPreferredSize(resultSize);
|
|
}
|
|
|
|
void TipWindow::onInitTheme(InitThemeEvent& ev)
|
|
{
|
|
Window::onInitTheme(ev);
|
|
|
|
this->border_width.l = 6 * jguiscale();
|
|
this->border_width.t = 6 * jguiscale();
|
|
this->border_width.r = 6 * jguiscale();
|
|
this->border_width.b = 7 * jguiscale();
|
|
|
|
// Setup the background color.
|
|
setBgColor(gfx::rgba(255, 255, 200));
|
|
}
|
|
|
|
void TipWindow::onPaint(PaintEvent& ev)
|
|
{
|
|
getTheme()->paintTooltip(ev);
|
|
}
|
|
|
|
} // namespace ui
|