Q3ListBoxPixmap Class

The Q3ListBoxPixmap class provides list box items with a pixmap and optional text. More...

Header: #include <Q3ListBoxPixmap>
Inherits: Q3ListBoxItem

Public Functions

Q3ListBoxPixmap(Q3ListBox * listbox, const QPixmap & pixmap)
Q3ListBoxPixmap(const QPixmap & pixmap)
Q3ListBoxPixmap(Q3ListBox * listbox, const QPixmap & pixmap, Q3ListBoxItem * after)
Q3ListBoxPixmap(Q3ListBox * listbox, const QPixmap & pix, const QString & text)
Q3ListBoxPixmap(const QPixmap & pix, const QString & text)
Q3ListBoxPixmap(Q3ListBox * listbox, const QPixmap & pix, const QString & text, Q3ListBoxItem * after)
~Q3ListBoxPixmap()

Reimplemented Public Functions

virtual int height(const Q3ListBox * lb) const
virtual const QPixmap * pixmap() const
virtual int rtti() const
virtual int width(const Q3ListBox * lb) const

Reimplemented Protected Functions

virtual void paint(QPainter * painter)

Detailed Description

The Q3ListBoxPixmap class provides list box items with a pixmap and optional text.

Items of this class are drawn with the pixmap on the left with the optional text to the right of the pixmap.

See also Q3ListBox and Q3ListBoxItem.

Member Function Documentation

Q3ListBoxPixmap::Q3ListBoxPixmap(Q3ListBox * listbox, const QPixmap & pixmap)

Constructs a new list box item in list box listbox showing the pixmap pixmap.

Q3ListBoxPixmap::Q3ListBoxPixmap(const QPixmap & pixmap)

Constructs a new list box item showing the pixmap pixmap.

Q3ListBoxPixmap::Q3ListBoxPixmap(Q3ListBox * listbox, const QPixmap & pixmap, Q3ListBoxItem * after)

Constructs a new list box item in list box listbox showing the pixmap pixmap. The item gets inserted after the item after, or at the beginning if after is 0.

Q3ListBoxPixmap::Q3ListBoxPixmap(Q3ListBox * listbox, const QPixmap & pix, const QString & text)

Constructs a new list box item in list box listbox showing the pixmap pix and the text text.

Q3ListBoxPixmap::Q3ListBoxPixmap(const QPixmap & pix, const QString & text)

Constructs a new list box item showing the pixmap pix and the text to text.

Q3ListBoxPixmap::Q3ListBoxPixmap(Q3ListBox * listbox, const QPixmap & pix, const QString & text, Q3ListBoxItem * after)

Constructs a new list box item in list box listbox showing the pixmap pix and the string text. The item gets inserted after the item after, or at the beginning if after is 0.

Q3ListBoxPixmap::~Q3ListBoxPixmap()

Destroys the item.

[virtual] int Q3ListBoxPixmap::height(const Q3ListBox * lb) const

Reimplemented from Q3ListBoxItem::height().

Returns the height of the pixmap in list box lb.

See also paint() and width().

[virtual protected] void Q3ListBoxPixmap::paint(QPainter * painter)

Reimplemented from Q3ListBoxItem::paint().

Draws the pixmap using painter.

[virtual] const QPixmap * Q3ListBoxPixmap::pixmap() const

Reimplemented from Q3ListBoxItem::pixmap().

Returns the pixmap associated with the item.

[virtual] int Q3ListBoxPixmap::rtti() const

Reimplemented from Q3ListBoxItem::rtti().

Returns 2.

Make your derived classes return their own values for rtti(), and you can distinguish between listbox items. You should use values greater than 1000 preferably a large random number, to allow for extensions to this class.

[virtual] int Q3ListBoxPixmap::width(const Q3ListBox * lb) const

Reimplemented from Q3ListBoxItem::width().

Returns the width of the pixmap plus some margin in list box lb.

See also paint() and height().

© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.