QFontDialog
Create and control font dialogs.
This class is a JS wrapper around Qt's QFontDialog class
The QFontDialog
class provides a dialog widget for selecting a font.
Example
const { QFontDialog } = require("@nodegui/nodegui");
const fontDialog = new QFontDialog();
fontDialog.exec();
const font = fontDialog.currentFont();
console.log(font);
Hierarchy
↳ QFontDialog
Index
Constructors
Properties
Methods
- _id
- accept
- acceptDrops
- accessibleDescription
- accessibleName
- activateWindow
- addAction
- addEventListener
- adjustSize
- autoFillBackground
- baseSize
- childAt
- children
- childrenRect
- clearFocus
- clearMask
- close
- colorCount
- contentsRect
- contextMenuPolicy
- currentFont
- delete
- deleteLater
- depth
- devicePixelRatio
- devicePixelRatioF
- done
- dumpObjectInfo
- dumpObjectTree
- ensurePolished
- eventProcessed
- exec
- focusProxy
- focusWidget
- font
- frameGeometry
- frameSize
- geometry
- getFlexNode
- grab
- grabKeyboard
- grabMouse
- hasFocus
- hasHeightForWidth
- hasMouseTracking
- hasTabletTracking
- height
- heightForWidth
- heightMM
- hide
- inherits
- inputMethodHints
- isActiveWindow
- isAncestorOf
- isEnabled
- isEnabledTo
- isFullScreen
- isHidden
- isMaximized
- isMinimized
- isModal
- isSizeGripEnabled
- isVisible
- isVisibleTo
- isWindow
- isWindowModified
- killTimer
- layout
- logicalDpiX
- logicalDpiY
- lower
- mapFrom
- mapFromGlobal
- mapFromParent
- mapTo
- mapToGlobal
- mapToParent
- maximumHeight
- maximumSize
- maximumWidth
- minimumHeight
- minimumSize
- minimumSizeHint
- minimumWidth
- move
- nativeParentWidget
- nextInFocusChain
- normalGeometry
- objectName
- open
- options
- paintingActive
- parent
- parentWidget
- physicalDpiX
- physicalDpiY
- pos
- previousInFocusChain
- property
- raise
- rect
- reject
- releaseKeyboard
- releaseMouse
- releaseShortcut
- removeAction
- removeEventListener
- repaint
- repolish
- resize
- result
- selectedFont
- setAcceptDrops
- setAccessibleDescription
- setAccessibleName
- setAttribute
- setAutoFillBackground
- setBaseSize
- setContentsMargins
- setContextMenuPolicy
- setCurrentFont
- setCursor
- setDisabled
- setEnabled
- setEventProcessed
- setFixedHeight
- setFixedSize
- setFixedWidth
- setFlexNodeSizeControlled
- setFocus
- setFocusPolicy
- setFocusProxy
- setFont
- setGeometry
- setGraphicsEffect
- setHidden
- setInlineStyle
- setInputMethodHints
- setLayout
- setMaximumHeight
- setMaximumSize
- setMaximumWidth
- setMinimumHeight
- setMinimumSize
- setMinimumWidth
- setModal
- setMouseTracking
- setObjectName
- setOption
- setOptions
- setParent
- setProperty
- setResult
- setShortcutAutoRepeat
- setShortcutEnabled
- setSizeGripEnabled
- setSizeIncrement
- setSizePolicy
- setStatusTip
- setStyleSheet
- setTabletTracking
- setToolTip
- setToolTipDuration
- setUpdatesEnabled
- setVisible
- setWhatsThis
- setWindowFilePath
- setWindowFlag
- setWindowIcon
- setWindowModified
- setWindowOpacity
- setWindowRole
- setWindowState
- setWindowTitle
- show
- showFullScreen
- showMaximized
- showMinimized
- showNormal
- size
- sizeHint
- sizeIncrement
- stackUnder
- startTimer
- statusTip
- style
- styleSheet
- testAttribute
- testOption
- toolTip
- toolTipDuration
- underMouse
- unsetCursor
- unsetLayoutDirection
- unsetLocale
- update
- updateGeometry
- updateMicroFocus
- updatesEnabled
- whatsThis
- width
- widthMM
- winId
- window
- windowFilePath
- windowHandle
- windowIcon
- windowOpacity
- windowRole
- windowState
- windowTitle
- x
- y
Constructors
constructor
+ new QFontDialog(arg?
: QWidget‹QWidgetSignals› | NativeElement): QFontDialog
Overrides QDialog.constructor
Parameters:
Name | Type |
---|---|
arg? | QWidget‹QWidgetSignals› | NativeElement |
Returns: QFontDialog
Properties
_rawInlineStyle
• _rawInlineStyle: string
Inherited from QMenu._rawInlineStyle
native
• native: NativeElement | null
Inherited from Component.native
type
• type: string
Methods
_id
▸ _id(): number
Get an ID identifying the underlying C++ object.
This can be useful when debugging memory problems with help from
setLogCreateQObject()
and setLogDestroyQObject()
. The number is
hash of the memory address of the C++ object.
Returns: number
a unique number which is valid for the lifetime of the C++ object.
accept
▸ accept(): void
Returns: void
acceptDrops
▸ acceptDrops(): boolean
Inherited from QMenu.acceptDrops
Returns: boolean
accessibleDescription
▸ accessibleDescription(): string
Inherited from QMenu.accessibleDescription
Returns: string
accessibleName
▸ accessibleName(): string
Inherited from QMenu.accessibleName
Returns: string
activateWindow
▸ activateWindow(): void
Inherited from QMenu.activateWindow
Returns: void
addAction
▸ addAction(action
: QAction | string): QAction
Inherited from QMenu.addAction
Parameters:
Name | Type |
---|---|
action | QAction | string |
Returns: QAction
addEventListener
▸ addEventListener‹SignalType›(signalType
: SignalType, callback
: QFontDialogSignals[SignalType], options?
: EventListenerOptions): void
Inherited from EventWidget.addEventListener
Type parameters:
▪ SignalType: keyof QFontDialogSignals
Parameters:
Name | Type | Description |
---|---|---|
signalType | SignalType | SignalType is a signal from the widgets signals interface. |
callback | QFontDialogSignals[SignalType] | Corresponding callback for the signal as mentioned in the widget's signal interface |
options? | EventListenerOptions | Extra optional options controlling how this event listener is added. |
Returns: void
void
For example in the case of QPushButton:
const button = new QPushButton();
button.addEventListener('clicked',(checked)=>console.log("clicked"));
// here clicked is a value from QPushButtonSignals interface
▸ addEventListener(eventType
: WidgetEventTypes, callback
: function, options?
: EventListenerOptions): void
Inherited from EventWidget.addEventListener
Parameters:
▪ eventType: WidgetEventTypes
▪ callback: function
▸ (event?
: NativeRawPointer‹"QEvent"›): void
Parameters:
Name | Type |
---|---|
event? | NativeRawPointer‹"QEvent"› |
▪Optional
options: EventListenerOptions
Extra optional options controlling how this event listener is added.
For example in the case of QPushButton:
const button = new QPushButton();
button.addEventListener(WidgetEventTypes.HoverEnter,()=>console.log("hovered"));
Returns: void
adjustSize
▸ adjustSize(): void
Inherited from QMenu.adjustSize
Returns: void
autoFillBackground
▸ autoFillBackground(): boolean
Inherited from QMenu.autoFillBackground
Returns: boolean
baseSize
▸ baseSize(): QSize
Returns: QSize
childAt
▸ childAt(x
: number, y
: number): QWidget
Parameters:
Name | Type |
---|---|
x | number |
y | number |
Returns: QWidget
children
▸ children(): QObject[]
Inherited from QObject.children
Returns: QObject[]
childrenRect
▸ childrenRect(): QRect
Inherited from QMenu.childrenRect
Returns: QRect
clearFocus
▸ clearFocus(): void
Inherited from QMenu.clearFocus
Returns: void
clearMask
▸ clearMask(): void
Inherited from QMenu.clearMask
Returns: void
close
▸ close(): boolean
Returns: boolean
colorCount
▸ colorCount(): number
Inherited from QMenu.colorCount
Returns: number
contentsRect
▸ contentsRect(): QRect
Inherited from QMenu.contentsRect
Returns: QRect
contextMenuPolicy
▸ contextMenuPolicy(): ContextMenuPolicy
Inherited from QMenu.contextMenuPolicy
Returns: ContextMenuPolicy
currentFont
▸ currentFont(): QFont
Returns: QFont
delete
▸ delete(): void
Returns: void
deleteLater
▸ deleteLater(): void
Inherited from QObject.deleteLater
Returns: void
depth
▸ depth(): number
Returns: number
devicePixelRatio
▸ devicePixelRatio(): number
Inherited from QMenu.devicePixelRatio
Returns: number
devicePixelRatioF
▸ devicePixelRatioF(): number
Inherited from QMenu.devicePixelRatioF
Returns: number
done
▸ done(r
: number): void
Parameters:
Name | Type |
---|---|
r | number |
Returns: void
dumpObjectInfo
▸ dumpObjectInfo(): void
Inherited from QObject.dumpObjectInfo
Returns: void
dumpObjectTree
▸ dumpObjectTree(): void
Inherited from QObject.dumpObjectTree
Returns: void
ensurePolished
▸ ensurePolished(): void
Inherited from QMenu.ensurePolished
Returns: void
eventProcessed
▸ eventProcessed(): boolean
Inherited from EventWidget.eventProcessed
Get the state of the event processed flag
See setEventProcessed()
.
Returns: boolean
boolean True if the current event is flagged as processed.
exec
▸ exec(): DialogCode
Returns: DialogCode
focusProxy
▸ focusProxy(): QWidget
Inherited from QMenu.focusProxy
Returns: QWidget
focusWidget
▸ focusWidget(): QWidget
Inherited from QMenu.focusWidget
Returns: QWidget
font
▸ font(): QFont
Returns: QFont
frameGeometry
▸ frameGeometry(): QRect
Inherited from QMenu.frameGeometry
Returns: QRect
frameSize
▸ frameSize(): QSize
Inherited from QMenu.frameSize
Returns: QSize
geometry
▸ geometry(): QRect
Returns: QRect
getFlexNode
▸ getFlexNode(): FlexNode
Inherited from YogaWidget.getFlexNode
Returns: FlexNode
grab
Parameters:
Name | Type |
---|---|
rect? | QRect |
Returns: QPixmap
grabKeyboard
▸ grabKeyboard(): void
Inherited from QMenu.grabKeyboard
Returns: void
grabMouse
▸ grabMouse(): void
Inherited from QMenu.grabMouse
Returns: void
hasFocus
▸ hasFocus(): boolean
Returns: boolean
hasHeightForWidth
▸ hasHeightForWidth(): boolean
Inherited from QMenu.hasHeightForWidth
Returns: boolean
hasMouseTracking
▸ hasMouseTracking(): boolean
Inherited from QMenu.hasMouseTracking
Returns: boolean
hasTabletTracking
▸ hasTabletTracking(): boolean
Inherited from QMenu.hasTabletTracking
Returns: boolean
height
▸ height(): number
Returns: number
heightForWidth
▸ heightForWidth(w
: number): number
Inherited from QMenu.heightForWidth
Parameters:
Name | Type |
---|---|
w | number |
Returns: number
heightMM
▸ heightMM(): number
Returns: number
hide
▸ hide(): void
Returns: void
inherits
▸ inherits(className
: string): boolean
Inherited from QObject.inherits
Parameters:
Name | Type |
---|---|
className | string |
Returns: boolean
inputMethodHints
▸ inputMethodHints(): number
Inherited from QMenu.inputMethodHints
Returns: number
isActiveWindow
▸ isActiveWindow(): boolean
Inherited from QMenu.isActiveWindow
Returns: boolean
isAncestorOf
▸ isAncestorOf(child
: QWidget): boolean
Inherited from QMenu.isAncestorOf
Parameters:
Name | Type |
---|---|
child | QWidget |
Returns: boolean
isEnabled
▸ isEnabled(): boolean
Inherited from QMenu.isEnabled
Returns: boolean
isEnabledTo
▸ isEnabledTo(ancestor
: QWidget): boolean
Inherited from QMenu.isEnabledTo
Parameters:
Name | Type |
---|---|
ancestor | QWidget |
Returns: boolean
isFullScreen
▸ isFullScreen(): boolean
Inherited from QMenu.isFullScreen
Returns: boolean