Changeset 7645 for code/branches/releasetodo/src/libraries/core
- Timestamp:
- Nov 13, 2010, 9:10:57 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/releasetodo/src/libraries/core/GUIManager.cc
r7628 r7645 438 438 } 439 439 440 /** 441 @brief 442 Subscribe the input function to the input event for the input window. 443 This is a helper to be used in lua, because subscribeScriptedEvent() doesn't work in lua. 444 @param window 445 The window for which the event is subscribed. 446 @param event 447 The type of event to which we subscribe. 448 @param function 449 The function that is called when the event occurs. 450 */ 440 451 void GUIManager::subscribeEventHelper(CEGUI::Window* window, const std::string& event, const std::string& function) 441 452 { … … 443 454 } 444 455 456 /** 457 @brief 458 Set the input tooltip text for the input ListboxItem. 459 @param item 460 The ListboxItem for which the tooltip should be set. 461 @param tooltip 462 The tooltip text that should be set. 463 */ 445 464 void GUIManager::setTooltipTextHelper(CEGUI::ListboxItem* item, const std::string& tooltip) 446 465 { … … 448 467 } 449 468 469 /** 470 @brief 471 Set whether the tooltips for the input Listbox are enabled. 472 @param listbox 473 The Listbox for which to enable (or disable) tooltips. 474 @param enabled 475 Whether to enable or disabel the tooltips. 476 */ 450 477 void GUIManager::setItemTooltipsEnabledHelper(CEGUI::Listbox* listbox, bool enabled) 451 478 { … … 453 480 } 454 481 455 456 482 }
Note: See TracChangeset
for help on using the changeset viewer.