Changeset 8619 in orxonox.OLD for trunk/src/lib/gui/gl/specials/glgui_notifier.h
- Timestamp:
- Jun 20, 2006, 1:24:11 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/gui/gl/specials/glgui_notifier.h
r8518 r8619 30 30 void pushNotifyMessage(const std::string& message); 31 31 32 // BUFFERS32 /// Setup 33 33 void setDisplayLineCount(unsigned int count); 34 void setFadeAge(float fadeAge); 35 void setHideAge(float hideAge); 36 37 /** @returns the beginning of the Hiding process */ 38 inline float fadeAge() const { return _fadeAge; }; 39 /** @returns at what age elements should be fully hidden */ 40 inline float hideAge() const { return _hideAge; }; 34 41 35 42 void clear(); … … 54 61 55 62 private: 63 //! structure that defines a Displayed line. 56 64 typedef struct 57 65 { … … 59 67 MultiLineText* text; 60 68 61 } 62 DisplayLine; 69 } DisplayLine; 70 71 72 float _fadeAge; 73 float _hideAge; 74 float _transformAge; 63 75 64 76 unsigned int lineSpacing; //!< The Spacing between lines. … … 72 84 73 85 unsigned long linesProcessed; //!< How many Lines have been processed so far. 74 std::list<std::string> inputBuffer; //!< 86 std::list<std::string> inputBuffer; //!< The input buffer for lines that were not yet printet out, because there is too much input. 75 87 76 88 };
Note: See TracChangeset
for help on using the changeset viewer.