Changeset 5630 for code/branches
- Timestamp:
- Aug 12, 2009, 12:59:51 AM (15 years ago)
- Location:
- code/branches/libraries/src/orxonox/overlays
- Files:
-
- 1 added
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/libraries/src/orxonox/overlays/FadeoutText.h
r3196 r5630 30 30 #define _FadeoutText_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "overlays/OverlaysPrereqs.h" 33 33 34 34 #include "tools/Timer.h" … … 38 38 namespace orxonox 39 39 { 40 class _O rxonoxExport FadeoutText : public OverlayText, public Tickable40 class _OverlaysExport FadeoutText : public OverlayText, public Tickable 41 41 { 42 42 public: -
code/branches/libraries/src/orxonox/overlays/GUIOverlay.h
r5617 r5630 30 30 #define _GUIOverlay_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "overlays/OverlaysPrereqs.h" 33 33 34 34 #include <string> … … 37 37 namespace orxonox 38 38 { 39 class _O rxonoxExport GUIOverlay : public OrxonoxOverlay39 class _OverlaysExport GUIOverlay : public OrxonoxOverlay 40 40 { 41 41 public: -
code/branches/libraries/src/orxonox/overlays/OverlayText.h
r3196 r5630 30 30 #define _OverlayText_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "overlays/OverlaysPrereqs.h" 33 33 34 34 #include <string> … … 39 39 namespace orxonox 40 40 { 41 class _O rxonoxExport OverlayText : public OrxonoxOverlay41 class _OverlaysExport OverlayText : public OrxonoxOverlay 42 42 { 43 43 public: -
code/branches/libraries/src/orxonox/overlays/debug/DebugFPSText.h
r3196 r5630 30 30 #define _DebugFPSText_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "overlays/OverlaysPrereqs.h" 33 33 34 34 #include "interfaces/Tickable.h" … … 37 37 namespace orxonox 38 38 { 39 class _O rxonoxExport DebugFPSText : public OverlayText, public Tickable39 class _OverlaysExport DebugFPSText : public OverlayText, public Tickable 40 40 { 41 41 public: -
code/branches/libraries/src/orxonox/overlays/debug/DebugRTRText.h
r3196 r5630 30 30 #define _DebugRTRText_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "overlays/OverlaysPrereqs.h" 33 33 34 34 #include "interfaces/Tickable.h" … … 37 37 namespace orxonox 38 38 { 39 class _O rxonoxExport DebugRTRText : public OverlayText, public Tickable39 class _OverlaysExport DebugRTRText : public OverlayText, public Tickable 40 40 { 41 41 public: -
code/branches/libraries/src/orxonox/overlays/hud/AnnounceMessage.h
r3196 r5630 30 30 #define _AnnounceMessage_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "overlays/OverlaysPrereqs.h" 33 33 34 34 #include "interfaces/GametypeMessageListener.h" … … 37 37 namespace orxonox 38 38 { 39 class _O rxonoxExport AnnounceMessage : public FadeoutText, public GametypeMessageListener39 class _OverlaysExport AnnounceMessage : public FadeoutText, public GametypeMessageListener 40 40 { 41 41 public: -
code/branches/libraries/src/orxonox/overlays/hud/ChatOverlay.h
r3196 r5630 30 30 #define _ChatOverlay_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "overlays/OverlaysPrereqs.h" 33 33 34 34 #include <list> … … 40 40 namespace orxonox 41 41 { 42 class _O rxonoxExport ChatOverlay : public OverlayText, public ChatListener42 class _OverlaysExport ChatOverlay : public OverlayText, public ChatListener 43 43 { 44 44 public: -
code/branches/libraries/src/orxonox/overlays/hud/DeathMessage.h
r3196 r5630 30 30 #define _DeathMessage_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "overlays/OverlaysPrereqs.h" 33 33 34 34 #include "interfaces/GametypeMessageListener.h" … … 37 37 namespace orxonox 38 38 { 39 class _O rxonoxExport DeathMessage : public FadeoutText, public GametypeMessageListener39 class _OverlaysExport DeathMessage : public FadeoutText, public GametypeMessageListener 40 40 { 41 41 public: -
code/branches/libraries/src/orxonox/overlays/hud/GametypeStatus.h
r3196 r5630 30 30 #define _GametypeStatus_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "overlays/OverlaysPrereqs.h" 33 33 34 34 #include "interfaces/Tickable.h" … … 37 37 namespace orxonox 38 38 { 39 class _O rxonoxExport GametypeStatus : public OverlayText, public Tickable39 class _OverlaysExport GametypeStatus : public OverlayText, public Tickable 40 40 { 41 41 public: -
code/branches/libraries/src/orxonox/overlays/hud/HUDBar.h
r3196 r5630 32 32 #define _HUDBar_H__ 33 33 34 #include " OrxonoxPrereqs.h"34 #include "overlays/OverlaysPrereqs.h" 35 35 36 36 #include <map> … … 44 44 namespace orxonox 45 45 { 46 class _O rxonoxExport BarColour : public BaseObject46 class _OverlaysExport BarColour : public BaseObject 47 47 { 48 48 public: … … 64 64 65 65 66 class _O rxonoxExport HUDBar : public OrxonoxOverlay66 class _OverlaysExport HUDBar : public OrxonoxOverlay 67 67 { 68 68 public: -
code/branches/libraries/src/orxonox/overlays/hud/HUDHealthBar.h
r3196 r5630 30 30 #define _HUDHealthBar_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "overlays/OverlaysPrereqs.h" 33 33 34 34 #include "util/Math.h" … … 39 39 namespace orxonox 40 40 { 41 class _O rxonoxExport HUDHealthBar : public HUDBar, public Tickable41 class _OverlaysExport HUDHealthBar : public HUDBar, public Tickable 42 42 { 43 43 public: -
code/branches/libraries/src/orxonox/overlays/hud/HUDNavigation.h
r3196 r5630 30 30 #define _HUDNavigation_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "overlays/OverlaysPrereqs.h" 33 33 34 34 #include "util/OgreForwardRefs.h" … … 38 38 namespace orxonox 39 39 { 40 class _O rxonoxExport HUDNavigation : public OrxonoxOverlay, public Tickable40 class _OverlaysExport HUDNavigation : public OrxonoxOverlay, public Tickable 41 41 { 42 42 public: -
code/branches/libraries/src/orxonox/overlays/hud/HUDRadar.h
r3196 r5630 31 31 #define _HUDRadar_H__ 32 32 33 #include " OrxonoxPrereqs.h"33 #include "overlays/OverlaysPrereqs.h" 34 34 35 35 #include <map> … … 43 43 namespace orxonox 44 44 { 45 class _O rxonoxExport HUDRadar : public OrxonoxOverlay, public RadarListener45 class _OverlaysExport HUDRadar : public OrxonoxOverlay, public RadarListener 46 46 { 47 47 public: -
code/branches/libraries/src/orxonox/overlays/hud/HUDSpeedBar.h
r3196 r5630 31 31 #define _HUDSpeedBar_H__ 32 32 33 #include " OrxonoxPrereqs.h"33 #include "overlays/OverlaysPrereqs.h" 34 34 35 35 #include "interfaces/Tickable.h" … … 38 38 namespace orxonox 39 39 { 40 class _O rxonoxExport HUDSpeedBar : public HUDBar, public Tickable40 class _OverlaysExport HUDSpeedBar : public HUDBar, public Tickable 41 41 { 42 42 public: -
code/branches/libraries/src/orxonox/overlays/hud/HUDTimer.h
r3196 r5630 30 30 #define _HUDTimer_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "overlays/OverlaysPrereqs.h" 33 33 34 34 #include "interfaces/Tickable.h" … … 37 37 namespace orxonox 38 38 { 39 class _O rxonoxExport HUDTimer : public OverlayText, public Tickable39 class _OverlaysExport HUDTimer : public OverlayText, public Tickable 40 40 { 41 41 public: -
code/branches/libraries/src/orxonox/overlays/hud/KillMessage.h
r3196 r5630 30 30 #define _KillMessage_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "overlays/OverlaysPrereqs.h" 33 33 34 34 #include "interfaces/GametypeMessageListener.h" … … 37 37 namespace orxonox 38 38 { 39 class _O rxonoxExport KillMessage : public FadeoutText, public GametypeMessageListener39 class _OverlaysExport KillMessage : public FadeoutText, public GametypeMessageListener 40 40 { 41 41 public: -
code/branches/libraries/src/orxonox/overlays/hud/PongScore.h
r3196 r5630 30 30 #define _PongScore_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "overlays/OverlaysPrereqs.h" 33 33 34 34 #include "interfaces/Tickable.h" … … 37 37 namespace orxonox 38 38 { 39 class _O rxonoxExport PongScore : public OverlayText, public Tickable39 class _OverlaysExport PongScore : public OverlayText, public Tickable 40 40 { 41 41 public: -
code/branches/libraries/src/orxonox/overlays/hud/TeamBaseMatchScore.h
r3196 r5630 30 30 #define _TeamBaseMatchScore_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "overlays/OverlaysPrereqs.h" 33 33 34 34 #include "interfaces/Tickable.h" … … 37 37 namespace orxonox 38 38 { 39 class _O rxonoxExport TeamBaseMatchScore : public OverlayText, public Tickable39 class _OverlaysExport TeamBaseMatchScore : public OverlayText, public Tickable 40 40 { 41 41 public: -
code/branches/libraries/src/orxonox/overlays/hud/UnderAttackHealthBar.h
r3196 r5630 30 30 #define _UnderAttackHealthBar_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "overlays/OverlaysPrereqs.h" 33 33 34 34 #include "util/Math.h" … … 38 38 namespace orxonox 39 39 { 40 class _O rxonoxExport UnderAttackHealthBar : public HUDHealthBar40 class _OverlaysExport UnderAttackHealthBar : public HUDHealthBar 41 41 { 42 42 public: -
code/branches/libraries/src/orxonox/overlays/notifications/NotificationOverlay.h
r3196 r5630 36 36 #define _NotificationOverlay_H__ 37 37 38 #include " OrxonoxPrereqs.h"38 #include "overlays/OverlaysPrereqs.h" 39 39 40 40 #include <string> … … 50 50 Damian 'Mozork' Frick 51 51 */ 52 class _O rxonoxExport NotificationOverlay : public OverlayText52 class _OverlaysExport NotificationOverlay : public OverlayText 53 53 { 54 54 … … 57 57 NotificationOverlay(NotificationQueue* queue, Notification* notification); 58 58 virtual ~NotificationOverlay(); 59 59 60 60 bool processNotification(Notification* notification); //!< Processes the input Notification. 61 61 … … 66 66 inline void setFontSize(float size) 67 67 { this->setTextSize(size); } 68 68 69 69 protected: 70 70 std::string clipMessage(const std::string & message); //!< Clips the input message if too long. -
code/branches/libraries/src/orxonox/overlays/notifications/NotificationQueue.h
r5619 r5630 35 35 #define _NotificationOueue_H__ 36 36 37 #include " OrxonoxPrereqs.h"37 #include "overlays/OverlaysPrereqs.h" 38 38 39 39 #include <ctime> … … 85 85 */ 86 86 87 class _O rxonoxExport NotificationQueue : public OverlayGroup, public Tickable, public NotificationListener87 class _OverlaysExport NotificationQueue : public OverlayGroup, public Tickable, public NotificationListener 88 88 { 89 89 -
code/branches/libraries/src/orxonox/overlays/stats/CreateLines.h
r3196 r5630 28 28 #define _CreateLines_H__ 29 29 30 #include " OrxonoxPrereqs.h"30 #include "overlays/OverlaysPrereqs.h" 31 31 32 32 namespace orxonox 33 33 { 34 class _O rxonoxExport CreateLines34 class _OverlaysExport CreateLines 35 35 { 36 36 -
code/branches/libraries/src/orxonox/overlays/stats/Scoreboard.h
r3196 r5630 29 29 30 30 31 #include " OrxonoxPrereqs.h"31 #include "overlays/OverlaysPrereqs.h" 32 32 33 33 #include <string> … … 38 38 namespace orxonox 39 39 { 40 class _O rxonoxExport Scoreboard : public OrxonoxOverlay, public Tickable40 class _OverlaysExport Scoreboard : public OrxonoxOverlay, public Tickable 41 41 { 42 42 public: // functions -
code/branches/libraries/src/orxonox/overlays/stats/Stats.h
r3196 r5630 30 30 #define _Stats_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "overlays/OverlaysPrereqs.h" 33 33 34 34 #include "util/OgreForwardRefs.h" … … 38 38 namespace orxonox 39 39 { 40 class _O rxonoxExport Stats : public OrxonoxOverlay, public Tickable40 class _OverlaysExport Stats : public OrxonoxOverlay, public Tickable 41 41 { 42 42 public: // functions
Note: See TracChangeset
for help on using the changeset viewer.