X-Git-Url: https://git.ralfj.de/multypo.git/blobdiff_plain/036922ba5e90ae7f6f6abe3f99b1783dec5132fc..a04d2f422e82b6c760b06daee47c0fcca1dc8064:/qt/multypo.h?ds=sidebyside diff --git a/qt/multypo.h b/qt/multypo.h index de0898f..66728a6 100644 --- a/qt/multypo.h +++ b/qt/multypo.h @@ -3,6 +3,7 @@ #include #include +#include #include "player.h" @@ -11,6 +12,12 @@ class MultypoWindow : public QWidget Q_OBJECT public: + enum State { + Naming, + Playing, + Scoring + }; + explicit MultypoWindow(QWidget *parent = 0); ~MultypoWindow(); @@ -18,13 +25,19 @@ public: private: void handleKeyPress(int device, QString string); - -private: + void nextWord(); + bool allPlayersWaiting(); + int typingPlayers(); + void setLabel(QString text, QString color); + + State state; // naming iff (no players or any player is naming) + QString currentWord; // defined iff state == Playing + QMap players; + bool xiInited; int xiOpcode; QLabel *mainLabel; - - QMap players; + QFile words; }; #endif // MULTIKBD_H