-rw-r--r-- | qtcompat/qinputdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qtcompat/qinputdialog.cpp b/qtcompat/qinputdialog.cpp index 64c581e..ce46118 100644 --- a/qtcompat/qinputdialog.cpp +++ b/qtcompat/qinputdialog.cpp @@ -287,49 +287,49 @@ QInputDialog::~QInputDialog() \endcode */ QString QInputDialog::getText( const QString &caption, const QString &label, const QString &text, bool *ok, QWidget *parent, const char *name ) { return getText( caption, label, QLineEdit::Normal, text, ok, parent, name ); } /*! Like above, but accepts an a \a mode which the line edit will use to display text. \sa getText() */ QString QInputDialog::getText( const QString &caption, const QString &label, QLineEdit::EchoMode mode, const QString &text, bool *ok, QWidget *parent, const char *name ) { QInputDialog *dlg = new QInputDialog( label, parent, name, TRUE, LineEdit ); dlg->setCaption( caption ); dlg->lineEdit()->setText( text ); dlg->lineEdit()->setEchoMode( mode ); if ( !text.isEmpty() ) dlg->lineEdit()->selectAll(); - + dlg->setMinimumWidth ( 230 ); bool ok_ = FALSE; QString result; ok_ = dlg->exec() == QDialog::Accepted; if ( ok ) *ok = ok_; if ( ok_ ) result = dlg->lineEdit()->text(); delete dlg; return result; } /*! Static convenience function to get an integral input from the user. \a caption is the text which is displayed in the title bar of the dialog. \a label is the text which is shown to the user (it should mention to the user what he/she should input), \a num the default number which will be initially set to the spinbox, \a from and \a to the range in which the entered number has to be, \a step the step in which the number can be increased/decreased by the spinbox, \a ok a pointer to a bool which will be (if not 0!) set to TRUE if the user pressed ok or to FALSE if the user pressed cancel, \a parent the parent widget of the dialog and \a name the name of it. The dialogs pops up modally! This method returns the number which has been entered by the user. |