2010-07-23 19:36:47 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2014-02-18 01:34:20 +00:00
|
|
|
*
|
2010-07-23 19:36:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common/util.h"
|
|
|
|
#include "gui/widget.h"
|
|
|
|
#include "gui/dialog.h"
|
2010-11-16 10:19:01 +00:00
|
|
|
#include "gui/gui-manager.h"
|
2010-07-23 19:36:47 +00:00
|
|
|
|
|
|
|
#include "gui/Tooltip.h"
|
|
|
|
#include "gui/ThemeEval.h"
|
|
|
|
|
|
|
|
namespace GUI {
|
|
|
|
|
|
|
|
|
2010-10-12 02:18:11 +00:00
|
|
|
Tooltip::Tooltip() :
|
2016-06-01 10:10:33 +00:00
|
|
|
Dialog(-1, -1, -1, -1), _maxWidth(-1), _parent(NULL), _xdelta(0), _ydelta(0) {
|
2010-07-23 19:36:47 +00:00
|
|
|
|
|
|
|
_backgroundType = GUI::ThemeEngine::kDialogBackgroundTooltip;
|
|
|
|
}
|
|
|
|
|
2010-11-18 18:17:00 +00:00
|
|
|
void Tooltip::setup(Dialog *parent, Widget *widget, int x, int y) {
|
2012-06-20 01:31:50 +00:00
|
|
|
assert(widget->hasTooltip());
|
2010-07-23 19:36:47 +00:00
|
|
|
|
2015-03-21 16:41:44 +00:00
|
|
|
_parent = parent;
|
|
|
|
|
2010-11-18 18:17:00 +00:00
|
|
|
_maxWidth = g_gui.xmlEval()->getVar("Globals.Tooltip.MaxWidth", 100);
|
|
|
|
_xdelta = g_gui.xmlEval()->getVar("Globals.Tooltip.XDelta", 0);
|
|
|
|
_ydelta = g_gui.xmlEval()->getVar("Globals.Tooltip.YDelta", 0);
|
2010-07-23 19:36:47 +00:00
|
|
|
|
|
|
|
const Graphics::Font *tooltipFont = g_gui.theme()->getFont(ThemeEngine::kFontStyleTooltip);
|
|
|
|
|
|
|
|
_wrappedLines.clear();
|
2010-11-18 18:17:00 +00:00
|
|
|
_w = tooltipFont->wordWrapText(widget->getTooltip(), _maxWidth - 4, _wrappedLines);
|
2010-07-23 19:36:47 +00:00
|
|
|
_h = (tooltipFont->getFontHeight() + 2) * _wrappedLines.size();
|
|
|
|
|
2010-11-18 18:17:00 +00:00
|
|
|
_x = MIN<int16>(parent->_x + x + _xdelta, g_gui.getWidth() - _w - 3);
|
|
|
|
_y = MIN<int16>(parent->_y + y + _ydelta, g_gui.getHeight() - _h - 3);
|
2010-07-23 19:36:47 +00:00
|
|
|
}
|
|
|
|
|
2018-01-07 09:39:22 +00:00
|
|
|
void Tooltip::drawDialog(DrawLayer layerToDraw) {
|
2010-07-23 19:36:47 +00:00
|
|
|
int num = 0;
|
|
|
|
int h = g_gui.theme()->getFontHeight(ThemeEngine::kFontStyleTooltip) + 2;
|
|
|
|
|
2018-01-07 09:39:22 +00:00
|
|
|
Dialog::drawDialog(layerToDraw);
|
2010-07-23 19:36:47 +00:00
|
|
|
|
|
|
|
for (Common::StringArray::const_iterator i = _wrappedLines.begin(); i != _wrappedLines.end(); ++i, ++num) {
|
|
|
|
g_gui.theme()->drawText(
|
2018-01-27 07:59:53 +00:00
|
|
|
Common::Rect(_x + 1, _y + 1 + num * h, _x + 1 + _w, _y + 1 + (num + 1) * h),
|
|
|
|
*i,
|
2010-10-12 02:18:11 +00:00
|
|
|
ThemeEngine::kStateEnabled,
|
|
|
|
Graphics::kTextAlignLeft,
|
|
|
|
ThemeEngine::kTextInversionNone,
|
2010-07-23 19:36:47 +00:00
|
|
|
0,
|
2010-10-12 02:18:11 +00:00
|
|
|
false,
|
|
|
|
ThemeEngine::kFontStyleTooltip,
|
|
|
|
ThemeEngine::kFontColorNormal,
|
2010-07-23 19:36:47 +00:00
|
|
|
false
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|