/***************************************************************************
                          inputstring.h  -  description
                             -------------------
    begin                : Mon Oct 25 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 INPUTSTRING_H
#define INPUTSTRING_H

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

#include <qdialog.h>
#include <qstring.h>
#include <qregexp.h>

/**
  *@author Perdig
  */

class inputString : public QDialog  {
   Q_OBJECT
public: 
	inputString(const char *title, const char *text, QWidget *parent=0, const char *name=0);
	~inputString();
  /** Retorna o texto selecionado */
  QString getStr();
protected:
	void initDialog();
	//Generated area. DO NOT EDIT!!!(begin)
	KSeparator *KSeparator_1;
	QLineEdit *text_entry;
	QPushButton *cancel_button;
	QPushButton *ok_button;
	//Generated area. DO NOT EDIT!!!(end)

private: 
};

#endif






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