1 /***************************************************************************
2 phraselistitem.cpp - description
5 copyright : (C) 2002 by Gunnar Schmi Dt
6 email : kmouth@schmi-dt.de
7 ***************************************************************************/
9 /***************************************************************************
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
16 ***************************************************************************/
18 #include "phraselistitem.h"
22 PhraseListItem::PhraseListItem (const QString
& text
)
23 : QListBoxText::Q3ListBoxText(text
) {
26 PhraseListItem::~PhraseListItem() {
29 bool PhraseListItem::drawCursor() const {
30 if ((Q3ListBoxItem
*)this != listBox()->item (listBox()->currentItem()))
33 for (Q3ListBoxItem
*item
= listBox()->firstItem(); item
!= 0; item
= item
->next() ) {
34 if (item
->isSelected())
40 int PhraseListItem::rtti() const {
44 void PhraseListItem::paint (QPainter
*p
) {
45 Q3ListBoxText::paint (p
);
48 QRect
r (0, 0, listBox()->maxItemWidth(), height (listBox()));
49 listBox()->style().drawPrimitive (QStyle::PE_FocusRect
, p
, r
,
50 listBox()->colorGroup());