diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kooka/ocrresedit.cpp | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip |
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kooka/ocrresedit.cpp')
-rw-r--r-- | kooka/ocrresedit.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/kooka/ocrresedit.cpp b/kooka/ocrresedit.cpp index a289a079..a8d842a1 100644 --- a/kooka/ocrresedit.cpp +++ b/kooka/ocrresedit.cpp @@ -23,7 +23,7 @@ * without including the source code for Qt in the source distribution. * * * ***************************************************************************/ -#include <qcolor.h> +#include <tqcolor.h> #include "ocrresedit.h" #include "ocrword.h" @@ -31,13 +31,13 @@ #include <kfiledialog.h> #include <klocale.h> -#include <qfile.h> -#include <qtextstream.h> +#include <tqfile.h> +#include <tqtextstream.h> /* -------------------- ocrResEdit -------------------- */ -ocrResEdit::ocrResEdit( QWidget *parent ) - : QTextEdit(parent) +ocrResEdit::ocrResEdit( TQWidget *parent ) + : TQTextEdit(parent) { m_updateColor.setNamedColor( "SeaGreen"); m_ignoreColor.setNamedColor( "CadetBlue4" ); @@ -52,8 +52,8 @@ void ocrResEdit::slMarkWordWrong( int line, const ocrWord& word ) } -void ocrResEdit::slUpdateOCRResult( int line, const QString& wordFrom, - const QString& wordTo ) +void ocrResEdit::slUpdateOCRResult( int line, const TQString& wordFrom, + const TQString& wordTo ) { /* the index is quite useless here, since the text could have had been * changed by corrections before. Thus better search the word and update @@ -74,7 +74,7 @@ void ocrResEdit::slSelectWord( int line, const ocrWord& word ) { if( line < paragraphs() ) { - QString editLine = text(line); + TQString editLine = text(line); int cnt = editLine.contains( word); if( cnt > 0 ) @@ -86,8 +86,8 @@ void ocrResEdit::slSelectWord( int line, const ocrWord& word ) } } -void ocrResEdit::slReplaceWord( int line, const QString& wordFrom, - const QString& wordTo, const QColor& color ) +void ocrResEdit::slReplaceWord( int line, const TQString& wordFrom, + const TQString& wordTo, const TQColor& color ) { kdDebug(28000) << "Updating word " << wordFrom << " in line " << line << endl; @@ -95,7 +95,7 @@ void ocrResEdit::slReplaceWord( int line, const QString& wordFrom, if( line < paragraphs() ) { - QString editLine = text(line); + TQString editLine = text(line); int cnt = editLine.contains( wordFrom ); if( cnt > 0 ) @@ -103,7 +103,7 @@ void ocrResEdit::slReplaceWord( int line, const QString& wordFrom, int pos = editLine.find(wordFrom); setSelection( line, pos, line, pos+wordFrom.length()); - QColor saveCol = this->color(); + TQColor saveCol = this->color(); setColor( color ); if( isRO ) { setReadOnly(false); @@ -129,16 +129,16 @@ void ocrResEdit::slReplaceWord( int line, const QString& wordFrom, void ocrResEdit::slSaveText() { - QString fileName = KFileDialog::getSaveFileName( (QDir::home()).path(), + TQString fileName = KFileDialog::getSaveFileName( (TQDir::home()).path(), "*.txt", this, i18n("Save OCR Result Text") ); if( fileName.isEmpty() ) return; - QFile file( fileName ); + TQFile file( fileName ); if ( file.open( IO_WriteOnly ) ) { - QTextStream stream( &file ); + TQTextStream stream( &file ); stream << text(); file.close(); } |