Added some fun event filtering to grab pause and welcome message clicks
[chessclock] / classes / timecontrol / fischerafterclock.h
1  /**************************************************************************
2
3     Chess Clock
4
5     Copyright (c) Arto Hyvättinen 2010
6
7     This file is part of Chess Clock software.
8
9     Chess Clock is free software: you can redistribute it and/or modify
10     it under the terms of the GNU General Public License as published by
11     the Free Software Foundation, either version 3 of the License, or
12     (at your option) any later version.
13
14     Chess Clock is distributed in the hope that it will be useful,
15     but WITHOUT ANY WARRANTY; without even the implied warranty of
16     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17     GNU General Public License for more details.
18
19
20 **************************************************************************/
21
22 #ifndef FISCHERAFTERCLOCK_H
23 #define FISCHERAFTERCLOCK_H
24
25 #include "../chessclockwidget.h"
26
27 class TurnInformation;
28
29 /*! Insert specified time after turn
30
31   @author Arto Hyvättinen
32   @date 2010-08-16
33   */
34 class FischerAfterClock : public ChessClockWidget
35 {
36     Q_OBJECT
37 public:
38     FischerAfterClock(bool white, int addition, int perTurns, QWidget *parent = 0);
39     TurnInformation* endTurn();
40
41 signals:
42
43 public slots:
44
45 protected:
46     int addition_;
47     int perTurns_;
48
49
50 };
51
52 #endif // FISCHERAFTERCLOCK_H