ScummVM API documentation
Tooltip.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef GUI_TOOLTIP_H
23 #define GUI_TOOLTIP_H
24 
25 #include "common/keyboard.h"
26 #include "common/str-array.h"
27 #include "gui/dialog.h"
28 
29 namespace GUI {
30 
31 class Widget;
32 
33 class Tooltip : public Dialog {
34 private:
35  Widget *_widget;
36 
37 public:
38  Tooltip();
39  void setup(Dialog *parent, Widget *widget, int x, int y);
40  void drawDialog(DrawLayer layerToDraw) override;
41  void receivedFocus(int x = -1, int y = -1) override {}
42 
43 protected:
44  void handleKeyDown(Common::KeyState state) override;
45  void handleKeyUp(Common::KeyState state) override;
46  void handleMouseDown(int x, int y, int button, int clickCount) override;
47  void handleMouseMoved(int x, int y, int button) override;
48  void handleMouseUp(int x, int y, int button, int clickCount) override;
49  void handleMouseWheel(int x, int y, int direction) override;
50 
51  int _maxWidth;
52  int _xdelta, _ydelta;
53  int _xpadding, _ypadding;
54 
55  Common::U32StringArray _wrappedLines;
56 };
57 
58 } // End of namespace GUI
59 
60 #endif // GUI_TOOLTIP_H
Definition: array.h:52
Definition: printman.h:30
void drawDialog(DrawLayer layerToDraw) override
Definition: Tooltip.h:33
Definition: dialog.h:49
Definition: widget.h:101
Definition: keyboard.h:294