Removing redundant class
[impuzzle] / src / newgamedialog.h
diff --git a/src/newgamedialog.h b/src/newgamedialog.h
deleted file mode 100644 (file)
index 30bcf7f..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
-  Image Puzzle - A set your pieces straight game
-  Copyright (C) 2009  Timo Härkönen
-
-  This program is free software: you can redistribute it and/or modify
-  it under the terms of the GNU General Public License as published by
-  the Free Software Foundation, either version 3 of the License, or
-  (at your option) any later version.
-
-  This program is distributed in the hope that it will be useful,
-  but WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-  GNU General Public License for more details.
-
-  You should have received a copy of the GNU General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-#ifndef NEWGAMEDIALOG_H
-#define NEWGAMEDIALOG_H
-
-#include <QDialog>
-
-class QLabel;
-class QComboBox;
-class QPushButton;
-class QVBoxLayout;
-class QHBoxLayout;
-
-class NewGameDialog : public QDialog
-{
-    Q_OBJECT
-
-public:
-    NewGameDialog(QWidget *parent = 0);
-
-private:
-    QLabel *imageLabel_;
-    QLabel *piecesLabel_;
-
-    QComboBox *imageCombo_;
-    QComboBox *piecesCombo_;
-
-    QPushButton *startButton_;
-
-    QVBoxLayout *mainLayout_;
-    QHBoxLayout *comboLayout_;
-    QHBoxLayout *buttonLayout_;
-};
-
-#endif // NEWGAMEDIALOG_H