mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
64 lines
1.3 KiB
C++
64 lines
1.3 KiB
C++
/*
|
|
* messagewidget.cpp, part of VCMI engine
|
|
*
|
|
* Authors: listed in file AUTHORS in main folder
|
|
*
|
|
* License: GNU General Public License v2.0 or later
|
|
* Full text of license available in license.txt file, in main folder
|
|
*
|
|
*/
|
|
#include "StdInc.h"
|
|
#include "messagewidget.h"
|
|
#include "ui_messagewidget.h"
|
|
|
|
MessageWidget::MessageWidget(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::MessageWidget)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
MessageWidget::~MessageWidget()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void MessageWidget::setMessage(const QString & m)
|
|
{
|
|
ui->messageEdit->setPlainText(m);
|
|
}
|
|
|
|
QString MessageWidget::getMessage() const
|
|
{
|
|
return ui->messageEdit->toPlainText();
|
|
}
|
|
|
|
QWidget * MessageDelegate::createEditor(QWidget * parent, const QStyleOptionViewItem & option, const QModelIndex & index) const
|
|
{
|
|
return new MessageWidget(parent);
|
|
}
|
|
|
|
void MessageDelegate::setEditorData(QWidget * editor, const QModelIndex & index) const
|
|
{
|
|
if(auto *ed = qobject_cast<MessageWidget *>(editor))
|
|
{
|
|
ed->setMessage(index.data().toString());
|
|
}
|
|
else
|
|
{
|
|
QStyledItemDelegate::setEditorData(editor, index);
|
|
}
|
|
}
|
|
|
|
void MessageDelegate::setModelData(QWidget * editor, QAbstractItemModel * model, const QModelIndex & index) const
|
|
{
|
|
if(auto *ed = qobject_cast<MessageWidget *>(editor))
|
|
{
|
|
model->setData(index, ed->getMessage());
|
|
}
|
|
else
|
|
{
|
|
QStyledItemDelegate::setModelData(editor, model, index);
|
|
}
|
|
}
|