22 lines
402 B
C++
22 lines
402 B
C++
#include "NotesPage.h"
|
|
#include "ui_NotesPage.h"
|
|
#include <QTabBar>
|
|
|
|
NotesPage::NotesPage(BaseInstance *inst, QWidget *parent)
|
|
: QWidget(parent), ui(new Ui::NotesPage), m_inst(inst)
|
|
{
|
|
ui->setupUi(this);
|
|
ui->noteEditor->setText(m_inst->notes());
|
|
}
|
|
|
|
NotesPage::~NotesPage()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
bool NotesPage::apply()
|
|
{
|
|
m_inst->setNotes(ui->noteEditor->toPlainText());
|
|
return true;
|
|
}
|