
We bake cookies in your browser for a better experience. Using this site means that you consent.Read More
TheQ3ListBoxItem class is the base class of all list box items.More...
| Header: | #include <Q3ListBoxItem> |
| Inherited By: |
| Q3ListBoxItem(Q3ListBox * listbox = 0) | |
| Q3ListBoxItem(Q3ListBox * listbox, Q3ListBoxItem * after) | |
| virtual | ~Q3ListBoxItem() |
| bool | current() const |
| virtual int | height(const Q3ListBox * lb) const |
| bool | isCurrent() const |
| bool | isSelectable() const |
| bool | isSelected() const |
| Q3ListBox * | listBox() const |
| Q3ListBoxItem * | next() const |
| virtual const QPixmap * | pixmap() const |
| Q3ListBoxItem * | prev() const |
| virtual int | rtti() const |
| bool | selected() const |
| void | setSelectable(bool b) |
| virtual QString | text() const |
| virtual int | width(const Q3ListBox * lb) const |
| virtual void | paint(QPainter * p) = 0 |
| void | setCustomHighlighting(bool b) |
| virtual void | setText(const QString & text) |
TheQ3ListBoxItem class is the base class of all list box items.
This class is an abstract base class used for all list box items. If you need to insert customized items into aQ3ListBox you must inherit this class and reimplementpaint(),height() andwidth().
See alsoQ3ListBox.
Constructs an empty list box item in the list boxlistbox.
Constructs an empty list box item in the list boxlistbox and inserts it after the itemafter or at the beginning ifafter is 0.
[virtual]Q3ListBoxItem::~Q3ListBoxItem()Destroys the list box item.
UseisCurrent() instead. Returns true ifisCurrent() returns true.
[virtual]int Q3ListBoxItem::height(constQ3ListBox * lb) constImplement this function to return the height of your item. Thelb parameter is the same aslistBox() and is provided for convenience and compatibility.
The default implementation returnsQApplication::globalStrut()'s height.
Returns true if the item is the current item; otherwise returns false.
See alsoQ3ListBox::currentItem(),Q3ListBox::item(), andisSelected().
Returns true if this item is selectable (the default); otherwise returns false.
See alsosetSelectable().
Returns true if the item is selected; otherwise returns false.
See alsoQ3ListBox::isSelected() andisCurrent().
Returns a pointer to the list box containing this item.
Returns the item that comes after this in the list box. If this is the last item, 0 is returned.
See alsoprev().
[pure virtual protected]void Q3ListBoxItem::paint(QPainter * p)Implement this function to draw your item. The painter,p, is already open for painting.
[virtual]constQPixmap * Q3ListBoxItem::pixmap() constReturns the pixmap associated with the item, or 0 if there isn't one.
The default implementation returns 0.
Returns the item which comes before this in the list box. If this is the first item, 0 is returned.
See alsonext().
[virtual]int Q3ListBoxItem::rtti() constReturns 0.
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.
UseisSelected() instead. Returns true ifisSelected() returns true.
[protected]void Q3ListBoxItem::setCustomHighlighting(bool b)Defines whether the list box item is responsible for drawing itself in a highlighted state when being selected.
Ifb is false (the default), the list box will draw some default highlight indicator before callingpaint().
See alsoisSelected() andpaint().
Ifb is true (the default) then this item can be selected by the user; otherwise this item cannot be selected by the user.
See alsoisSelectable().
[virtual protected]void Q3ListBoxItem::setText(constQString & text)Sets the text of theQ3ListBoxItem totext. Thistext is also used for sorting. The text is not shown unless explicitly drawn inpaint().
See alsotext().
[virtual]QString Q3ListBoxItem::text() constReturns the text of the item. This text is also used for sorting.
See alsosetText().
[virtual]int Q3ListBoxItem::width(constQ3ListBox * lb) constReimplement this function to return the width of your item. Thelb parameter is the same aslistBox() and is provided for convenience and compatibility.
The default implementation returnsQApplication::globalStrut()'s width.
© 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 theGNU 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.