#include <QtGui/qinputdialog.h>
#ifndef QINPUTDIALOG_H
#ifndef QT_NO_INPUTDIALOG
class QInputDialog: public QDialog{
   public: virtual struct QMetaObject const * metaObject() const
   public: static struct QMetaObject const staticMetaObject;
   public: virtual void* qt_metacast(char const *);
   public: static inline class QString tr(char const * s, char const * c = 0);
   public: static inline class QString trUtf8(char const * s, char const * c = 0);
   public: static inline class QString tr(char const * s, char const * c, int n);
   public: static inline class QString trUtf8(char const * s, char const * c, int n);
   public: virtual int qt_metacall(enum QMetaObject::Call, int, void* *);
   private: inline struct QInputDialogPrivate* d_func();
   private: inline struct QInputDialogPrivate const * d_func() const
   private: enum Type{
      LineEdit = 0,
      SpinBox = 1,
      DoubleSpinBox = 2,
      ComboBox = 3,
      EditableComboBox = 4,
   };
   private: QInputDialog(class QString const & label, class QWidget* parent, enum QInputDialog::Type type, Qt::WindowFlags f);
   private: virtual ~QInputDialog();
   public: static class QString getText(class QWidget* parent, class QString const & title, class QString const & label, enum QLineEdit::EchoMode echo = QLineEdit::Normal, class QString const & text = QString::QString(), bool* ok = 0, Qt::WindowFlags f = 0);
   public: static int getInteger(class QWidget* parent, class QString const & title, class QString const & label, int value = 0, int minValue = -2147483647, int maxValue = 2147483647, int step = 1, bool* ok = 0, Qt::WindowFlags f = 0);
   public: static double getDouble(class QWidget* parent, class QString const & title, class QString const & label, double value = 0, double minValue = -2147483647, double maxValue = 2147483647, int decimals = 1, bool* ok = 0, Qt::WindowFlags f = 0);
   public: static class QString getItem(class QWidget* parent, class QString const & title, class QString const & label, class QStringList const & list, int current = 0, bool editable = 1, bool* ok = 0, Qt::WindowFlags f = 0);
   private: QInputDialog(class QInputDialog const &);
   private: class QInputDialog& operator =(class QInputDialog const &);
   friend struct QInputDialogPrivate;
};
#endif // QT_NO_INPUTDIALOG
#endif // QINPUTDIALOG_H