1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef Chat_H
- #define Chat_H
- #include <KSGNetwork.h>
- #include <TextFeld.h>
- #include <Rahmen.h>
- using namespace Framework;
- class SpielChat
- {
- private:
- LRahmen *rahmen = 0;
- TextFeld *verlauf;
- TextFeld *nachricht;
- int ref;
- public:
- // Konstruktor
- SpielChat();
- // Destruktor
- ~SpielChat();
- // nicht constant
- void setSchrift( Schrift *zSchrift );
- void addNachricht( char *nachricht );
- void addNachricht( char *nachricht, int farbe );
- void doMausEreignis( MausEreignis &me );
- void doTastaturEreignis( TastaturEreignis &te, KSGClient::SpielServerClient *zKlient );
- void tick( double z );
- void render( Bild &zRObj );
- // constant
- // Reference Counting
- SpielChat *getThis();
- SpielChat *relese();
- };
- #endif
|