-
Notifications
You must be signed in to change notification settings - Fork 2
/
previewmodel.h
executable file
·82 lines (76 loc) · 2.67 KB
/
previewmodel.h
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/* Copyright 2016 Pascal COMBES <[email protected]>
*
* This file is part of ProSlideShower.
*
* ProSlideShower is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ProSlideShower is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ProSlideShower. If not, see <http://www.gnu.org/licenses/>
*/
#ifndef GALLERYMODEL_H
#define GALLERYMODEL_H
#include <QAbstractListModel>
#include <QVector>
#include <QStringList>
#include <QSize>
#include <QtDebug>
/*!
* \brief The PreviewModel class is a model for GallleryView.
*
* This class implements a model suitable for GalleryView.
* It only defines a constraint for the horizontal or vertical size
* of the preview miniature (returned when PreviewRole is used).
*/
class PreviewModel : public QAbstractListModel
{
Q_OBJECT
public:
/*!
* \brief Special roles
*
* Special roles used by the GalleryView,
* that a PreviewModel should implement.
*/
enum {
/*!
* \brief Role for miniature
*
* When this role is used, the model should return an image
* respecting the preview constraint (see setPreviewConstraint()).
*/
PreviewRole = Qt::UserRole
};
/*!
* \brief Constructor
*
* Only call the parent constructor.
* \param parent The parent object.
*/
inline PreviewModel(QObject *parent = 0) :
QAbstractListModel(parent) {}
/*!
* \brief Set the preview constraint
*
* Set the preview constraint and its orientation (the constrained dimension)
* \param dim The value of the constraint (in pixels)
* \param orientation The constrained dimension (<tt>Qt::Vertical</tt> for the height, <tt>Qt::Horizontal</tt> for the width).
*/
virtual inline void setPreviewConstraint(int dim, Qt::Orientation orientation = Qt::Vertical)
{
mConstraintDim = dim;
mConstraintOrientation = orientation;
qDebug() << "Constraint: " << dim;
}
protected:
int mConstraintDim; /*!< \internal The value of the constraint */
Qt::Orientation mConstraintOrientation; /*!< \internal The constrained dimension (<tt>Qt::Vertical</tt> for the height, <tt>Qt::Horizontal</tt> for the width). */
};
#endif // GALLERYMODEL_H