QInputDialog

Undocumented in source but is binding to C++. You might be able to learn more by searching the web for its name.
extern (C++)
class QInputDialog : QDialog {}

Constructors

this
this(QWidget parent, qt.core.namespace.WindowFlags flags)
Undocumented in source.

Destructor

~this
~this()
Undocumented in source.

Members

Aliases

InputDialogOptions
alias InputDialogOptions = QFlags!(InputDialogOption)
Undocumented in source.

Enums

InputDialogOption
enum InputDialogOption
Undocumented in source.
InputMode
enum InputMode
Undocumented in source.

Functions

cancelButtonText
QString cancelButtonText()
Undocumented in source.
comboBoxItems
QStringList comboBoxItems()
Undocumented in source.
done
void done(int result)
Undocumented in source.
doubleDecimals
int doubleDecimals()
Undocumented in source.
doubleMaximum
double doubleMaximum()
Undocumented in source.
doubleMinimum
double doubleMinimum()
Undocumented in source.
doubleStep
double doubleStep()
Undocumented in source.
doubleValue
double doubleValue()
Undocumented in source.
doubleValueChanged
void doubleValueChanged(double value)
Undocumented in source.
doubleValueSelected
void doubleValueSelected(double value)
Undocumented in source.
inputMode
InputMode inputMode()
Undocumented in source.
intMaximum
int intMaximum()
Undocumented in source.
intMinimum
int intMinimum()
Undocumented in source.
intStep
int intStep()
Undocumented in source.
intValue
int intValue()
Undocumented in source.
intValueChanged
void intValueChanged(int value)
Undocumented in source.
intValueSelected
void intValueSelected(int value)
Undocumented in source.
isComboBoxEditable
bool isComboBoxEditable()
Undocumented in source.
labelText
QString labelText()
Undocumented in source.
minimumSizeHint
QSize minimumSizeHint()
Undocumented in source.
okButtonText
QString okButtonText()
Undocumented in source.
open
void open(QObject receiver, const(char)* member)
Undocumented in source.
options
InputDialogOptions options()
Undocumented in source.
setCancelButtonText
void setCancelButtonText(const(QString) text)
Undocumented in source.
setComboBoxEditable
void setComboBoxEditable(bool editable)
Undocumented in source.
setComboBoxItems
void setComboBoxItems(const(QStringList) items)
Undocumented in source.
setDoubleDecimals
void setDoubleDecimals(int decimals)
Undocumented in source.
setDoubleMaximum
void setDoubleMaximum(double max)
Undocumented in source.
setDoubleMinimum
void setDoubleMinimum(double min)
Undocumented in source.
setDoubleRange
void setDoubleRange(double min, double max)
Undocumented in source.
setDoubleStep
void setDoubleStep(double step)
Undocumented in source.
setDoubleValue
void setDoubleValue(double value)
Undocumented in source.
setInputMode
void setInputMode(InputMode mode)
Undocumented in source.
setIntMaximum
void setIntMaximum(int max)
Undocumented in source.
setIntMinimum
void setIntMinimum(int min)
Undocumented in source.
setIntRange
void setIntRange(int min, int max)
Undocumented in source.
setIntStep
void setIntStep(int step)
Undocumented in source.
setIntValue
void setIntValue(int value)
Undocumented in source.
setLabelText
void setLabelText(const(QString) text)
Undocumented in source.
setOkButtonText
void setOkButtonText(const(QString) text)
Undocumented in source.
setOption
void setOption(InputDialogOption option, bool on)
Undocumented in source.
setOptions
void setOptions(InputDialogOptions options)
Undocumented in source.
setTextEchoMode
void setTextEchoMode(QLineEdit.EchoMode mode)
Undocumented in source.
setTextValue
void setTextValue(const(QString) text)
Undocumented in source.
setVisible
void setVisible(bool visible)
Undocumented in source.
sizeHint
QSize sizeHint()
Undocumented in source.
testOption
bool testOption(InputDialogOption option)
Undocumented in source.
textEchoMode
QLineEdit.EchoMode textEchoMode()
Undocumented in source.
textValue
QString textValue()
Undocumented in source.
textValueChanged
void textValueChanged(const(QString) text)
Undocumented in source.
textValueSelected
void textValueSelected(const(QString) text)
Undocumented in source.

