summaryrefslogtreecommitdiffstats
path: root/libksirtet/common/field.h
diff options
context:
space:
mode:
Diffstat (limited to 'libksirtet/common/field.h')
-rw-r--r--libksirtet/common/field.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/libksirtet/common/field.h b/libksirtet/common/field.h
new file mode 100644
index 00000000..8179539b
--- /dev/null
+++ b/libksirtet/common/field.h
@@ -0,0 +1,68 @@
+#ifndef COMMON_FIELD_H
+#define COMMON_FIELD_H
+
+#include "lib/mp_simple_board.h"
+#include "base/field.h"
+#include "types.h"
+
+#include "lib/libksirtet_export.h"
+
+
+class ShowNextPiece;
+class GiftShower;
+class Shadow;
+class KProgress;
+class KGameProgress;
+class KGameLCDClock;
+
+class LIBKSIRTET_EXPORT Field : public MPSimpleBoard, public BaseField
+{
+ Q_OBJECT
+ public:
+ Field(QWidget *parent);
+
+ public slots:
+ void moveLeft();
+ void moveRight();
+ void dropDownStart();
+ void dropDownStop();
+ void oneLineDown();
+ void rotateLeft();
+ void rotateRight();
+ void moveLeftTotal();
+ void moveRightTotal();
+
+ virtual void settingsChanged();
+
+ protected slots:
+ void scoreUpdatedSlot() { scoreUpdated(); }
+ virtual void levelUpdated();
+ virtual void removedUpdated();
+
+ private:
+ KGameLCDClock *showTime;
+ ShowNextPiece *showNext;
+ KProgress *toLevel;
+ QLabel *labShowNext, *levelLabel;
+ KGameProgress *prevHeight, *nextHeight;
+ Shadow *shadow;
+ KCanvasRootPixmap *_snRootPixmap;
+ ClientPlayData _cpd;
+
+ void _init(bool AI, bool multiplayer, bool server, bool first,
+ const QString &name);
+ void showOpponents(bool show);
+ void initVariableGUI();
+
+ void _initFlag(QDataStream &);
+ void _playFlag(QDataStream &);
+ void _pauseFlag(bool pause);
+ void _stopFlag(bool gameover);
+ void _dataOut(QDataStream &);
+ void _gameOverDataOut(QDataStream &);
+ void _initDataOut(QDataStream &) {}
+
+ KExtHighscore::Score currentScore() const;
+};
+
+#endif