VideoChat.h 588 B

12345678910111213141516171819202122232425262728
  1. #ifndef VideoChat_H
  2. #define VideoChat_H
  3. #include <TextFeld.h>
  4. #include <UIInitialization.h>
  5. using namespace Framework;
  6. class VideoChat : public virtual ReferenceCounter
  7. {
  8. private:
  9. TextFeld *verlauf;
  10. public:
  11. // Konstruktor
  12. VideoChat( UIInit &uiFactory );
  13. // Destruktor
  14. ~VideoChat();
  15. // nicht constant
  16. void addNachricht( char *nachricht );
  17. void addNachricht( char *nachricht, int farbe );
  18. void removeNachricht( char *nachricht );
  19. void doPublicMausEreignis( MausEreignis &me );
  20. void tick( double z );
  21. void render( Bild &zRObj );
  22. };
  23. #endif