Static functions

getDouble
double getDouble(QWidget parent, const(QString) title, const(QString) label, double value, double minValue, double maxValue, int decimals, bool* ok, qt.core.namespace.WindowFlags flags)
Undocumented in source.
getDouble
double getDouble(QWidget parent, const(QString) title, const(QString) label, double value, double minValue, double maxValue, int decimals, bool* ok, qt.core.namespace.WindowFlags flags, double step)
Undocumented in source.
getInt
int getInt(QWidget parent, const(QString) title, const(QString) label, int value, int minValue, int maxValue, int step, bool* ok, qt.core.namespace.WindowFlags flags)
Undocumented in source.
getItem
QString getItem(QWidget parent, const(QString) title, const(QString) label, const(QStringList) items, int current, bool editable, bool* ok, qt.core.namespace.WindowFlags flags, qt.core.namespace.InputMethodHints inputMethodHints)
Undocumented in source.
getMultiLineText
QString getMultiLineText(QWidget parent, const(QString) title, const(QString) label, const(QString) text, bool* ok, qt.core.namespace.WindowFlags flags, qt.core.namespace.InputMethodHints inputMethodHints)
Undocumented in source.
getText
QString getText(QWidget parent, const(QString) title, const(QString) label, QLineEdit.EchoMode echo, const(QString) text, bool* ok, qt.core.namespace.WindowFlags flags, qt.core.namespace.InputMethodHints inputMethodHints)
Undocumented in source.
getText
QString getText(QWidget parent, const(QString) title, const(QString) label, QLineEdit.EchoMode echo, const(QString) text, bool* ok, qt.core.namespace.WindowFlags flags, qt.core.namespace.InputMethodHints inputMethodHints)
Undocumented in source. Be warned that the author may not have intended to support it.

Inherited Members

From QDialog

~this
~this()
Undocumented in source.
DialogCode
enum DialogCode
Undocumented in source.
result
int result()
Undocumented in source.
setVisible
void setVisible(bool visible)
Undocumented in source.
setOrientation
void setOrientation(qt.core.namespace.Orientation orientation)
Undocumented in source.
orientation
qt.core.namespace.Orientation orientation()
Undocumented in source.
setExtension
void setExtension(QWidget extension)
Undocumented in source.
extension
QWidget extension()
Undocumented in source.
sizeHint
QSize sizeHint()
Undocumented in source.
minimumSizeHint
QSize minimumSizeHint()
Undocumented in source.
setSizeGripEnabled
void setSizeGripEnabled(bool )
Undocumented in source.
isSizeGripEnabled
bool isSizeGripEnabled()
Undocumented in source.
setModal
void setModal(bool modal)
Undocumented in source.
setResult
void setResult(int r)
Undocumented in source.
finished
void finished(int result)
Undocumented in source.
accepted
void accepted()
Undocumented in source.
rejected
void rejected()
Undocumented in source.
open
void open()
Undocumented in source.
exec
int exec()
Undocumented in source.
done
void done(int )
Undocumented in source.
accept
void accept()
Undocumented in source.
reject
void reject()
Undocumented in source.
showExtension
void showExtension(bool )
Undocumented in source.
keyPressEvent
void keyPressEvent(QKeyEvent )
Undocumented in source.
closeEvent
void closeEvent(QCloseEvent )
Undocumented in source.
showEvent
void showEvent(QShowEvent )
Undocumented in source.
resizeEvent
void resizeEvent(QResizeEvent )
Undocumented in source.
contextMenuEvent
void contextMenuEvent(QContextMenuEvent )
Undocumented in source.
eventFilter
bool eventFilter(QObject , QEvent )
Undocumented in source.
adjustPosition
void adjustPosition(QWidget )
Undocumented in source.

Meta