Source: ksirk/kplayersetupdialog.h
|
|
|
|
/***************************************************************************
kdialogsetupjoueur.h - description
-------------------
begin : Thu Jul 19 2001
copyright : (C) 2001 by Gaël de Chalendar
email : Gael.de.Chalendar@libertysurf.fr
***************************************************************************/
/***************************************************************************
* *
* 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 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#define KDE_NO_COMPAT
#ifndef KPLAYERSETUPDIALOG_H
#define KPLAYERSETUPDIALOG_H
#include "qplayersetupdialog.h"
#include
/**
* This is the implementation of the player configuration dialog made with
* QT Designer
* @author Gaël de Chalendar
*/
class KPlayerSetupDialog : public QPlayerSetupDialog
{
Q_OBJECT
public:
KPlayerSetupDialog(int &playerNumber, QString &playerName,
bool &computerPlayer, QWidget *parent=0, const char *name=0);
~KPlayerSetupDialog();
private:
QString &name;
bool &computer;
int& number ;
public slots:
virtual void slotOK();
};
#endif // KPLAYERSETUPDIALOG_H
Generated by: gael on noirdes.limsi.u-psud.fr on Fri Jan 3 17:03:38 2003, using kdoc 2.0a53. |