mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
27 lines
506 B
C++
27 lines
506 B
C++
|
#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
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
DivePictureView::DivePictureView(QWidget *parent): QListView(parent)
|
||
|
{
|
||
|
|
||
|
}
|