You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdenetwork/kopete/plugins/translator/translatordialog.cpp

45 lines
1.6 KiB

/***************************************************************************
translatordialog.cpp - description
-------------------
begin : sam oct 19 2002
copyright : (C) 2002 by Olivier Goffart
email : ogoffart @ kde.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include <klocale.h>
#include <ktextedit.h>
#include "translatordialog.h"
TranslatorDialog::TranslatorDialog(const TQString &text,TQWidget *tqparent, const char *name ) : KDialogBase(tqparent,name,true,i18n("Translator Plugin"), Ok)
{
m_textEdit=new KTextEdit(this);
setMainWidget(m_textEdit);
m_textEdit->setText(text);
}
TranslatorDialog::~TranslatorDialog()
{
}
TQString TranslatorDialog::translatedText()
{
return m_textEdit->text();
}
/*void TranslatorDialog::slotFinished()
{
emit finished(m_textEdit->text());
} */
#include "translatordialog.moc"