author | zecke <zecke> | 2005-02-23 22:59:25 (UTC) |
---|---|---|
committer | zecke <zecke> | 2005-02-23 22:59:25 (UTC) |
commit | 729a178d1da1b8f80e4b1f6b0fc2c6a4cd15a403 (patch) (unidiff) | |
tree | 968a422532f4596d2ab5530127e28cd948776778 /library | |
parent | 9e2e6d962e1e2d3e5c17641d9a9b21a5906bd262 (diff) | |
download | opie-729a178d1da1b8f80e4b1f6b0fc2c6a4cd15a403.zip opie-729a178d1da1b8f80e4b1f6b0fc2c6a4cd15a403.tar.gz opie-729a178d1da1b8f80e4b1f6b0fc2c6a4cd15a403.tar.bz2 |
Fix crappy indenting on the methods I'm about to touch. Even TT fixed it...
-rw-r--r-- | library/applnk.cpp | 84 |
1 files changed, 43 insertions, 41 deletions
diff --git a/library/applnk.cpp b/library/applnk.cpp index 80f2c62..c82d3b9 100644 --- a/library/applnk.cpp +++ b/library/applnk.cpp | |||
@@ -460,28 +460,30 @@ AppLnk& AppLnk::operator=(const AppLnk ©) | |||
460 | */ | 460 | */ |
461 | const QPixmap& AppLnk::pixmap( int pos, int size ) const { | 461 | const QPixmap& AppLnk::pixmap( int pos, int size ) const { |
462 | if ( d->mPixmaps[pos].isNull() ) { | 462 | if ( d->mPixmaps[pos].isNull() ) { |
463 | AppLnk* that = (AppLnk*)this; | 463 | AppLnk* that = (AppLnk*)this; |
464 | if ( mIconFile.isEmpty() ) { | 464 | if ( mIconFile.isEmpty() ) { |
465 | MimeType mt(type()); | 465 | MimeType mt(type()); |
466 | that->d->mPixmaps[pos] = pos ? mt.bigPixmap() : mt.pixmap(); | 466 | that->d->mPixmaps[pos] = pos ? mt.bigPixmap() : mt.pixmap(); |
467 | if ( that->d->mPixmaps[pos].isNull() ) | 467 | if ( that->d->mPixmaps[pos].isNull() ) |
468 | that->d->mPixmaps[pos].convertFromImage( | 468 | that->d->mPixmaps[pos].convertFromImage( |
469 | Resource::loadImage("UnknownDocument") | 469 | Resource::loadImage("UnknownDocument") |
470 | .smoothScale( size, size ) ); | 470 | .smoothScale( size, size ) ); |
471 | return that->d->mPixmaps[pos]; | 471 | return that->d->mPixmaps[pos]; |
472 | } | 472 | } |
473 | QImage unscaledIcon = Resource::loadImage( that->mIconFile ); | 473 | |
474 | if ( unscaledIcon.isNull() ) { | 474 | QImage unscaledIcon = Resource::loadImage( that->mIconFile ); |
475 | // qDebug( "Cannot find icon: %s", that->mIconFile.latin1() ); | 475 | if ( unscaledIcon.isNull() ) { |
476 | that->d->mPixmaps[pos].convertFromImage( | 476 | // qDebug( "Cannot find icon: %s", that->mIconFile.latin1() ); |
477 | Resource::loadImage("UnknownDocument") | 477 | that->d->mPixmaps[pos].convertFromImage( |
478 | .smoothScale( size, size ) ); | 478 | Resource::loadImage("UnknownDocument") |
479 | } else { | 479 | .smoothScale( size, size ) ); |
480 | that->d->mPixmaps[0].convertFromImage( unscaledIcon.smoothScale( smallSize, smallSize ) ); | 480 | } else { |
481 | that->d->mPixmaps[1].convertFromImage( unscaledIcon.smoothScale( bigSize, bigSize ) ); | 481 | that->d->mPixmaps[0].convertFromImage( unscaledIcon.smoothScale( smallSize, smallSize ) ); |
482 | } | 482 | that->d->mPixmaps[1].convertFromImage( unscaledIcon.smoothScale( bigSize, bigSize ) ); |
483 | return that->d->mPixmaps[pos]; | 483 | } |
484 | return that->d->mPixmaps[pos]; | ||
484 | } | 485 | } |
486 | |||
485 | return d->mPixmaps[pos]; | 487 | return d->mPixmaps[pos]; |
486 | } | 488 | } |
487 | 489 | ||
@@ -984,33 +986,33 @@ void AppLnk::removeLinkFile() | |||
984 | class AppLnkImagePrivate { | 986 | class AppLnkImagePrivate { |
985 | public : | 987 | public : |
986 | AppLnkImagePrivate( const QString & ImageName ) { | 988 | AppLnkImagePrivate( const QString & ImageName ) { |
987 | IconName = ImageName; | 989 | IconName = ImageName; |
988 | Small = 0; | 990 | Small = 0; |
989 | Big = 0; | 991 | Big = 0; |
990 | } | 992 | } |
991 | ~AppLnkImagePrivate( ) { | 993 | ~AppLnkImagePrivate( ) { |
992 | if ( Small ) delete Small; | 994 | if ( Small ) delete Small; |
993 | if ( Big ) delete Big; | 995 | if ( Big ) delete Big; |
994 | } | 996 | } |
995 | 997 | ||
996 | inline QPixmap * small( void ) { | 998 | inline QPixmap * small( void ) { |
997 | if( ! Small ) { | 999 | if( ! Small ) { |
998 | QImage unscaledIcon = Resource::loadImage( IconName ); | 1000 | QImage unscaledIcon = Resource::loadImage( IconName ); |
999 | // works as long as smallSize remains static | 1001 | // works as long as smallSize remains static |
1000 | Small = new QPixmap(); | 1002 | Small = new QPixmap(); |
1001 | Small->convertFromImage( unscaledIcon.smoothScale( smallSize, smallSize ) ); | 1003 | Small->convertFromImage( unscaledIcon.smoothScale( smallSize, smallSize ) ); |
1002 | } | 1004 | } |
1003 | return Small; | 1005 | return Small; |
1004 | } | 1006 | } |
1005 | 1007 | ||
1006 | inline QPixmap * big( void ) { | 1008 | inline QPixmap * big( void ) { |
1007 | if( ! Big ) { | 1009 | if( ! Big ) { |
1008 | QImage unscaledIcon = Resource::loadImage( IconName ); | 1010 | QImage unscaledIcon = Resource::loadImage( IconName ); |
1009 | // works as long as bigSize remains static | 1011 | // works as long as bigSize remains static |
1010 | Big = new QPixmap(); | 1012 | Big = new QPixmap(); |
1011 | Big->convertFromImage( unscaledIcon.smoothScale( bigSize, bigSize ) ); | 1013 | Big->convertFromImage( unscaledIcon.smoothScale( bigSize, bigSize ) ); |
1012 | } | 1014 | } |
1013 | return Big; | 1015 | return Big; |
1014 | } | 1016 | } |
1015 | 1017 | ||
1016 | QString IconName; | 1018 | QString IconName; |
@@ -1125,7 +1127,7 @@ void AppLnkSet::findChildren(const QString &dr, const QString& typ, const QStrin | |||
1125 | config.setGroup( "Desktop Entry" ); | 1127 | config.setGroup( "Desktop Entry" ); |
1126 | typNameLocal = config.readEntry( "Name", typNameLocal ); | 1128 | typNameLocal = config.readEntry( "Name", typNameLocal ); |
1127 | if ( !typ.isEmpty() ) { | 1129 | if ( !typ.isEmpty() ) { |
1128 | d->typPix.insert( typ, | 1130 | d->typPix.insert( typ, |
1129 | new AppLnkImagePrivate( config.readEntry( "Icon", "AppsIcon" ) ) | 1131 | new AppLnkImagePrivate( config.readEntry( "Icon", "AppsIcon" ) ) |
1130 | ); | 1132 | ); |
1131 | d->typName.insert(typ, new QString(typNameLocal)); | 1133 | d->typName.insert(typ, new QString(typNameLocal)); |