Changeset 7488 for code/trunk/src/modules/notifications/NotificationQueue.h
- Timestamp:
- Sep 24, 2010, 12:01:57 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/modules/notifications/NotificationQueue.h
r7486 r7488 69 69 70 70 There are quite some parameters that influence the behaviour of the NotificationQueue: 71 - 'name':The name of the NotificationQueue. It needs to be unique.72 - 'senders':The senders that are targets of this NotificationQueue, i.e. the names of senders whose Notifications this NotificationQueue displays.73 - 'size':The size of the NotificationQueue, it specifies how many @ref orxonox::Notification "Notifications" are displayed at once at the most.74 - 'displayTime':The time a @ref orxonox::Notification "Notification" is displayed with this NotificationQueue.71 - @b name The name of the NotificationQueue. It needs to be unique. 72 - @b senders The senders that are targets of this NotificationQueue, i.e. the names of senders whose Notifications this NotificationQueue displays. 73 - @b size The size of the NotificationQueue, it specifies how many @ref orxonox::Notification "Notifications" are displayed at once at the most. 74 - @b displayTime The time a @ref orxonox::Notification "Notification" is displayed with this NotificationQueue. 75 75 76 76 @author … … 85 85 virtual ~NotificationQueue(); 86 86 87 /** 88 @brief Destroys the NotificationQueue. 89 Used in lua. 90 */ 91 void destroy(void) { this->OrxonoxClass::destroy(); } // tolua_export 87 //! Destroys the NotificationQueue. 88 void destroy(bool noGraphics = false); // tolua_export 92 89 93 90 virtual void tick(float dt); //!< To update from time to time. … … 168 165 void remove(const std::multiset<NotificationContainer*, NotificationContainerCompare>::iterator& containerIterator); //!< Removes the Notification that is stored in the input NotificationContainer. 169 166 170 void clear( void); //!< Clears the NotificationQueue by removing all NotificationContainers.167 void clear(bool noGraphics = false); //!< Clears the NotificationQueue by removing all NotificationContainers. 171 168 172 169 }; // tolua_export
Note: See TracChangeset
for help on using the changeset viewer.