00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef LISTBOXITEMS_H
00020 #define LISTBOXITEMS_H
00021
00022 class QListbox;
00023
00030 class LBArrowLine : public QListBoxItem
00031 {
00032 public:
00033 LBArrowLine(QListBox*);
00034
00035 int height(const QListBox*) const;
00036 int width(const QListBox*) const;
00037 void paint(QPainter*);
00038
00039 private:
00041 int h;
00043 int w;
00044 };
00045
00051 class LBArrowFilled : public QListBoxItem
00052 {
00053 public:
00054 LBArrowFilled(QListBox*);
00055
00056 int height(const QListBox*) const;
00057 int width(const QListBox*) const;
00058 void paint(QPainter*);
00059
00060 private:
00062 int h;
00064 int w;
00065 };
00066
00067
00068
00069
00070 #endif