/***************************************************************************
                          inputint.h  -  description
                             -------------------
    begin                : Sun Oct 17 1999
    copyright            : (C) 1999 by Perdig
    email                : perdig@linuxbr.com.br
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 INPUTINT_H
#define INPUTINT_H

//Generated area. DO NOT EDIT!!!(begin)
#include <qwidget.h>
#include <qslider.h>
#include <qcheckbox.h>
#include <qlcdnumber.h>
#include <kseparator.h>
#include <qpushbutton.h>
//Generated area. DO NOT EDIT!!!(end)

#include <qdialog.h>
#include <qcolor.h>
#include <qpalette.h>
#include <qregexp.h>
#include "ksnes9x.h"


/**
  *@author Perdig
  */

class inputInt : public QDialog  {
   Q_OBJECT
public: 
	inputInt(int curVal, int lowVal, int highVal, char *title, QWidget *parent=0, const char *name=0);
	~inputInt();
  /** Retorna o valor selecionado
0 -> Default */
  int intValue();

protected: 
	void initDialog();
	//Generated area. DO NOT EDIT!!!(begin)
	QSlider *intSlider;
	QCheckBox *defaultBox;
	QLCDNumber *lcdNun;
	KSeparator *KSeparator_1;
	QPushButton *okButton;
	QPushButton *cancelButton;
	//Generated area. DO NOT EDIT!!!(end)

private: 
protected slots: // Protected slots
protected slots: // Protected slots
  /**  */
  void defaultPressed();
};

#endif












Documentation generated by Perdig@perdig.com.br on Mon Nov 22 11:16:22 EDT 1999