website/docs/api/generated/classes/qclipboard.md
The QClipboard class provides access to the window system clipboard.
This class is a JS wrapper around Qt's QClipboard class
const {
QClipboard,
QClipboardMode,
QApplication
} = require("@nodegui/nodegui");
const clipboard = QApplication.clipboard();
const text = clipboard.text(QClipboardMode.Clipboard);
↳ QClipboard
+ new QClipboard(native: NativeElement): QClipboard
Overrides QObject.constructor
Parameters:
| Name | Type |
|---|---|
native | NativeElement |
Returns: QClipboard
• native: NativeElement | null
Inherited from Component.native
▸ _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.
▸ addEventListener‹SignalType›(signalType: SignalType, callback: QClipboardSignals[SignalType], options?: EventListenerOptions): void
Inherited from EventWidget.addEventListener
Type parameters:
▪ SignalType: keyof QClipboardSignals
Parameters:
| Name | Type | Description |
|---|---|---|
signalType | SignalType | SignalType is a signal from the widgets signals interface. |
callback | QClipboardSignals[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
▸ children(): QObject[]
Inherited from QObject.children
Returns: QObject[]
▸ clear(mode: QClipboardMode): void
Parameters:
| Name | Type | Default |
|---|---|---|
mode | QClipboardMode | QClipboardMode.Clipboard |
Returns: void
▸ delete(): void
Returns: void
▸ deleteLater(): void
Inherited from QObject.deleteLater
Returns: void
▸ dumpObjectInfo(): void
Inherited from QObject.dumpObjectInfo
Returns: void
▸ dumpObjectTree(): void
Inherited from QObject.dumpObjectTree
Returns: void
▸ 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.
▸ inherits(className: string): boolean
Inherited from QObject.inherits
Parameters:
| Name | Type |
|---|---|
className | string |
Returns: boolean
▸ killTimer(timerId: number): void
Inherited from QObject.killTimer
Parameters:
| Name | Type |
|---|---|
timerId | number |
Returns: void
▸ mimeData(mode: QClipboardMode): QMimeData
Parameters:
| Name | Type | Default |
|---|---|---|
mode | QClipboardMode | QClipboardMode.Clipboard |
Returns: QMimeData
▸ objectName(): string
Inherited from QObject.objectName
Returns: string
▸ parent(): QObject
Returns: QObject
▸ pixmap(mode: QClipboardMode): QPixmap
Parameters:
| Name | Type |
|---|---|
mode | QClipboardMode |
Returns: QPixmap
▸ property(name: string): QVariant
Inherited from QObject.property
Parameters:
| Name | Type |
|---|---|
name | string |
Returns: QVariant
▸ removeEventListener‹SignalType›(signalType: SignalType, callback: QClipboardSignals[SignalType], options?: EventListenerOptions): void
Inherited from EventWidget.removeEventListener
Type parameters:
▪ SignalType: keyof QClipboardSignals
Parameters:
| Name | Type |
|---|---|
signalType | SignalType |
callback | QClipboardSignals[SignalType] |
options? | EventListenerOptions |
Returns: void
▸ removeEventListener(eventType: WidgetEventTypes, callback: function, options?: EventListenerOptions): void
Inherited from EventWidget.removeEventListener
Parameters:
▪ eventType: WidgetEventTypes
▪ callback: function
▸ (event?: NativeRawPointer‹"QEvent"›): void
Parameters:
| Name | Type |
|---|---|
event? | NativeRawPointer‹"QEvent"› |
▪Optional options: EventListenerOptions
Returns: void
▸ setEventProcessed(isProcessed: boolean): void
Inherited from EventWidget.setEventProcessed
Mark the current event as having been processed
This method is used to indicate that the currently dispatched event has been processed and no further processing by superclasses is required. It only makes sense to call this method from an event handler.
When set, this flag will cause NodeGui's QObject::event() method to
return true and not call the superclass event(), effectively preventing
any further processing on this event.
Parameters:
| Name | Type | Description |
|---|---|---|
isProcessed | boolean | true if the event has been processed. |
Returns: void
▸ setMimeData(src: QMimeData, mode: QClipboardMode): void
Parameters:
| Name | Type | Default |
|---|---|---|
src | QMimeData | - |
mode | QClipboardMode | QClipboardMode.Clipboard |
Returns: void
▸ setObjectName(objectName: string): void
Inherited from QObject.setObjectName
Parameters:
| Name | Type |
|---|---|
objectName | string |
Returns: void
▸ setParent(parent: QObject): void
Inherited from QObject.setParent
Parameters:
| Name | Type |
|---|---|
parent | QObject |
Returns: void
▸ setPixmap(pixmap: QPixmap, mode: QClipboardMode): void
Parameters:
| Name | Type | Default |
|---|---|---|
pixmap | QPixmap | - |
mode | QClipboardMode | QClipboardMode.Clipboard |
Returns: void
▸ setProperty(name: string, value: QVariantType): boolean
Inherited from QObject.setProperty
Parameters:
| Name | Type |
|---|---|
name | string |
value | QVariantType |
Returns: boolean
▸ setText(text: string, mode: QClipboardMode): void
Parameters:
| Name | Type | Default |
|---|---|---|
text | string | - |
mode | QClipboardMode | QClipboardMode.Clipboard |
Returns: void
▸ startTimer(intervalMS: number, timerType: TimerType): number
Inherited from QObject.startTimer
Parameters:
| Name | Type | Default |
|---|---|---|
intervalMS | number | - |
timerType | TimerType | TimerType.CoarseTimer |
Returns: number
▸ text(mode: QClipboardMode): string
Parameters:
| Name | Type | Default |
|---|---|---|
mode | QClipboardMode | QClipboardMode.Clipboard |
Returns: string