blob: aea4157250d2c804c711d210f12a95b778d6edb4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#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)
{
}
|