2014-05-30 14:38:27 -03:00
|
|
|
#include "divepicturewidget.h"
|
|
|
|
|
|
|
|
void DivePictureDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
QStyledItemDelegate::paint(painter, option, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
int DivePictureModel::columnCount(const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant DivePictureModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int DivePictureModel::rowCount(const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-30 14:50:49 -03:00
|
|
|
DivePictureWidget::DivePictureWidget(QWidget *parent): QListView(parent)
|
2014-05-30 14:38:27 -03:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|