2013-11-17 17:01:11 +08:00
|
|
|
/* messagelistitem.cpp
|
2013-11-15 18:48:14 +08:00
|
|
|
|
|
|
|
Copyright (c) 2013, Nikolaj Schlej. All rights reserved.
|
|
|
|
This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2013-11-17 17:01:11 +08:00
|
|
|
#include "messagelistitem.h"
|
2013-11-15 18:48:14 +08:00
|
|
|
|
2013-11-17 17:01:11 +08:00
|
|
|
MessageListItem::MessageListItem(QListWidget * parent, int type, const QModelIndex & index)
|
2013-11-15 18:48:14 +08:00
|
|
|
: QListWidgetItem(parent, type)
|
|
|
|
{
|
|
|
|
itemIndex = index;
|
|
|
|
}
|
|
|
|
|
2013-11-17 17:01:11 +08:00
|
|
|
MessageListItem::MessageListItem(const QString & text, QListWidget * parent, int type, const QModelIndex & index)
|
2013-11-15 18:48:14 +08:00
|
|
|
: QListWidgetItem(text, parent, type)
|
|
|
|
{
|
|
|
|
itemIndex = index;
|
|
|
|
}
|
|
|
|
|
2013-11-17 17:01:11 +08:00
|
|
|
MessageListItem::MessageListItem(const QIcon & icon, const QString & text, QListWidget * parent, int type, const QModelIndex & index)
|
2013-11-15 18:48:14 +08:00
|
|
|
: QListWidgetItem(icon, text, parent, type)
|
|
|
|
{
|
|
|
|
itemIndex = index;
|
|
|
|
}
|
|
|
|
|
2013-11-17 17:01:11 +08:00
|
|
|
MessageListItem::~MessageListItem()
|
2013-11-15 18:48:14 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-11-17 17:01:11 +08:00
|
|
|
QModelIndex MessageListItem::index() const
|
2013-11-15 18:48:14 +08:00
|
|
|
{
|
|
|
|
return itemIndex;
|
|
|
|
}
|
|
|
|
|
2013-11-17 17:01:11 +08:00
|
|
|
void MessageListItem::setIndex(QModelIndex & index)
|
2013-11-15 18:48:14 +08:00
|
|
|
{
|
|
|
|
itemIndex = index;
|
2014-01-12 07:02:54 +08:00
|
|
|
}
|