summaryrefslogtreecommitdiff
path: root/src/frontend/cdragdrop.cpp
blob: 84d637655e7364f0c3b41c7f1f36b57f61e862d0 (plain)
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
/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 2007 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/


#include "cdragdrop.h"

#include <QString>
#include <QByteArray>
#include <QMimeData>
#include <QList>

BTMimeData::BTMimeData()
{}

BTMimeData::~BTMimeData()
{}

/** Creates a new BTMimeData.
* Creates a new bookmark item and appends it to the list.
*/
BTMimeData::BTMimeData(QString module, QString key, QString description)
{
	appendBookmark(module, key, description);
}

/** Creates a new BTMimeData, setting the text MIME type (see QMimeData::setText()). */
BTMimeData::BTMimeData(QString text)
{
	setText(text);
}

/** Appends a new bookmark item into the list.*/
void BTMimeData::appendBookmark(QString module, QString key, QString description)
{
	BookmarkItem bm = BookmarkItem(module, key, description);
	m_bookmarkList.append(bm);
	setData("BibleTime/Bookmark", QByteArray());
}



/** Returns the first bookmark item in the list. */
const BookmarkItem& BTMimeData::bookmark() const
{
	return m_bookmarkList.first();
}

/** Creates a new bookmark item. */
BookmarkItem::BookmarkItem(QString module, QString key, QString description)
: m_moduleName(module), m_key(key), m_description(description)
{}