- Allow switching colors with mouse wheel
- Use indices instead of color values
- Introduce a model for colors
- Some small fixes, .pro can be used to build again
- Yay, tested it to work via network (and fixed a bug!)
(TODO: pass colors to engine by index)
#ifndef COLORWIDGET_H
#define COLORWIDGET_H
#include <QWidget>
#include <QModelIndex>
namespace Ui {
class ColorWidget;
}
class QStandardItemModel;
class ColorWidget : public QWidget
{
Q_OBJECT
public:
explicit ColorWidget(QStandardItemModel *colorsModel, QWidget *parent = 0);
~ColorWidget();
void setColors(QStandardItemModel * colorsModel);
void setColor(int color);
int getColor();
signals:
void colorChanged(int color);
private:
int m_color;
QStandardItemModel * m_colorsModel;
private slots:
void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
protected:
void mousePressEvent(QMouseEvent * event);
void wheelEvent(QWheelEvent * event);
};
#endif // COLORWIDGET_H