-
Notifications
You must be signed in to change notification settings - Fork 1
/
classeur.h
56 lines (47 loc) · 1.56 KB
/
classeur.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
#ifndef CLASSEUR_H
#define CLASSEUR_H
#include <QObject>
#include <QSqlDatabase>
#include <QStandardItem>
#include <QStandardItemModel>
#include "files_model.h"
class Classeur
{
public:
explicit Classeur(const QVector<QVariant> &data = QVector<QVariant>(5),
Classeur *parent = 0);
~Classeur();
Classeur *parent();
Classeur *child(int number);
QList<Classeur *> childs();
int childCount() const;
QVariant data(int column) const;
bool insertChildren(int position,
int count);
bool removeChildren(int position,
int count);
int childNumber() const;
bool setData(int column,
const QVariant &value);
bool hasChildren();
int get_id_MAX();
Files_Model *getFiles_model();
QStandardItem *getFiles_root();
int getID_tree();
int getID_tree_parent();
int getID_classeur();
QVariant getName();
QVariant getComment();
bool isRoot();
void razId_tree_Max();
private:
QList<Classeur*> childsClasseur;
QVector<QVariant> classeurData;
Classeur *parentClasseur;
QStandardItem *files_root;
Files_Model *files_model;
static int id_tree_MAX;
signals:
public slots:
};
#endif // CLASSEUR_H