Rename additional global TQt functions

master
Timothy Pearson 12 years ago
parent f9419d26b3
commit 4d363cdf48

@ -72,7 +72,7 @@ AboutWidget::AboutWidget( TQWidget *parent, const char *name )
else { else {
delete im; delete im;
im = 0L; im = 0L;
qWarning( "KuickShow: about-image not found/unreadable." ); tqWarning( "KuickShow: about-image not found/unreadable." );
} }
} }

@ -288,7 +288,7 @@ void ImageWindow::setFullscreen( bool enable )
void ImageWindow::updateGeometry( int imWidth, int imHeight ) void ImageWindow::updateGeometry( int imWidth, int imHeight )
{ {
// qDebug("::updateGeometry: %i, %i", imWidth, imHeight); // tqDebug("::updateGeometry: %i, %i", imWidth, imHeight);
// XMoveWindow( x11Display(), win, 0, 0 ); // XMoveWindow( x11Display(), win, 0, 0 );
XResizeWindow( x11Display(), win, imWidth, imHeight ); XResizeWindow( x11Display(), win, imWidth, imHeight );

@ -109,7 +109,7 @@ void ImlibWidget::init()
m_kuickFile = 0L; m_kuickFile = 0L;
if ( !id ) if ( !id )
qFatal("ImlibWidget: Imlib not initialized, aborting."); tqFatal("ImlibWidget: Imlib not initialized, aborting.");
setAutoRender( true ); setAutoRender( true );
@ -198,7 +198,7 @@ bool ImlibWidget::loadImage( KuickFile * file )
bool ImlibWidget::cacheImage( const KURL& url ) bool ImlibWidget::cacheImage( const KURL& url )
{ {
// qDebug("cache image: %s", url.url().latin1()); // tqDebug("cache image: %s", url.url().latin1());
KuickFile *file = FileCache::self()->getFile( url ); KuickFile *file = FileCache::self()->getFile( url );
if ( file->isAvailable() ) if ( file->isAvailable() )
return cacheImage( file ); return cacheImage( file );
@ -213,7 +213,7 @@ bool ImlibWidget::cacheImage( const KURL& url )
bool ImlibWidget::cacheImage( KuickFile * file ) bool ImlibWidget::cacheImage( KuickFile * file )
{ {
// qDebug("cache image: %s", file->url().url().latin1()); // tqDebug("cache image: %s", file->url().url().latin1());
KuickImage *kuim = loadImageInternal( file ); KuickImage *kuim = loadImageInternal( file );
if ( kuim ) { if ( kuim ) {
kuim->renderPixmap(); kuim->renderPixmap();
@ -632,7 +632,7 @@ KuickImage * ImageCache::getKuimage( KuickFile * file,
// #ifndef NDEBUG // #ifndef NDEBUG
// gettimeofday( &tms2, NULL ); // gettimeofday( &tms2, NULL );
// qDebug("*** LOADING image: %s, took %ld ms", file.latin1(), // tqDebug("*** LOADING image: %s, took %ld ms", file.latin1(),
// (tms2.tv_usec - tms1.tv_usec)/1000); // (tms2.tv_usec - tms1.tv_usec)/1000);
// #endif // #endif
@ -655,7 +655,7 @@ KuickImage * ImageCache::getKuimage( KuickFile * file,
} }
if ( kuickList.count() > (uint) myMaxImages ) { if ( kuickList.count() > (uint) myMaxImages ) {
// qDebug(":::: now removing from cache: %s", (*fileList.fromLast()).latin1()); // tqDebug(":::: now removing from cache: %s", (*fileList.fromLast()).latin1());
kuickList.removeLast(); kuickList.removeLast();
fileList.remove( fileList.fromLast() ); fileList.remove( fileList.fromLast() );
} }

@ -47,7 +47,7 @@ void KuickImage::renderPixmap()
if ( !myIsDirty ) if ( !myIsDirty )
return; return;
// qDebug("### rendering: %s", myFilename.latin1()); // tqDebug("### rendering: %s", myFilename.latin1());
if ( myPixmap ) if ( myPixmap )
Imlib_free_pixmap( myId, myPixmap ); Imlib_free_pixmap( myId, myPixmap );
@ -64,7 +64,7 @@ void KuickImage::renderPixmap()
// #ifndef NDEBUG // #ifndef NDEBUG
// gettimeofday( &tms2, NULL ); // gettimeofday( &tms2, NULL );
// qDebug("*** rendering image: %s, took %ld ms", myFilename.latin1(), // tqDebug("*** rendering image: %s, took %ld ms", myFilename.latin1(),
// (tms2.tv_usec - tms1.tv_usec)/1000); // (tms2.tv_usec - tms1.tv_usec)/1000);
// #endif // #endif
@ -164,7 +164,7 @@ void KuickImage::restoreOriginalSize()
if (myWidth == myOrigWidth && myHeight == myOrigHeight) if (myWidth == myOrigWidth && myHeight == myOrigHeight)
return; return;
// qDebug("-- restoreOriginalSize"); // tqDebug("-- restoreOriginalSize");
if ( myOrigIm != 0L ) if ( myOrigIm != 0L )
{ {
@ -200,7 +200,7 @@ void KuickImage::resize( int width, int height, KuickImage::ResizeMode mode )
void KuickImage::fastResize( int width, int height ) void KuickImage::fastResize( int width, int height )
{ {
// qDebug("-- fastResize: %i x %i", width, height ); // tqDebug("-- fastResize: %i x %i", width, height );
// lazy resizing (only done when rendering pixmap) // lazy resizing (only done when rendering pixmap)
myWidth = width; myWidth = width;
@ -210,7 +210,7 @@ void KuickImage::fastResize( int width, int height )
bool KuickImage::smoothResize( int newWidth, int newHeight ) bool KuickImage::smoothResize( int newWidth, int newHeight )
{ {
// qDebug("-- smoothResize: %i x %i", newWidth, newHeight); // tqDebug("-- smoothResize: %i x %i", newWidth, newHeight);
TQImage *image = newTQImage(); TQImage *image = newTQImage();
// Note: TQ_ScaleMin seems to have a bug (off-by-one, sometimes results in width being 1 pixel too small) // Note: TQ_ScaleMin seems to have a bug (off-by-one, sometimes results in width being 1 pixel too small)
@ -239,7 +239,7 @@ TQImage * KuickImage::newTQImage() const
{ {
ImlibImage *im; ImlibImage *im;
// qDebug("-- newTQImage"); // tqDebug("-- newTQImage");
if ( myOrigIm != 0L && myRotation == ROT_0 && myFlipMode == FlipNone ) if ( myOrigIm != 0L && myRotation == ROT_0 && myFlipMode == FlipNone )
{ {
@ -356,7 +356,7 @@ bool KuickImage::smoothResize( int newWidth, int newHeight )
basis_xx = (int) (4096.0 / scalex); basis_xx = (int) (4096.0 / scalex);
basis_yy = (int) (4096.0 / scaley); basis_yy = (int) (4096.0 / scaley);
//qDebug("Basis: (%d, %d), (%d, 0), (0, %d)", basis_ox, basis_oy, basis_xx, basis_yy); //tqDebug("Basis: (%d, %d), (%d, 0), (0, %d)", basis_ox, basis_oy, basis_xx, basis_yy);
int x2, y2; int x2, y2;

@ -1228,14 +1228,14 @@ void KuickShow::initImlib()
if ( !id ) { if ( !id ) {
initImlibParams( idata, &par ); initImlibParams( idata, &par );
qWarning("*** KuickShow: Whoops, can't initialize imlib, trying my own palettefile now."); tqWarning("*** KuickShow: Whoops, can't initialize imlib, trying my own palettefile now.");
TQString paletteFile = locate( "data", "kuickshow/im_palette.pal" ); TQString paletteFile = locate( "data", "kuickshow/im_palette.pal" );
// ### - does the qstrdup() cure the segfault in imlib eventually? // ### - does the tqstrdup() cure the segfault in imlib eventually?
char *file = qstrdup( paletteFile.local8Bit() ); char *file = tqstrdup( paletteFile.local8Bit() );
par.palettefile = file; par.palettefile = file;
par.flags |= PARAMS_PALETTEFILE; par.flags |= PARAMS_PALETTEFILE;
qWarning("Palettefile: %s", par.palettefile ); tqWarning("Palettefile: %s", par.palettefile );
id = Imlib_init_with_params( x11Display(), &par ); id = Imlib_init_with_params( x11Display(), &par );

Loading…
Cancel
Save