-
Notifications
You must be signed in to change notification settings - Fork 0
/
abstractitem.cpp
115 lines (98 loc) · 2.81 KB
/
abstractitem.cpp
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/************************************************
*
* Copyright © 2009-2010 Florian Staudacher
* <florian_staudacher@yahoo.de>
*
*
* This file is part of FSugar.
*
* FSugar is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* FSugar 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with FSugar. If not, see <http://www.gnu.org/licenses/>.
*
***********************************************/
#include <QtGui>
#include "abstractitem.h"
AbstractItem::AbstractItem(QObject *parent) :
QObject(parent)
{
crm = SugarCrm::getInstance();
connect(crm, SIGNAL(entryUpdated(QString)),
this, SLOT(seeWhoSaved(QString)));
connect(crm, SIGNAL(entryCreated(QString)),
this, SLOT(gotCreated(QString)));
}
void AbstractItem::getChildren()
{
getNotes();
}
void AbstractItem::getNotes()
{
notes.clear();
connect(crm, SIGNAL(notesAvailable(QString)),
this, SLOT(populateNotes(QString)));
crm->getRelatedNotes(type, id);
}
void AbstractItem::populateNotes(QString _id)
{
if(_id.isEmpty()) emit notesAvailable();
if(_id != id) return;
notes.clear();
QMapIterator<QString, QMap<QString, QString> > i(crm->notes);
while(i.hasNext()) {
i.next();
Note *tmp = new Note();
tmp->id = i.value().value("id");
tmp->name = i.value().value("name");
tmp->description = i.value().value("description");
tmp->fileName = i.value().value("filename");
tmp->parentId = i.value().value("parent_id");
tmp->parentType = i.value().value("parent_type");
tmp->date_entered = QDateTime::fromString(i.value().value("date_entered"), "yyyy-MM-dd hh:mm:ss");
tmp->date_modified = QDateTime::fromString(i.value().value("date_modified"), "yyyy-MM-dd hh:mm:ss");
notes.append(tmp);
}
emit notesAvailable();
}
QString AbstractItem::toString()
{
return QString("Item %1, type %2").arg(id, type);
}
QList<Note*>* AbstractItem::getNotesList()
{
return ¬es;
}
void AbstractItem::seeWhoSaved(QString _id)
{
if(id == _id){
emit saved();
}
}
void AbstractItem::gotCreated(QString _id)
{
if(id.isEmpty()) {
id = _id;
emit saved();
}
}
void AbstractItem::useAttribute(const QString _attr, const QString _type)
{
QUrl url;
if(_type.contains("email")) {
url = QUrl(QString("mailto:").append(_attr));
} else if (_type.contains("website")) {
QString addr(_attr);
if(!_attr.contains("http")) addr.prepend("http://");
url = QUrl(addr);
}
QDesktopServices::openUrl(url);
}