The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

QTabBar - Interface to the Qt QTabBar class

SYNOPSIS

use QTabBar;

Inherits QWidget.

Member functions

new, addTab, isTabEnabled, setTabEnabled

QTab

    $tab = new QTab;
    $$tab{label} = "Hello World";
    $$tab{r} = new QRect(1, 2, 3, 4);
    $$tab{enabled} = 1;
    $$tab{id} = 10;

DESCRIPTION

What you see is what you get.

NOTES

QTab is a tied hash reference which accesses a real QTab. keys() does not work on a QTab.

AUTHOR

Ashley Winters <jql@accessone.com>