ClocksWidget: Continue & Stop
[chessclock] / chessclockwindow.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 "chessclockwindow.h"
23
24 #include "classes/clockswidget.h"
25 #include "classes/chessclockwidget.h"
26
27 #include <QIcon>
28 #include <QApplication>
29
30 ChessClockWindow::ChessClockWindow(QWidget *parent)
31     : QMainWindow(parent)
32 {
33
34     setWindowIcon( QIcon(":/rc/pic/chessclock.png"));
35     setWindowTitle( QString("%1 %2").arg(qApp->applicationName()).arg(qApp->applicationVersion()) );
36
37     ChessClockWidget* white = new ChessClockWidget(true, this);
38     white->setGreenTime(5000);
39     ChessClockWidget* black = new ChessClockWidget(false, this);
40
41     clocks_ = new ClocksWidget( white, black, this );
42     setCentralWidget( clocks_ );
43
44
45 }
46
47 ChessClockWindow::~ChessClockWindow()
48 {
49
50 }