mirror of
https://github.com/martravi/wiiqt6.git
synced 2024-11-21 21:19:15 +01:00
1994e8bdda
git-svn-id: http://wiiqt.googlecode.com/svn/trunk@34 389f4c8b-5dfe-645f-db0e-df882bc27289
29 lines
535 B
C++
29 lines
535 B
C++
#include "textdialog.h"
|
|
#include "ui_textdialog.h"
|
|
|
|
TextDialog::TextDialog(QWidget *parent, const QString &txt ) :
|
|
QDialog(parent),
|
|
ui(new Ui::TextDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
ui->textEdit->append( txt );
|
|
}
|
|
|
|
TextDialog::~TextDialog()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void TextDialog::on_buttonBox_accepted()
|
|
{
|
|
ret = ui->textEdit->document()->toPlainText();
|
|
}
|
|
|
|
QString TextDialog::GetText( QWidget *parent, const QString &txt )
|
|
{
|
|
TextDialog d( parent, txt );
|
|
if( !d.exec() )
|
|
return QString();
|
|
return d.ret;
|
|
}
|