From d3f1c6026d3cbba9fd8f8a5bc722c9e8488c045b Mon Sep 17 00:00:00 2001
From: brad <brad>
Date: Mon, 05 Apr 2004 13:31:49 +0000
Subject: qDebug -> odebug

---
(limited to 'inputmethods')

diff --git a/inputmethods/handwriting/qimpenchar.cpp b/inputmethods/handwriting/qimpenchar.cpp
index 929f370..db5d135 100644
--- a/inputmethods/handwriting/qimpenchar.cpp
+++ b/inputmethods/handwriting/qimpenchar.cpp
@@ -26,6 +26,7 @@
 #include <qdatastream.h>
 #include "qimpencombining.h"
 #include "qimpenchar.h"
+#include "opie2/odebug.h"
 
 #define QIMPEN_MATCH_THRESHOLD	    200000
 
@@ -167,7 +168,7 @@ int QIMPenChar::match( QIMPenChar *pen )
 			ydiff = 0;
 		if ( xdiff > 10 || ydiff > 10 ) { // not a chance
 #ifdef DEBUG_QIMPEN
-			qDebug( "char %c, stroke starting pt diff excessive", pen->ch );
+			odebug << "char " << pen->ch <<", stroke starting pt diff excessive" << oendl;
 #endif
 			return INT_MAX;
 		}
@@ -182,7 +183,7 @@ int QIMPenChar::match( QIMPenChar *pen )
 	maxErr += diff * diff * 6; // magic weighting :)
 
 #ifdef DEBUG_QIMPEN
-	qDebug( "char: %c, maxErr %d, diff %d, (%d)", pen->ch, maxErr, diff, strokes.count() );
+	odebug << "char: " << pen->ch << ", maxErr " << maxErr << ", diff " << diff << ", "  << strokes.count() << oendl;
 #endif
 	return maxErr;
 }
@@ -458,8 +459,8 @@ QIMPenCharMatchList QIMPenCharSet::match( QIMPenChar *ch )
 	/*
 	   QIMPenCharMatchList::Iterator it;
 	   for ( it = matches.begin(); it != matches.end(); ++it ) {
-	   qDebug( "Match: \'%c\', error %d, strokes %d", (*it).penChar->character(),
-	   (*it).error, (*it).penChar->penStrokes().count() );
+	
+	   odebug << "Match: \'" << (*it).penChar->character() "\', error " << (*it).error ", strokes " <<(*it).penChar->penStrokes().count() << oendl;
 	   }
 	   */
 	return matches;
diff --git a/inputmethods/handwriting/qimpeninput.cpp b/inputmethods/handwriting/qimpeninput.cpp
index d073cdf..6ea1bb4 100644
--- a/inputmethods/handwriting/qimpeninput.cpp
+++ b/inputmethods/handwriting/qimpeninput.cpp
@@ -36,6 +36,7 @@
 #include <qlabel.h>
 #include <qtimer.h>
 #include <qdir.h>
+#include <opie2/odebug.h>
 
 #include <limits.h>
 
