Menu

[c54480]: / slidemodel.h  Maximize  Restore  History

Download this file

86 lines (68 with data), 2.6 kB

 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
83
84
85
#ifndef SLIDEMODEL_H
#define SLIDEMODEL_H
#include <QAbstractItemModel>
#include <QModelIndex>
#include <QTextDocument>
#include <QVariant>
#include "xmlobj.h"
class QItemSelectionModel;
class SlideItem;
class TreeItem;
class VymModel;
class SlideModel : public QAbstractItemModel, XMLObj
{
Q_OBJECT
public:
SlideModel( VymModel *vm);
~SlideModel();
void clear();
VymModel* getVymModel();
QVariant data(const QModelIndex &index, int role) const;
QVariant headerData(int section, Qt::Orientation orientation,
int role = Qt::DisplayRole) const;
QModelIndex index (SlideItem *fri);
QModelIndex index(int row, int column,
const QModelIndex &parent = QModelIndex()) const;
QModelIndex parent(const QModelIndex &index) const;
int count();
int rowCount(const QModelIndex &parent = QModelIndex()) const;
int columnCount(const QModelIndex &parent = QModelIndex()) const;
Qt::ItemFlags flags(const QModelIndex &index) const;
bool setData(const QModelIndex &index, const QVariant &value,
int role = Qt::EditRole);
bool setHeaderData(int section, Qt::Orientation orientation,
const QVariant &value, int role = Qt::EditRole);
bool insertColumns(int position, int columns,
const QModelIndex &parent = QModelIndex());
bool removeColumns(int position, int columns,
const QModelIndex &parent = QModelIndex());
bool insertRows(int position, int rows,
const QModelIndex &parent = QModelIndex());
bool removeRows(int position, int rows,
const QModelIndex &parent = QModelIndex());
SlideItem* addSlide ( SlideItem *dst=NULL, int n=-1);
void deleteSlide (SlideItem *si);
bool relinkSlide (SlideItem *si, SlideItem *dst, int pos);
SlideItem* getItem (const QModelIndex &index) const;
SlideItem* getSlide (int n);
SlideItem* findSlideID (uint n);
QString saveToDir ();
void setSearchString( const QString &s);
QString getSearchString();
void setSearchFlags( QTextDocument::FindFlags f);
QTextDocument::FindFlags getSearchFlags();
// Selection related
public:
void setSelectionModel(QItemSelectionModel *);
QItemSelectionModel* getSelectionModel();
QModelIndex getSelectedIndex();
SlideItem* getSelectedItem();
private:
QItemSelectionModel *selModel;
VymModel *vymModel; // needed for saveToDir
private:
SlideItem *rootItem;
QString searchString;
QTextDocument::FindFlags searchFlags;
};
#endif
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.