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.
|
|
|
|
*
|
2021-12-26 17:47:58 +00:00
|
|
|
* 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2010-07-23 19:36:47 +00:00
|
|
|
*
|
|
|
|
* 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
|
2021-12-26 17:47:58 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2014-02-18 01:34:20 +00:00
|
|
|
*
|
2010-07-23 19:36:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GUI_TOOLTIP_H
|
|
|
|
#define GUI_TOOLTIP_H
|
|
|
|
|
2011-04-24 08:34:27 +00:00
|
|
|
#include "common/keyboard.h"
|
|
|
|
#include "common/str-array.h"
|
2010-07-23 19:36:47 +00:00
|
|
|
#include "gui/dialog.h"
|
|
|
|
|
|
|
|
namespace GUI {
|
|
|
|
|
2011-04-24 08:34:27 +00:00
|
|
|
class Widget;
|
|
|
|
|
2010-07-23 19:36:47 +00:00
|
|
|
class Tooltip : public Dialog {
|
2015-03-21 16:41:44 +00:00
|
|
|
private:
|
|
|
|
Dialog *_parent;
|
|
|
|
|
2010-07-23 19:36:47 +00:00
|
|
|
public:
|
|
|
|
Tooltip();
|
2010-10-12 02:18:11 +00:00
|
|
|
|
2010-11-18 18:17:00 +00:00
|
|
|
void setup(Dialog *parent, Widget *widget, int x, int y);
|
2010-07-23 19:36:47 +00:00
|
|
|
|
2018-01-07 09:39:22 +00:00
|
|
|
void drawDialog(DrawLayer layerToDraw) override;
|
2016-04-06 14:22:02 +00:00
|
|
|
|
2020-01-05 16:48:04 +00:00
|
|
|
void receivedFocus(int x = -1, int y = -1) override {}
|
2010-07-23 19:36:47 +00:00
|
|
|
protected:
|
2020-01-05 16:48:04 +00:00
|
|
|
void handleMouseDown(int x, int y, int button, int clickCount) override {
|
2015-03-21 16:41:44 +00:00
|
|
|
close();
|
|
|
|
_parent->handleMouseDown(x + (getAbsX() - _parent->getAbsX()), y + (getAbsY() - _parent->getAbsY()), button, clickCount);
|
|
|
|
}
|
2020-01-05 16:48:04 +00:00
|
|
|
void handleMouseUp(int x, int y, int button, int clickCount) override {
|
2015-03-21 16:41:44 +00:00
|
|
|
close();
|
|
|
|
_parent->handleMouseUp(x + (getAbsX() - _parent->getAbsX()), y + (getAbsY() - _parent->getAbsY()), button, clickCount);
|
|
|
|
}
|
2020-01-05 16:48:04 +00:00
|
|
|
void handleMouseWheel(int x, int y, int direction) override {
|
2015-03-21 16:41:44 +00:00
|
|
|
close();
|
|
|
|
_parent->handleMouseWheel(x + (getAbsX() - _parent->getAbsX()), y + (getAbsX() - _parent->getAbsX()), direction);
|
|
|
|
}
|
2020-01-05 16:48:04 +00:00
|
|
|
void handleKeyDown(Common::KeyState state) override {
|
2015-03-21 16:41:44 +00:00
|
|
|
close();
|
|
|
|
_parent->handleKeyDown(state);
|
|
|
|
}
|
2020-01-05 16:48:04 +00:00
|
|
|
void handleKeyUp(Common::KeyState state) override {
|
2015-03-21 16:41:44 +00:00
|
|
|
close();
|
|
|
|
_parent->handleKeyUp(state);
|
|
|
|
}
|
2020-01-05 16:48:04 +00:00
|
|
|
void handleMouseMoved(int x, int y, int button) override {
|
2015-03-21 16:41:44 +00:00
|
|
|
close();
|
|
|
|
}
|
2010-11-18 18:17:00 +00:00
|
|
|
|
2010-07-23 19:36:47 +00:00
|
|
|
int _maxWidth;
|
|
|
|
int _xdelta, _ydelta;
|
2021-04-20 17:02:40 +00:00
|
|
|
int _xpadding, _ypadding;
|
2010-07-23 19:36:47 +00:00
|
|
|
|
2020-06-13 16:42:25 +00:00
|
|
|
Common::U32StringArray _wrappedLines;
|
2010-10-12 02:18:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace GUI
|
2010-07-23 19:36:47 +00:00
|
|
|
|
2010-10-12 02:18:11 +00:00
|
|
|
#endif // GUI_TOOLTIP_H
|