@@ -319,7 +320,7 @@ void QIMPenInput::wordPicked( const QString &w )
 void QIMPenInput::selectCharSet( int idx )
 {
     if ( mode == Switch ) {
-	//qDebug( "Switch back to normal" );
+	//odebug << "Switch back to normal" << oendl;
 	pw->changeCharSet( baseSets.at(currCharSet), currCharSet );
 	mode = Normal;
     }
@@ -353,13 +354,14 @@ void QIMPenInput::matchedCharacters( const QIMPenCharMatchList &cl )
     switch ( scan ) {
 	case QIMPenChar::Caps:
 	    if ( profile->style() == QIMPenProfile::ToggleCases ) {
-//		qDebug( "Caps" );
+//		odebug << "Caps" << oendl;
+//		
 		if ( mode == SwitchLock ) {
-//		    qDebug( "Switch to normal" );
+//		    odebug << "Switch to normal" << oendl;
 		    pw->changeCharSet( profile->lowercase(), currCharSet );
 		    mode = Switch;
 		} else {
-//		    qDebug( "Switch to upper" );
+//		    odebug << "Switch to upper" << oendl;
 		    pw->changeCharSet( profile->uppercase(), currCharSet );
 		    mode = Switch;
 		}
@@ -367,17 +369,17 @@ void QIMPenInput::matchedCharacters( const QIMPenCharMatchList &cl )
 	    break;
 	case QIMPenChar::CapsLock:
 	    if ( profile->style() == QIMPenProfile::ToggleCases ) {
-//		qDebug( "CapsLock" );
+//		odebug << "CapsLock" << oendl;
 		if ( mode == Switch &&
 		     baseSets.at(currCharSet) == profile->uppercase() ) {
-//		    qDebug( "Switch to normal" );
+//		    odebug << "Switch to normal" << oendl;
 		    pw->changeCharSet( profile->lowercase(), currCharSet );
 		    // change our base set back to lower.
 		    baseSets.remove( currCharSet );
 		    baseSets.insert( currCharSet, profile->lowercase() );
 		    mode = Normal;
 		} else {		
-//		    qDebug( "Switch to caps lock" );
+//		    odebug << "Switch to caps lock" << oendl;
 		    pw->changeCharSet( profile->uppercase(), currCharSet );
 		    // change our base set to upper.
 		    baseSets.remove( currCharSet );
@@ -388,14 +390,14 @@ void QIMPenInput::matchedCharacters( const QIMPenCharMatchList &cl )
 	    break;
 	case QIMPenChar::Punctuation:
 	    if ( profile->punctuation() ) {
-		//qDebug( "Switch to punctuation" );
+		//odebug << "Switch to punctuation" << oendl;
 		pw->changeCharSet( profile->punctuation(), currCharSet );
 		mode = Switch;
 	    }
 	    break;
 	case QIMPenChar::Symbol:
 	    if ( profile->symbol() ) {
-		//qDebug( "Switch to symbol" );
+		//odebug << "Switch to symbol" << oendl ;
 		pw->changeCharSet( profile->symbol(), currCharSet );
 		mode = Switch;
 	    }
@@ -443,7 +445,7 @@ void QIMPenInput::keypress( uint scan_uni )
     }
 
     if ( mode == Switch ) {
-//	qDebug( "Switch back to normal" );
+//	odebug << "Switch back to normal" << oendl ;
 	pw->changeCharSet( baseSets.at(currCharSet), currCharSet );
 	if ( baseSets.at(currCharSet) == profile->uppercase() )
 	    mode = SwitchLock;
@@ -459,7 +461,7 @@ void QIMPenInput::handleExtended( const QString &ex )
 {
     if ( ex.find( "Select" ) == 0 ) {
 	QString set = ex.mid( 7 );
-	qDebug( "Select new profile: %s", set.latin1() );
+	odebug << "Select new profile: " << set.latin1() << oendl;
 	selectProfile( set );
     }
 }
diff --git a/inputmethods/handwriting/qimpenmatch.cpp b/inputmethods/handwriting/qimpenmatch.cpp
index 0d3e25a..a0448b6 100644
--- a/inputmethods/handwriting/qimpenmatch.cpp
+++ b/inputmethods/handwriting/qimpenmatch.cpp
@@ -25,6 +25,7 @@
 
 #include <qapplication.h>
 #include <qtimer.h>
+#include <opie2/odebug.h>
 
 #include <limits.h>
 
@@ -68,7 +69,7 @@ void QIMPenMatch::beginStroke()
 void QIMPenMatch::strokeEntered( QIMPenStroke *st )
 {
 #ifdef DEBUG_QIMPEN
-    qDebug( "---------- new stroke -------------" );
+    odebug << "---------- new stroke -------------" << oendl;
 #endif
     strokes.append( new QIMPenStroke( *st ) );
 
@@ -81,12 +82,12 @@ void QIMPenMatch::strokeEntered( QIMPenStroke *st )
     QIMPenCharMatchList ml;
     if ( strokes.count() > 1 && multiCharSet ) {
 #ifdef DEBUG_QIMPEN
-	qDebug( "Matching against multi set" );
+	odebug << "Matching against multi set" << oendl;
 #endif
 	ml = multiCharSet->match( &testChar );
     } else {
 #ifdef DEBUG_QIMPEN
-	qDebug( "Matching against single set" );
+	odebug << "Matching against single set" << oendl;
 #endif
 	ml = charSet->match( &testChar );
     }
@@ -97,7 +98,7 @@ void QIMPenMatch::strokeEntered( QIMPenStroke *st )
 void QIMPenMatch::processMatches( QIMPenCharMatchList &ml )
 {
 #ifdef DEBUG_QIMPEN
-    qDebug( "Entering strokes.count() = %d", strokes.count() );
+    odebug << "Entering strokes.count() = " <<  strokes.count() << oendl;
 #endif
     QIMPenCharMatch candidate1 = { INT_MAX, 0 };
     QIMPenCharMatch candidate2 = { INT_MAX, 0 };
@@ -107,7 +108,7 @@ void QIMPenMatch::processMatches( QIMPenCharMatchList &ml )
 //	 ml.first().penChar->penStrokes().count() == strokes.count() ) {
 	candidate1 = ml.first();
 #ifdef DEBUG_QIMPEN
-	qDebug( QString("Candidate1 = %1").arg(QChar(candidate1.penChar->character())) );
+	odebug << "Candidate1 = " << candidate1.penChar->character() << oendl;
 #endif
     }
 
@@ -120,7 +121,7 @@ void QIMPenMatch::processMatches( QIMPenCharMatchList &ml )
 	if ( ml2.count() ) {
 	    candidate2 = ml2.first();
 #ifdef DEBUG_QIMPEN
-	    qDebug( QString("Candidate2 = %1").arg(QChar(candidate2.penChar->character())) );
+	    odebug << "Candidate2 = " << candidate2.penChar->character() << oendl;
 #endif
 	}
     }
@@ -142,7 +143,7 @@ void QIMPenMatch::processMatches( QIMPenCharMatchList &ml )
 	    multiCharSet = charSet;
 	    ml = ml2;
 #ifdef DEBUG_QIMPEN
-	    qDebug( "** Using Candidate2" );
+	    odebug << "** Using Candidate2" << oendl;
 #endif
 	} else {
 	    if ( (prevMatchChar->character() >> 16) != Qt::Key_Backspace &&
@@ -151,7 +152,7 @@ void QIMPenMatch::processMatches( QIMPenCharMatchList &ml )
 	    prevMatchChar = candidate1.penChar;
 	    prevMatchError = candidate1.error;
 #ifdef DEBUG_QIMPEN
-	    qDebug( "** Using Candidate1, with erase" );
+	    odebug << "** Using Candidate1, with erase" << oendl;
 #endif
 	}
     } else if ( candidate1.penChar ) {
@@ -162,7 +163,7 @@ void QIMPenMatch::processMatches( QIMPenCharMatchList &ml )
 	prevMatchChar = candidate1.penChar;
 	prevMatchError = candidate1.error;
 #ifdef DEBUG_QIMPEN
-	qDebug( "** Using Candidate1" );
+	odebug << "** Using Candidate1" << oendl;
 #endif
     } else if ( candidate2.penChar ) {
 	int i = strokes.count()-1;
@@ -175,17 +176,17 @@ void QIMPenMatch::processMatches( QIMPenCharMatchList &ml )
 	multiCharSet = charSet;
 	ml = ml2;
 #ifdef DEBUG_QIMPEN
-	qDebug( "** Using Candidate2" );
+	odebug << "** Using Candidate2" << oendl;
 #endif
     } else {
 	if ( !ml.count() ) {
 #ifdef DEBUG_QIMPEN
-	    qDebug( "** Failed" );
+	    odebug << "** Failed" << oendl; 
 #endif
 	    canErase = FALSE;
 	} else {
 #ifdef DEBUG_QIMPEN
-	    qDebug( "Need more strokes" );
+	    odebug << "Need more strokes" << oendl;
 #endif
 	    if ( strokes.count() == 1 )
 		canErase = FALSE;
@@ -197,7 +198,7 @@ void QIMPenMatch::processMatches( QIMPenCharMatchList &ml )
 
     if ( eraseLast && canErase ) {
 #ifdef DEBUG_QIMPEN
-	qDebug( "deleting last" );
+	odebug << "deleting last" << oendl;
 #endif
 	emit erase();
 	wordChars.removeLast();
@@ -228,12 +229,12 @@ void QIMPenMatch::updateWordMatch( QIMPenCharMatchList &ml )
     if ( qch.isPunct() || qch.isSpace() ||
 	 code == Qt::Key_Enter || code == Qt::Key_Return ||
 	 code == Qt::Key_Tab || code == Qt::Key_Escape ) {
-//	qDebug( "Word Matching: Clearing word" );
+//	odebug << "Word Matching: Clearing word" << oendl;
 	wordChars.clear();
 	wordMatches.clear();
 	wordEntered = QString();
     } else if ( code == Qt::Key_Backspace ) {
-	//qDebug( "Word Matching: Handle backspace" );
+	//odebug << "Word Matching: Handle backspace" << oendl;
 	wordChars.removeLast();
 	wordEntered.truncate( wordEntered.length() - 1 );
 	matchWords();
@@ -281,11 +282,11 @@ void QIMPenMatch::matchWords()
 /*
 	QListIterator<MatchWord> it( wordMatches);
 	for ( ; it.current(); ++it ) {
-	    qDebug( QString("Match word: %1").arg(it.current()->word) );
+	    odebug << "Match word: " << it.current()->word << oendl;
 	}
 */
     }
-    //qDebug( "Possibles: Good %d, total %d", goodMatches, wordMatches.count() );
+    //odebug << "Possibles: Good " << goodMatches << ", total " << wordMatches.count() << oendl;
     wordMatches.sort();
 }
 
diff --git a/inputmethods/handwriting/qimpenstroke.cpp b/inputmethods/handwriting/qimpenstroke.cpp
index 3567d6d..14e435a 100644
--- a/inputmethods/handwriting/qimpenstroke.cpp
+++ b/inputmethods/handwriting/qimpenstroke.cpp
@@ -24,6 +24,7 @@
 #include <limits.h>
 #include <qdatastream.h>
 #include "qimpenstroke.h"
+#include "opie2/odebug.h"
 
 #define QIMPEN_CORRELATION_POINTS   25
 //#define DEBUG_QIMPEN
@@ -49,7 +50,7 @@ QIMPenStroke::QIMPenStroke( const QIMPenStroke &st )
 QIMPenStroke &QIMPenStroke::operator=( const QIMPenStroke &s )
 {
     clear();
-    //qDebug( "copy strokes %d", s.links.count() );
+    //odebug << "copy strokes " << s.links.count() << oendl;
     startPoint = s.startPoint;
     lastPoint = s.lastPoint;
     links = s.links.copy();
@@ -149,7 +150,7 @@ void QIMPenStroke::endInput()
 	links[0] = gl;
     }
 
-    //qDebug("Points: %d", links.count() );
+    //odebug << "Points: " << links.count() << oendl; 
 }
 
 /*!
@@ -169,7 +170,7 @@ unsigned int QIMPenStroke::match( QIMPenStroke *pen )
 
     if ( lratio > 2.0 ) {
 #ifdef DEBUG_QIMPEN
-	qDebug( "stroke length too different" );
+	odebug << "stroke length too different" << oendl;
 #endif
 	return 400000;
     }
@@ -215,7 +216,7 @@ unsigned int QIMPenStroke::match( QIMPenStroke *pen )
     }
     if ( err1 > 40 ) {  // no need for more matching
 #ifdef DEBUG_QIMPEN
-	qDebug( "tsig too great: %d", err1 );
+	odebug << "tsig too great: " << err1 << oendl;
 #endif
         return 400000;
     }
@@ -224,7 +225,7 @@ unsigned int QIMPenStroke::match( QIMPenStroke *pen )
     err2 = calcError( dsig, pen->dsig, 0, FALSE );
     if ( err2 > 100 ) {
 #ifdef DEBUG_QIMPEN
-	qDebug( "dsig too great: %d", err2 );
+	odebug << "dsig too great: " <<  err2 << oendl;
 #endif
 	return 400000;
     }
@@ -232,7 +233,7 @@ unsigned int QIMPenStroke::match( QIMPenStroke *pen )
     err3 = calcError( asig, pen->asig, 0, TRUE );
     if ( err3 > 60 ) {
 #ifdef DEBUG_QIMPEN
-	qDebug( "asig too great: %d", err3 );
+	odebug << "asig too great: " << err3 << oendl;
 #endif
 	return 400000;
     }
@@ -247,7 +248,7 @@ unsigned int QIMPenStroke::match( QIMPenStroke *pen )
 			(unsigned int)(lratio * 5000.0);
 
 #ifdef DEBUG_QIMPEN
-    qDebug( "err %d   ( %d, %d, %d, %d)", err, err1, err2, err3, vdiff );
+    odebug << "err " << err << "( " << err1 << ", " << err2 << ", " << err3 << ", " << vdiff << oendl;
 #endif
 
     return err;
diff --git a/inputmethods/handwriting/qimpenwordpick.cpp b/inputmethods/handwriting/qimpenwordpick.cpp
index 8ee103d..39745c6 100644
--- a/inputmethods/handwriting/qimpenwordpick.cpp
+++ b/inputmethods/handwriting/qimpenwordpick.cpp
@@ -104,7 +104,7 @@ void QIMPenWordPick::mouseReleaseEvent( QMouseEvent *e )
 {
     int wordIdx = onWord( e->pos() );
     if ( wordIdx >= 0 && wordIdx == clickWord ) {
-	//qDebug( "Clicked %s", words[wordIdx].latin1() );
+	//odebug << "Clicked " <<  words[wordIdx].latin1() << oendl;
 	emit wordClicked( words[wordIdx] );
     }
     clickWord = -1;
--
cgit v0.9.0.2