File indexing completed on 2024-04-14 03:59:44

0001 /***************************************************************************
0002  *   Copyright (C) 2005 by Albert Astals Cid <aacid@kde.org>               *
0003  *                                                                         *
0004  *   This program is free software; you can redistribute it and/or modify  *
0005  *   it under the terms of the GNU General Public License as published by  *
0006  *   the Free Software Foundation; either version 2 of the License, or     *
0007  *   (at your option) any later version.                                   *
0008  ***************************************************************************/
0009 
0010 #ifndef CONFIGWIDGET_H
0011 #define CONFIGWIDGET_H
0012 
0013 #include <QWidget>
0014 
0015 #include "ui_configPage.h"
0016 
0017 class configWidget : public QWidget, private Ui::configPage
0018 {
0019 Q_OBJECT
0020     public:
0021         explicit configWidget(QWidget *parent);
0022     
0023     private Q_SLOTS:
0024         void numberOfPlayersChanged(int numberOfPlayers);
0025         void minimumRowHeightChanged(int height);
0026 };
0027 
0028 #endif
0029