Add hourclass and old clock icons.
[chessclock] / classes / timecontrol / notimecontrol.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 "notimecontrol.h"
23
24 #include "../chessclock.h"
25 #include "basicdialog.h"
26 #include "../chessclockwidget.h"
27 #include "../clockswidget.h"
28
29 #include <QApplication>
30
31 NoTimeControl::NoTimeControl()
32 {
33 }
34
35
36 QString NoTimeControl::getDescription()
37 {
38     return qApp->translate("NoneTimeControl","Never add time.");
39 }
40
41 QIcon NoTimeControl::getIcon()
42 {
43     return QIcon(":/rc/pic/oldclock.png");
44 }
45
46 ClocksWidget* NoTimeControl::initGame(bool useLastSettings)
47 {
48     BasicDialog dialog(getName());
49
50     dialog.disableAddition();
51     dialog.init();
52
53     if( useLastSettings || dialog.exec() == QDialog::Accepted)
54     {
55         dialog.store();
56         ChessClockWidget* white = new ChessClockWidget(true);
57         white->setTimeAvailable(dialog.getWhiteInitial());
58
59         ChessClockWidget* black = new ChessClockWidget(false);
60         black->setTimeAvailable( dialog.getBlackInitial());
61
62         return( new ClocksWidget(white,black));
63
64     }
65     else
66         return 0;
67 }