update dict
[QFreeRecite.git] / src / gui / ResultWidget.cpp
blob93645310cdcb0097229763cefc7715891038705b
1 #include "ResultWidget.h"
3 ResultWidget::ResultWidget(QWidget *parent)
4 :QWidget(parent)
6 setupUi(this);
7 connect(confirmButton,SIGNAL(clicked()),this,SIGNAL(confirmed()));
10 ResultWidget::~ResultWidget()
12 #ifdef DEBUG
13 qDebug("~ResultWidget\n");
14 #endif //DEBUG
17 void ResultWidget::setHeader(const QString &str) {
18 headerLabel->setText(str);
21 void ResultWidget::setTailer(const QString &str) {
22 tailerLabel->setText(str);
25 void ResultWidget::setInfo(const QString &str11,const QString &str12,
26 const QString &str21,const QString &str22,
27 const QString &str31,const QString &str32) {
28 label_11->setText(str11);
29 label_12->setText(str12);
31 label_21->setText(str21);
32 label_22->setText(str22);
34 label_31->setText(str31);
35 label_32->setText(str32);