InputDialogProps
Hierarchy
↳ DialogProps‹QInputDialogSignals›
↳ InputDialogProps
Index
Properties
- attributes
- cancelButtonText
- comboBoxEditable
- cursor
- doubleDecimals
- doubleMax
- doubleMin
- doubleStep
- doubleValue
- enableSizeGrip
- enabled
- focus
- font
- geometry
- id
- inputMode
- intMax
- intMin
- intStep
- intValue
- labelText
- maxSize
- minSize
- modal
- mouseTracking
- okButtonText
- on
- open
- options
- pos
- ref
- reject
- result
- size
- style
- styleSheet
- textEchoMode
- textValue
- visible
- windowFlags
- windowIcon
- windowOpacity
- windowState
- windowTitle
Properties
Optional attributes
• attributes? : WidgetAttributesMap
Inherited from ViewProps.attributes
Prop to set the Widget Attributes. example:
<View attributes={{[WidgetAttributes.WA_Disabled]: true}} />
Optional cancelButtonText
• cancelButtonText? : undefined | string
Optional comboBoxEditable
• comboBoxEditable? : undefined | false | true
Optional cursor
• cursor? : CursorShape | QCursor
Inherited from ViewProps.cursor
Sets the window mouse cursor. QWidget: setCursor
Optional doubleDecimals
• doubleDecimals? : undefined | number
Optional doubleMax
• doubleMax? : undefined | number
Optional doubleMin
• doubleMin? : undefined | number
Optional doubleStep
• doubleStep? : undefined | number
Optional doubleValue
• doubleValue? : undefined | number
Optional enableSizeGrip
• enableSizeGrip? : undefined | false | true
Inherited from DialogProps.enableSizeGrip
Optional enabled
• enabled? : undefined | false | true
Inherited from ViewProps.enabled
Sets the property that tells whether the widget is enabled. In general an enabled widget handles keyboard and mouse events; a disabled widget does not. QWidget: setEnabled
Optional focus
• focus? : FocusReason
Inherited from DialogProps.focus
Optional font
• font? : QFont
Inherited from DialogProps.font
Optional geometry
• geometry? : Geometry
Inherited from ViewProps.geometry
Sets the screen position as well as size of the widget. QWidget: setGeometry
Optional id
• id? : undefined | string
Sets the object name (id) of the widget in Qt. Object name can be analogous to id of an element in the web world. Using the objectName of the widget one can reference it in the Qt's stylesheet much like what we do with id in the web world. QWidget: setObjectName
Optional inputMode
• inputMode? : InputMode
Optional intMax
• intMax? : undefined | number
Optional intMin
• intMin? : undefined | number
Optional intStep
• intStep? : undefined | number
Optional intValue
• intValue? : undefined | number
Optional labelText
• labelText? : undefined | string
Optional maxSize
• maxSize? : Size
Inherited from ViewProps.maxSize
Sets the maximum size of the widget. QWidget: setMaximumSize
Optional minSize
• minSize? : Size
Inherited from ViewProps.minSize
Sets the minimum size of the widget. QWidget: setMinimumSize
Optional modal
• modal? : undefined | false | true
Inherited from DialogProps.modal
Optional mouseTracking
• mouseTracking? : undefined | false | true
Inherited from ViewProps.mouseTracking
Sets the property that tells whether mouseTracking is enabled for the widget. QWidget: setMouseTracking
Optional okButtonText
• okButtonText? : undefined | string
Optional on
• on? : Partial‹WidgetEventListeners | QInputDialogSignals›
Prop to set the event listener map. See Handlong Events
Optional open
• open? : undefined | false | true
Inherited from DialogProps.open
Optional options
• options? : InputDialogOptions
Optional pos
• pos? : Position
Sets the screen position of the widget. QWidget: move
Optional ref
• ref? : any
Prop to set the ref. The ref will return the underlying nodegui widget.
Optional reject
• reject? : undefined | false | true
Inherited from DialogProps.reject
Optional result
• result? : undefined | number
Inherited from DialogProps.result
Optional size
• size? : ViewSize
Sets both the minimum and maximum sizes of the widget. QWidget: setFixedSize
Optional style
• style? : undefined | string
Inherited from ViewProps.style
Sets the inline stylesheet property. QWidget: setInlineStyle
Optional styleSheet
• styleSheet? : undefined | string
Inherited from ViewProps.styleSheet
Sets the property that holds the widget's style sheet. QWidget: setStyleSheet
Optional textEchoMode
• textEchoMode? : EchoMode
Optional textValue
• textValue? : undefined | string
Optional visible
• visible? : undefined | false | true
Inherited from ViewProps.visible
Shows or hides the widget and its children. QWidget: show
Optional windowFlags
• windowFlags? : WindowFlagsMap
Inherited from ViewProps.windowFlags
Prop to set the Widget flags. example:
<View windowFlags={{[WindowType.SplashScreen]: true}} />
Optional windowIcon
• windowIcon? : QIcon
Inherited from ViewProps.windowIcon
Sets the window icon. QWidget: setWindowIcon
Optional windowOpacity
• windowOpacity? : undefined | number
Inherited from ViewProps.windowOpacity
This property holds the level of opacity for the window. QWidget: setWindowOpacity
Optional windowState
• windowState? : WindowState
Inherited from ViewProps.windowState
Sets the window state. QWidget: setWindowState
Optional windowTitle
• windowTitle? : undefined | string
Inherited from ViewProps.windowTitle
Sets the window title property. QWidget: setWindowTitle