2013-04-22 23:00:27 +00:00
|
|
|
#include "starwidget.h"
|
|
|
|
#include <QSvgRenderer>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QPaintEvent>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QMouseEvent>
|
|
|
|
|
2013-04-27 15:27:27 +00:00
|
|
|
QPixmap* StarWidget::activeStar = 0;
|
|
|
|
QPixmap* StarWidget::inactiveStar = 0;
|
2013-04-22 23:00:27 +00:00
|
|
|
|
2013-04-27 15:27:27 +00:00
|
|
|
QPixmap StarWidget::starActive()
|
2013-04-22 23:00:27 +00:00
|
|
|
{
|
2013-04-27 15:27:27 +00:00
|
|
|
return (*activeStar);
|
2013-04-22 23:00:27 +00:00
|
|
|
}
|
|
|
|
|
2013-04-27 15:27:27 +00:00
|
|
|
QPixmap StarWidget::starInactive()
|
2013-04-22 23:00:27 +00:00
|
|
|
{
|
2013-04-27 15:27:27 +00:00
|
|
|
return (*inactiveStar);
|
2013-04-22 23:00:27 +00:00
|
|
|
}
|
|
|
|
|
2013-04-27 15:27:27 +00:00
|
|
|
int StarWidget::currentStars() const
|
2013-04-22 23:00:27 +00:00
|
|
|
{
|
2013-04-27 15:27:27 +00:00
|
|
|
return current;
|
2013-04-22 23:00:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void StarWidget::mouseReleaseEvent(QMouseEvent* event)
|
|
|
|
{
|
|
|
|
int starClicked = event->pos().x() / IMG_SIZE + 1;
|
2013-04-27 15:27:27 +00:00
|
|
|
if (starClicked > TOTALSTARS)
|
|
|
|
starClicked = TOTALSTARS;
|
2013-04-22 23:00:27 +00:00
|
|
|
|
|
|
|
if (current == starClicked)
|
|
|
|
current -= 1;
|
|
|
|
else
|
|
|
|
current = starClicked;
|
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void StarWidget::paintEvent(QPaintEvent* event)
|
|
|
|
{
|
|
|
|
QPainter p(this);
|
|
|
|
|
|
|
|
for(int i = 0; i < current; i++)
|
2013-04-27 15:27:27 +00:00
|
|
|
p.drawPixmap(i * IMG_SIZE + SPACING, 0, starActive());
|
2013-04-22 23:00:27 +00:00
|
|
|
|
2013-04-27 15:27:27 +00:00
|
|
|
for(int i = current; i < TOTALSTARS; i++)
|
|
|
|
p.drawPixmap(i * IMG_SIZE + SPACING, 0, starInactive());
|
2013-04-22 23:00:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void StarWidget::setCurrentStars(int value)
|
|
|
|
{
|
|
|
|
current = value;
|
|
|
|
update();
|
|
|
|
Q_EMIT valueChanged(current);
|
|
|
|
}
|
|
|
|
|
|
|
|
StarWidget::StarWidget(QWidget* parent, Qt::WindowFlags f):
|
|
|
|
QWidget(parent, f),
|
2013-04-27 15:27:27 +00:00
|
|
|
current(0)
|
2013-04-22 23:00:27 +00:00
|
|
|
{
|
2013-04-27 15:27:27 +00:00
|
|
|
if(!activeStar){
|
|
|
|
activeStar = new QPixmap();
|
|
|
|
QSvgRenderer render(QString(":star"));
|
|
|
|
QPixmap renderedStar(IMG_SIZE, IMG_SIZE);
|
2013-04-22 23:00:27 +00:00
|
|
|
|
2013-04-27 15:27:27 +00:00
|
|
|
renderedStar.fill(Qt::transparent);
|
|
|
|
QPainter painter(&renderedStar);
|
2013-04-22 23:00:27 +00:00
|
|
|
|
2013-04-27 15:27:27 +00:00
|
|
|
render.render(&painter, QRectF(0, 0, IMG_SIZE, IMG_SIZE));
|
|
|
|
(*activeStar) = renderedStar;
|
|
|
|
}
|
|
|
|
if(!inactiveStar){
|
|
|
|
inactiveStar = new QPixmap();
|
|
|
|
(*inactiveStar) = grayImage(activeStar);
|
|
|
|
}
|
2013-04-22 23:00:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPixmap StarWidget::grayImage(QPixmap* coloredImg)
|
|
|
|
{
|
|
|
|
QImage img = coloredImg->toImage();
|
|
|
|
for (int i = 0; i < img.width(); ++i) {
|
|
|
|
for (int j = 0; j < img.height(); ++j) {
|
2013-04-27 15:27:27 +00:00
|
|
|
QRgb rgb = img.pixel(i, j);
|
|
|
|
if (!rgb)
|
2013-04-22 23:00:27 +00:00
|
|
|
continue;
|
2013-04-27 15:27:27 +00:00
|
|
|
|
|
|
|
QColor c(rgb);
|
|
|
|
int gray = (c.red() + c.green() + c.blue()) / 3;
|
2013-04-22 23:00:27 +00:00
|
|
|
img.setPixel(i, j, qRgb(gray, gray, gray));
|
|
|
|
}
|
|
|
|
}
|
2013-04-27 15:27:27 +00:00
|
|
|
|
2013-04-22 23:00:27 +00:00
|
|
|
return QPixmap::fromImage(img);
|
|
|
|
}
|
|
|
|
|
|
|
|
QSize StarWidget::sizeHint() const
|
|
|
|
{
|
2013-04-27 15:27:27 +00:00
|
|
|
return QSize(IMG_SIZE * TOTALSTARS + SPACING * (TOTALSTARS-1), IMG_SIZE);
|
2013-04-22 23:00:27 +00:00
|
|
|
}
|