Home · All Classes · Main Classes · Grouped Classes · Modules · Functions

starrating.h Example File
itemviews/stardelegate/starrating.h

 #ifndef STARRATING_H
 #define STARRATING_H

 #include <QMetaType>
 #include <QPointF>
 #include <QVector>

 class StarRating
 {
 public:
     enum EditMode { Editable, ReadOnly };

     StarRating(int starCount = 1, int maxStarCount = 5);

     void paint(QPainter *painter, const QRect &rect,
                const QPalette &palette, EditMode mode) const;
     QSize sizeHint() const;
     int starCount() const { return myStarCount; }
     int maxStarCount() const { return myMaxStarCount; }
     void setStarCount(int starCount) { myStarCount = starCount; }
     void setMaxStarCount(int maxStarCount) { myMaxStarCount = maxStarCount; }

 private:
     QPolygonF starPolygon;
     QPolygonF diamondPolygon;
     int myStarCount;
     int myMaxStarCount;
 };

 Q_DECLARE_METATYPE(StarRating)

 #endif


Copyright © 2007 Trolltech Trademarks
Qt 4.3.0-snapshot-20070202