From 8e7af56d53840399c13c4862b74205a31a68fd64 Mon Sep 17 00:00:00 2001 From: alberth Date: Sat, 31 Oct 2009 11:13:31 +0000 Subject: (svn r17913) -Documentation: Add doxygen comments to the tooltip window class. --- src/misc_gui.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/misc_gui.cpp b/src/misc_gui.cpp index 0c113679f..5ffd47f5f 100644 --- a/src/misc_gui.cpp +++ b/src/misc_gui.cpp @@ -782,12 +782,13 @@ static const NWidgetPart _nested_tooltips_widgets[] = { NWidget(WWT_PANEL, COLOUR_GREY, 0), SetMinimalSize(200, 32), EndContainer(), }; +/** Window class for displaying a tooltip. */ struct TooltipsWindow : public Window { - StringID string_id; - byte paramcount; - uint64 params[5]; - bool use_left_mouse_button; + StringID string_id; ///< String to display as tooltip. + byte paramcount; ///< Number of string parameters in #string_id. + uint64 params[5]; ///< The string parameters. + bool use_left_mouse_button; ///< Wait for left mouse button to close window (else, wait for right button). TooltipsWindow(int x, int y, int width, int height, const Widget *widget, StringID str, uint paramcount, const uint64 params[], bool use_left_mouse_button) : -- cgit v1.2.3-54-g00ecf