Changeset 7164 for code/trunk/src/modules/notifications/NotificationQueue.h
- Timestamp:
- Aug 14, 2010, 11:56:56 PM (15 years ago)
- Location:
- code/trunk/src/modules/notifications
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/modules/notifications/NotificationQueue.h
r7163 r7164 35 35 #define _NotificationOueue_H__ 36 36 37 #include " questsystem/QuestsystemPrereqs.h"37 #include "notifications/NotificationsPrereqs.h" 38 38 39 39 #include <ctime> … … 74 74 <NotificationQueue 75 75 name = "SuperQueue" //Name of your OverlayQueue. 76 maxSize = "5" //The maximum size of Notifications displayed.77 notificationLength = "64" //The maximum number of characters of a Notification, that are displayed. (Default is 5)76 maxSize = "5" //The maximum number of Notifications displayed. (Default is 5) 77 notificationLength = "64" //The maximum number of characters of a Notification, that are displayed. (Default is 64) 78 78 displayTime = "30" //The time a Notification is displayed in seconds. (Default is 30) 79 79 targets = "target1, target2" //The senders this NotificationQueue displays Notifications from. (all, if all Notifications should be displayed.) 80 80 font = "VeraMono" //The font (Default is VeraMono) 81 81 fontSize = '0.4' //The font size. (Default is 0.025) 82 position = "0.0, .0.0" //The position of the NotificationQueue. (Default is 0.0,0.0)82 position = "0.0, 0.0" //The position of the NotificationQueue. (Default is 0.0,0.0) 83 83 /> 84 84 @author … … 86 86 */ 87 87 88 class _ QuestsystemExport NotificationQueue : public OverlayGroup, public Tickable, public NotificationListener88 class _NotificationsExport NotificationQueue : public OverlayGroup, public Tickable, public NotificationListener 89 89 { 90 90 … … 162 162 private: 163 163 static const int DEFAULT_SIZE = 5; //!< The default maximum number of Notifications displayed. 164 static const int DEFAULT_LENGTH = 64; //!< The default maximum number of Notifications displayed.164 static const int DEFAULT_LENGTH = 64; //!< The default maximum number of characters displayed. 165 165 static const int DEFAULT_DISPLAY_TIME = 30; //!< The default display time. 166 166 static const float DEFAULT_FONT_SIZE; //!< The default font size.
Note: See TracChangeset
for help on using the changeset viewer.