QApplication
QApplication is the root object for the entire application. It manages app level settings.
This class is a JS wrapper around Qt's QApplication class
The QApplication class manages the GUI application's control flow and main settings. In NodeGui you will never create an instance of it manually. NodeGui's internal runtime Qode does it for you on app start. You can access the initialised QApplication though if needed.
Example
const { QApplication } = require("@nodegui/nodegui");
const qApp = QApplication.instance();qApp.quit();Hierarchy
↳ NodeObject‹QApplicationSignals›
↳ QApplication
Index
Constructors
Properties
Methods
- addEventListener
- exec
- exit
- inherits
- objectName
- processEvents
- property
- quit
- quitOnLastWindowClosed
- removeEventListener
- setNodeParent
- setObjectName
- setProperty
- setQuitOnLastWindowClosed
- clipboard
- instance
- style
Constructors
constructor
+ new QApplication(): QApplication
Overrides EventWidget.constructor
Returns: QApplication
+ new QApplication(native: NativeElement): QApplication
Overrides EventWidget.constructor
Parameters:
| Name | Type |
|---|---|
native | NativeElement |
Returns: QApplication
Properties
native
• native: NativeElement
nodeChildren
• nodeChildren: Set‹Component›
Inherited from Component.nodeChildren
Optional nodeParent
• nodeParent? : Component
Inherited from Component.nodeParent
Methods
addEventListener
▸ addEventListener<SignalType>(signalType: SignalType, callback: QApplicationSignals[SignalType]): void
Inherited from EventWidget.addEventListener
Type parameters:
▪ SignalType: keyof QApplicationSignals
Parameters:
| Name | Type | Description |
|---|---|---|
signalType | SignalType | SignalType is a signal from the widgets signals interface. |
callback | QApplicationSignals[SignalType] | Corresponding callback for the signal as mentioned in the widget's signal interface |
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): void
Inherited from EventWidget.addEventListener
Parameters:
▪ eventType: WidgetEventTypes
▪ callback: function
For example in the case of QPushButton:
const button = new QPushButton();button.addEventListener(WidgetEventTypes.HoverEnter,()=>console.log("hovered"));▸ (event?: NativeRawPointer‹"QEvent"›): void
Parameters:
| Name | Type |
|---|---|
event? | NativeRawPointer‹"QEvent"› |
Returns: void
exec
▸ exec(): number
Returns: number
exit
▸ exit(exitCode: number): number
Parameters:
| Name | Type |
|---|---|
exitCode | number |
Returns: number
inherits
▸ inherits(className: string): boolean
Inherited from NodeObject.inherits
Parameters:
| Name | Type |
|---|---|
className | string |
Returns: boolean
objectName
▸ objectName(): string
Inherited from NodeObject.objectName
Returns: string
processEvents
▸ processEvents(): void
Returns: void
property
▸ property(name: string): QVariant
Inherited from NodeObject.property
Parameters:
| Name | Type |
|---|---|
name | string |
Returns: QVariant
quit
▸ quit(): number
Returns: number
quitOnLastWindowClosed
▸ quitOnLastWindowClosed(): boolean
Returns: boolean
removeEventListener
▸ removeEventListener<SignalType>(signalType: SignalType, callback: QApplicationSignals[SignalType]): void
Inherited from EventWidget.removeEventListener
Type parameters:
▪ SignalType: keyof QApplicationSignals
Parameters:
| Name | Type |
|---|---|
signalType | SignalType |
callback | QApplicationSignals[SignalType] |
Returns: void
▸ removeEventListener(eventType: WidgetEventTypes, callback: function): void
Inherited from EventWidget.removeEventListener
Parameters:
▪ eventType: WidgetEventTypes
▪ callback: function
▸ (event?: NativeRawPointer‹"QEvent"›): void
Parameters:
| Name | Type |
|---|---|
event? | NativeRawPointer‹"QEvent"› |
Returns: void
setNodeParent
▸ setNodeParent(parent?: Component): void
Inherited from Component.setNodeParent
Parameters:
| Name | Type |
|---|---|
parent? | Component |
Returns: void
setObjectName
▸ setObjectName(objectName: string): void
Inherited from NodeObject.setObjectName
Parameters:
| Name | Type |
|---|---|
objectName | string |
Returns: void
setProperty
▸ setProperty(name: string, value: QVariantType): boolean
Inherited from NodeObject.setProperty
Parameters:
| Name | Type |
|---|---|
name | string |
value | QVariantType |
Returns: boolean
setQuitOnLastWindowClosed
▸ setQuitOnLastWindowClosed(quit: boolean): void
Parameters:
| Name | Type |
|---|---|
quit | boolean |
Returns: void
Static clipboard
▸ clipboard(): QClipboard
Returns: QClipboard
Static instance
▸ instance(): QApplication
Returns: QApplication
Static style
▸ style(): QStyle
Returns: QStyle
NodeGui