QTabBar
Create and control tabbar.
This class is a JS wrapper around Qt's QTabBar class
The QTabBar class provides a tab bar, e.g. for use in tabbed dialogs.
Example
const { QTabBar } = require("@nodegui/nodegui");
const tabBar = new QTabBar();
Hierarchy
↳ QTabBar
Index
Constructors
Properties
Methods
- _id
- acceptDrops
- accessibleDescription
- accessibleName
- accessibleTabName
- activateWindow
- addAction
- addEventListener
- addTab
- adjustSize
- autoFillBackground
- autoHide
- baseSize
- changeCurrentOnDrag
- childAt
- children
- childrenRect
- clearFocus
- clearMask
- close
- colorCount
- contentsRect
- contextMenuPolicy
- count
- currentIndex
- delete
- deleteLater
- depth
- devicePixelRatio
- devicePixelRatioF
- documentMode
- drawBase
- dumpObjectInfo
- dumpObjectTree
- elideMode
- ensurePolished
- eventProcessed
- expanding
- focusProxy
- focusWidget
- font
- frameGeometry
- frameSize
- geometry
- getFlexNode
- grab
- grabKeyboard
- grabMouse
- hasFocus
- hasHeightForWidth
- hasMouseTracking
- hasTabletTracking
- height
- heightForWidth
- heightMM
- hide
- iconSize
- inherits
- inputMethodHints
- insertTab
- isActiveWindow
- isAncestorOf
- isEnabled
- isEnabledTo
- isFullScreen
- isHidden
- isMaximized
- isMinimized
- isModal
- isMovable
- isTabEnabled
- isVisible
- isVisibleTo
- isWindow
- isWindowModified
- killTimer
- layout
- logicalDpiX
- logicalDpiY
- lower
- mapFrom
- mapFromGlobal
- mapFromParent
- mapTo
- mapToGlobal
- mapToParent
- maximumHeight
- maximumSize
- maximumWidth
- minimumHeight
- minimumSize
- minimumSizeHint
- minimumWidth
- move
- moveTab
- nativeParentWidget
- nextInFocusChain
- normalGeometry
- objectName
- paintingActive
- parent
- parentWidget
- physicalDpiX
- physicalDpiY
- pos
- previousInFocusChain
- property
- raise
- rect
- releaseKeyboard
- releaseMouse
- releaseShortcut
- removeAction
- removeEventListener
- removeTab
- repaint
- repolish
- resize
- selectionBehaviorOnRemove
- setAcceptDrops
- setAccessibleDescription
- setAccessibleName
- setAccessibleTabName
- setAttribute
- setAutoFillBackground
- setAutoHide
- setBaseSize
- setChangeCurrentOnDrag
- setContentsMargins
- setContextMenuPolicy
- setCurrentIndex
- setCursor
- setDisabled
- setDocumentMode
- setDrawBase
- setElideMode
- setEnabled
- setEventProcessed
- setExpanding
- setFixedHeight
- setFixedSize
- setFixedWidth
- setFlexNodeSizeControlled
- setFocus
- setFocusPolicy
- setFocusProxy
- setFont
- setGeometry
- setGraphicsEffect
- setHidden
- setIconSize
- setInlineStyle
- setInputMethodHints
- setLayout
- setMaximumHeight
- setMaximumSize
- setMaximumWidth
- setMinimumHeight
- setMinimumSize
- setMinimumWidth
- setMouseTracking
- setMovable
- setObjectName
- setParent
- setProperty
- setSelectionBehaviorOnRemove
- setShape
- setShortcutAutoRepeat
- setShortcutEnabled
- setSizeIncrement
- setSizePolicy
- setStatusTip
- setStyleSheet
- setTabButton
- setTabData
- setTabEnabled
- setTabIcon
- setTabText
- setTabTextColor
- setTabToolTip
- setTabWhatsThis
- setTabletTracking
- setTabsClosable
- setToolTip
- setToolTipDuration
- setUpdatesEnabled
- setUsesScrollButtons
- setVisible
- setWhatsThis
- setWindowFilePath
- setWindowFlag
- setWindowIcon
- setWindowModified
- setWindowOpacity
- setWindowRole
- setWindowState
- setWindowTitle
- shape
- show
- showFullScreen
- showMaximized
- showMinimized
- showNormal
- size
- sizeHint
- sizeIncrement
- stackUnder
- startTimer
- statusTip
- style
- styleSheet
- tabAt
- tabData
- tabIcon
- tabRect
- tabText
- tabTextColor
- tabToolTip
- tabWhatsThis
- tabsClosable
- testAttribute
- toolTip
- toolTipDuration
- underMouse
- unsetCursor
- unsetLayoutDirection
- unsetLocale
- update
- updateGeometry
- updateMicroFocus
- updatesEnabled
- usesScrollButtons
- whatsThis
- width
- widthMM
- winId
- window
- windowFilePath
- windowHandle
- windowIcon
- windowOpacity
- windowRole
- windowState
- windowTitle
- x
- y
Constructors
constructor
+ new QTabBar(arg?
: QWidget‹QWidgetSignals› | NativeElement): QTabBar
Overrides QAbstractSlider.constructor
Parameters:
Name | Type |
---|---|
arg? | QWidget‹QWidgetSignals› | NativeElement |
Returns: QTabBar
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.
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
accessibleTabName
▸ accessibleTabName(index
: number): string
Parameters:
Name | Type |
---|---|
index | number |
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
: QTabBarSignals[SignalType], options?
: EventListenerOptions): void
Inherited from EventWidget.addEventListener
Type parameters:
▪ SignalType: keyof QTabBarSignals
Parameters:
Name | Type | Description |
---|---|---|
signalType | SignalType | SignalType is a signal from the widgets signals interface. |
callback | QTabBarSignals[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
addTab
▸ addTab(icon
: QIcon | undefined, text
: string): number
Parameters:
Name | Type |
---|---|
icon | QIcon | undefined |
text | string |
Returns: number
adjustSize
▸ adjustSize(): void
Inherited from QMenu.adjustSize
Returns: void
autoFillBackground
▸ autoFillBackground(): boolean
Inherited from QMenu.autoFillBackground
Returns: boolean
autoHide
▸ autoHide(): boolean
Returns: boolean
baseSize
▸ baseSize(): QSize
Returns: QSize
changeCurrentOnDrag
▸ changeCurrentOnDrag(): boolean
Returns: boolean
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
count
▸ count(): number
Returns: number
currentIndex
▸ currentIndex(): number
Returns: number
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
documentMode
▸ documentMode(): boolean
Returns: boolean
drawBase
▸ drawBase(): boolean
Returns: boolean
dumpObjectInfo
▸ dumpObjectInfo(): void
Inherited from QObject.dumpObjectInfo
Returns: void
dumpObjectTree
▸ dumpObjectTree(): void
Inherited from QObject.dumpObjectTree
Returns: void
elideMode
▸ elideMode(): TextElideMode
Returns: TextElideMode
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.
expanding
▸ expanding(): boolean
Returns: boolean
focusProxy
▸ focusProxy(): QWidget
Inherited from QMenu.focusProxy
Returns: QWidget
focusWidget
▸ focusWidget(): QWidget
Inherited from QMenu.focusWidget
Returns: QWidget
font
▸ font(): QFont
Returns: QFont