summaryrefslogtreecommitdiffstats
path: root/klickety/field.h
blob: 67e6529b9bc81125ee4d807f16594eeff33466ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef KL_FIELD_H
#define KL_FIELD_H

#include <qwidget.h>

#include "base/field.h"
#include "base/inter.h"

class KGameLCDClock;

class Field : public QWidget, public BaseField, public BaseInterface
{
 Q_OBJECT
 public:
    Field(QWidget *parent);
  
 private slots:
    void scoreUpdatedSlot() { scoreUpdated(); }
    void start();
    void gameOver();
    void settingsChanged() { BaseField::settingsChanged(); }

 private:
    KGameLCDClock *elapsedTime;

    void pause();
    KExtHighscore::Score currentScore() const;
    void _start() { start(); }
    void _pause() { pause(); }
    bool _isPaused() const;
};

#endif