author | drw <drw> | 2005-03-08 21:50:02 (UTC) |
---|---|---|
committer | drw <drw> | 2005-03-08 21:50:02 (UTC) |
commit | 2b32d3e15f5774ee8f73977d606675e819498614 (patch) (side-by-side diff) | |
tree | e30982f7bfdf36bb8bfc2e3762c2d9234b809607 | |
parent | d32769dbeedb21fd7bdafb1c762e4e501cb02961 (diff) | |
download | opie-2b32d3e15f5774ee8f73977d606675e819498614.zip opie-2b32d3e15f5774ee8f73977d606675e819498614.tar.gz opie-2b32d3e15f5774ee8f73977d606675e819498614.tar.bz2 |
Better version of icon
-rw-r--r-- | noncore/applets/notesapplet/notes.cpp | 40 |
1 files changed, 5 insertions, 35 deletions
diff --git a/noncore/applets/notesapplet/notes.cpp b/noncore/applets/notesapplet/notes.cpp index b3e72a7..d06672a 100644 --- a/noncore/applets/notesapplet/notes.cpp +++ b/noncore/applets/notesapplet/notes.cpp @@ -26,2 +26,3 @@ #include <qpe/config.h> +#include <qpe/resource.h> using namespace Opie::Core; @@ -50,34 +51,2 @@ using namespace Opie::Ui; -/* XPM */ -static char * notes_xpm[] = { -"16 16 11 1", -" c None", -". c #000000", -"+ c #7F7F7F", -"@ c #BFBFBF", -"# c #BFC1FF", -"$ c #FF0000", -"% c #FFFFFF", -"& c #00037F", -"* c #0006FF", -"= c #0005BF", -"- c #7F0000", -" .. ", -" .. ", -" ... ", -" .+ ", -" .@. ", -" . .+ ", -" ..#.@. ", -" ..###.+.. ", -" ..###$...##.. ", -"..###$$$%+$$##&.", -".*=####$-###&=&.", -".=**=###==&=&=..", -" ..=**=#&=&=.. ", -" ..=*=&=.. ", -" ..=.. ", -" . "}; - - NotesControl::NotesControl( QWidget *, const char * ) @@ -463,4 +432,5 @@ NotesApplet::NotesApplet( QWidget *parent, const char *name ) : QWidget( parent, name ) { - setFixedHeight( 18 ); - setFixedWidth( 14 ); + setFixedHeight( AppLnk::smallIconSize() ); + setFixedWidth( AppLnk::smallIconSize() ); + notesPixmap.convertFromImage( Resource::loadImage( "edit" ).smoothScale( height(), width() ) ); vc = new NotesControl; @@ -510,3 +480,3 @@ void NotesApplet::paintEvent( QPaintEvent* ) { QPainter p(this); - p.drawPixmap( 0, 1, ( const char** ) notes_xpm ); + p.drawPixmap( 0, 2, notesPixmap ); } |