-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathennote.cpp
More file actions
34 lines (28 loc) · 760 Bytes
/
ennote.cpp
File metadata and controls
34 lines (28 loc) · 760 Bytes
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
#include "ennote.h"
EnNote::EnNote() :
content(0)
{}
EnNote::~EnNote(){
if(content)
delete content;
foreach(EnResource* res, resources){
delete res;
}
}
void EnNote::pushEmptyResource(){
resources << new EnResource();
}
void EnNote::cutTitleFromContent(){
int index = content->mNoteContent.indexOf(title, 0, Qt::CaseInsensitive);
if(index > 0 && index < content->mNoteContent.length() * 0.3)
content->mNoteContent.remove(index, title.length());
}
QString EnNote::toString() const{
return "EnNote:" + title + " created:" + created + " tags:" + tags.join(", ");
}
void EnNote::prepareContent(){
foreach(EnResource* res, resources){
res->saveImage();
}
content->processMedias();
}