28 lines
613 B
C++
28 lines
613 B
C++
#include "EditNotesDialog.h"
|
|
#include "ui_EditNotesDialog.h"
|
|
|
|
#include <QIcon>
|
|
#include <QApplication>
|
|
|
|
EditNotesDialog::EditNotesDialog( QString notes, QString name, QWidget* parent ) :
|
|
m_instance_notes(notes),
|
|
m_instance_name(name),
|
|
QDialog(parent),
|
|
ui(new Ui::EditNotesDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
ui->noteEditor->setText(notes);
|
|
setWindowTitle(tr("Edit notes of %1").arg(m_instance_name));
|
|
//connect(ui->closeButton, SIGNAL(clicked()), SLOT(close()));
|
|
}
|
|
|
|
EditNotesDialog::~EditNotesDialog()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
QString EditNotesDialog::getText()
|
|
{
|
|
return ui->noteEditor->toPlainText();
|
|
}
|