eafe48e7d27c22acb325814e44c00cf9b0cde5d9
[chessclock] / classes / timecontrol / delayaftertimecontrol.cpp
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 #include "delayaftertimecontrol.h"
23 #include "delayafterclock.h"
24 #include "../clockswidget.h"
25 #include "basicdialog.h"
26
27 #include <QApplication>
28
29 DelayAfterTimeControl::DelayAfterTimeControl()
30 {
31 }
32
33 QString DelayAfterTimeControl::getName()
34 {
35     return qApp->translate("Delay after","Delay after");
36 }
37
38 QString DelayAfterTimeControl::getDescription()
39 {
40     return qApp->translate("Delay","Time up to special increment is added after turn");
41 }
42
43 ClocksWidget* DelayAfterTimeControl::initGame(bool useLastSettings)
44 {
45     BasicDialog dialog(getName());
46     dialog.disablePerTurns();
47     dialog.init();
48
49     if( useLastSettings || dialog.exec() == QDialog::Accepted)
50     {
51         dialog.store();
52         DelayAfterClock* white = new DelayAfterClock( true, dialog.getWhiteAddition());
53         white->setTimeAvailable(dialog.getWhiteInitial());
54
55         DelayAfterClock* black = new DelayAfterClock( false, dialog.getBlackAddition());
56         black->setTimeAvailable( dialog.getBlackInitial());
57
58         return( new ClocksWidget(white,black));
59
60     }
61     else
62         return 0;
63 }