Files
storyWriter/cpartwindow.cpp
T
Herwig Birke bc97f35058 .
2018-04-23 15:42:47 +02:00

27 lines
487 B
C++

#include "cpartwindow.h"
#include "ui_cpartwindow.h"
cPartWindow::cPartWindow(QWidget *parent) :
QWidget(parent),
ui(new Ui::cPartWindow),
m_lpPart(0)
{
ui->setupUi(this);
}
cPartWindow::~cPartWindow()
{
delete ui;
}
void cPartWindow::setPart(cPart* lpPart)
{
m_lpPart = lpPart;
ui->m_lpName->setText(lpPart->name());
ui->m_lpDescription->setDocument(lpPart->description());
ui->m_lpText->setDocument(lpPart->text());
setWindowTitle(tr("[part] - ") + lpPart->name());
}