The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

QComboBox - Interface to the Qt QComboBox class

SYNOPSIS

use QComboBox;

Inherits QWidget.

Requires QPixmap.

Member functions

new, autoResize, changeItem, count, currentItem, insertionPolicy, insertItem, insertStrList, maxCount, pixmap, removeItem, setAutoResize, setCurrentItem, setInsertionPolicy, setMaxCount, setSizeLimit, sizeLimit, text

DESCRIPTION

The only significant change is insertStrList(). For obvious reasons, this function cannot be directly converted to Perl because of it's list argument. Perl simplifies the matter greatly by allowing a simple argument-list change to insertStrList(index, str1, ..., strN). Just set the index argument to -1 of you want it the items to be appended.

EXPORTED

The %Policy hash is exported into the user's namespace. It contains all the constants that were referenced through QComboBox:: in C++.

CAVEATS

If there is sufficient demand, I'm more than willing to change the insertStrList() arguments to make index the last argument and defaulted to -1. This would break scripts, so be warned.

AUTHOR

Ashley Winters <jql@accessone.com>