/***************************************************************************
                          inputs.h  -  description                              
                             -------------------                                         

    version              :                                   
    begin                : Sat Feb 6 1999                                           
    copyright            : (C) 1999 by Didier Gaudin                         
    email                : gaudin@club-internet?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.                                   * 
 *                                                                         *
 ***************************************************************************/


#ifndef INPUTS_H
#define INPUTS_H

#include <qwidget.h>
#include <qcombo.h>
#include <qlabel.h>
#include <qcheckbox.h>
#include <qspinbox.h>

/**
  *@author Didier Gaudin
  */
struct MOUSE
{
   const char * text;
   const char * protocol;
};


class Inputs : public QWidget  {
 Q_OBJECT
public: 
	Inputs(QWidget *parent=NULL, const char *name=NULL);
	~Inputs();

  QComboBox * ComboMouse,* ComboDev,*ComboLayout, *ComboKey;
  QLabel * TimeOut;
  QCheckBox   *ChkEmul3;
  QSpinBox * TimeOutVal;
  void writeconfig();
protected slots :
  void  slotemulActive(bool );
};

#endif

Documentation generated by root@vmdiduz on sam fév 13 15:30:42 CET 1999