* adds basic typedoc * backup * Adds all docs to source code * Adds autogenerated docs * Fixes doc links * Updates docs
101 lines
1.9 KiB
Markdown
101 lines
1.9 KiB
Markdown
---
|
||
id: "component"
|
||
title: "Component"
|
||
sidebar_label: "Component"
|
||
---
|
||
|
||
> Abstract class that is root most base class for all widgets and layouts in the NodeGui World.
|
||
|
||
*This class is used to add core properties to all widgets, layouts etc in NodeGui world.
|
||
Currently it helps us maintain references to the native C++ instance of the widget or layout.
|
||
It also helps in preventing gc of child elements of a layout or widget**
|
||
|
||
`Component` is an abstract class and hence no instances of the same should be created.
|
||
It exists so that we can add core functionalities to all widgets and layouts easily. This is an internal class.
|
||
|
||
Its the root base class in NodeGui world.
|
||
|
||
## Hierarchy
|
||
|
||
* **Component**
|
||
|
||
↳ [QClipboard](qclipboard.md)
|
||
|
||
↳ [QStyle](qstyle.md)
|
||
|
||
↳ [QApplication](qapplication.md)
|
||
|
||
↳ [QKeySequence](qkeysequence.md)
|
||
|
||
↳ [QVariant](qvariant.md)
|
||
|
||
↳ [QPixmap](qpixmap.md)
|
||
|
||
↳ [QIcon](qicon.md)
|
||
|
||
↳ [EventWidget](eventwidget.md)
|
||
|
||
↳ [QSize](qsize.md)
|
||
|
||
↳ [QCursor](qcursor.md)
|
||
|
||
↳ [QFontDatabase](qfontdatabase.md)
|
||
|
||
↳ [QRect](qrect.md)
|
||
|
||
↳ [QTableWidgetItem](qtablewidgetitem.md)
|
||
|
||
↳ [QTreeWidgetItem](qtreewidgetitem.md)
|
||
|
||
↳ [QColor](qcolor.md)
|
||
|
||
↳ [QPoint](qpoint.md)
|
||
|
||
↳ [QPainter](qpainter.md)
|
||
|
||
↳ [QUrl](qurl.md)
|
||
|
||
## Index
|
||
|
||
### Properties
|
||
|
||
* [native](component.md#abstract-native)
|
||
* [nodeChildren](component.md#nodechildren)
|
||
* [nodeParent](component.md#optional-nodeparent)
|
||
|
||
### Methods
|
||
|
||
* [setNodeParent](component.md#setnodeparent)
|
||
|
||
## Properties
|
||
|
||
### `Abstract` native
|
||
|
||
• **native**: *[NativeElement](../globals.md#nativeelement)*
|
||
|
||
___
|
||
|
||
### nodeChildren
|
||
|
||
• **nodeChildren**: *Set‹unknown›* = new Set()
|
||
|
||
___
|
||
|
||
### `Optional` nodeParent
|
||
|
||
• **nodeParent**? : *[Component](component.md)*
|
||
|
||
## Methods
|
||
|
||
### setNodeParent
|
||
|
||
▸ **setNodeParent**(`parent?`: [Component](component.md)): *void*
|
||
|
||
**Parameters:**
|
||
|
||
Name | Type |
|
||
------ | ------ |
|
||
`parent?` | [Component](component.md) |
|
||
|
||
**Returns:** *void*
|