Vespucci
1.0.0
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
reportmessagedialog.cpp
Go to the documentation of this file.
1
#include "
GUI/Display/reportmessagedialog.h
"
2
#include "ui_reportmessagedialog.h"
3
4
ReportMessageDialog::ReportMessageDialog
(QWidget *parent,
const
QString &title) :
5
QDialog(parent),
6
ui(new
Ui
::
ReportMessageDialog
)
7
{
8
ui->setupUi(
this
);
9
setWindowTitle(title);
10
}
11
12
void
ReportMessageDialog::setLabel
(
const
QString &new_label)
13
{
14
ui->label->setText(new_label);
15
}
16
17
void
ReportMessageDialog::appendPlainText
(
const
QString &text)
18
{
19
ui->plainTextEdit->appendPlainText(text);
20
}
21
22
23
24
ReportMessageDialog::~ReportMessageDialog
()
25
{
26
delete
ui;
27
}
28
29
void
ReportMessageDialog::on_buttonBox_accepted()
30
{
31
close();
32
}
ReportMessageDialog::~ReportMessageDialog
~ReportMessageDialog()
Definition:
reportmessagedialog.cpp:24
Ui
Definition:
ahcadialog.h:26
ReportMessageDialog
Definition:
reportmessagedialog.h:13
ReportMessageDialog::appendPlainText
void appendPlainText(const QString &text)
Definition:
reportmessagedialog.cpp:17
ReportMessageDialog::setLabel
void setLabel(const QString &new_label)
Definition:
reportmessagedialog.cpp:12
reportmessagedialog.h
ReportMessageDialog::ReportMessageDialog
ReportMessageDialog(QWidget *parent, const QString &title)
Definition:
reportmessagedialog.cpp:4
Projects
VespucciProject
Vespucci
Vespucci
GUI
Display
reportmessagedialog.cpp
Generated by
1.8.11