author | drw <drw> | 2005-03-03 20:10:24 (UTC) |
---|---|---|
committer | drw <drw> | 2005-03-03 20:10:24 (UTC) |
commit | 6c3a7220a587fbd5bee75d7b6c7376339286e25d (patch) (side-by-side diff) | |
tree | a304d17109586dbf1588e393824dbf907fff6ff5 | |
parent | 9c55e475ed3170488dd37ce8f36fa909397997bb (diff) | |
download | opie-6c3a7220a587fbd5bee75d7b6c7376339286e25d.zip opie-6c3a7220a587fbd5bee75d7b6c7376339286e25d.tar.gz opie-6c3a7220a587fbd5bee75d7b6c7376339286e25d.tar.bz2 |
Scale icons appropriately
-rw-r--r-- | core/settings/button/buttonsettings.cpp | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/core/settings/button/buttonsettings.cpp b/core/settings/button/buttonsettings.cpp index d286369..779f6ef 100644 --- a/core/settings/button/buttonsettings.cpp +++ b/core/settings/button/buttonsettings.cpp @@ -27,2 +27,6 @@ +#include <opie2/odevice.h> + +#include <qpe/applnk.h> + #include <qlayout.h> @@ -31,5 +35,2 @@ - -#include <opie2/odevice.h> - #include "buttonsettings.h" @@ -155,3 +156,5 @@ void ButtonSettings::updateLabels ( ) - (*it)-> m_picon-> setPixmap ( cip. m_icon ); + QPixmap pic; + pic.convertFromImage( cip.m_icon.convertToImage().smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); + (*it)-> m_picon-> setPixmap ( pic ); (*it)-> m_plabel-> setText ( cip. m_name ); @@ -160,3 +163,4 @@ void ButtonSettings::updateLabels ( ) - (*it)-> m_hicon-> setPixmap ( cih. m_icon ); + pic.convertFromImage( cih.m_icon.convertToImage().smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); + (*it)-> m_hicon-> setPixmap ( pic ); (*it)-> m_hlabel-> setText ( cih. m_name ); |