summaryrefslogtreecommitdiff
path: root/examples/menuapplet/example.cpp
authordrw <drw>2005-06-15 22:39:20 (UTC)
committer drw <drw>2005-06-15 22:39:20 (UTC)
commite0205bac48b9d23af9feb48004c24fcf7a5e8200 (patch) (side-by-side diff)
tree2faa077192fd0bfc4fc409f0513cc0e82113fa9e /examples/menuapplet/example.cpp
parentd2474c8e654d223b85b6200ce09fabd3a40af8e3 (diff)
downloadopie-e0205bac48b9d23af9feb48004c24fcf7a5e8200.zip
opie-e0205bac48b9d23af9feb48004c24fcf7a5e8200.tar.gz
opie-e0205bac48b9d23af9feb48004c24fcf7a5e8200.tar.bz2
Resource -> OResource
Diffstat (limited to 'examples/menuapplet/example.cpp') (more/less context) (show whitespace changes)
-rw-r--r--examples/menuapplet/example.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/examples/menuapplet/example.cpp b/examples/menuapplet/example.cpp
index 8ae77da..079030f 100644
--- a/examples/menuapplet/example.cpp
+++ b/examples/menuapplet/example.cpp
@@ -1,16 +1,15 @@
#include "example.h"
-#include <qpe/applnk.h>
-#include <qpe/resource.h>
+#include <opie2/oresource.h>
/* QT */
#include <qiconset.h>
#include <qpopupmenu.h>
#include <qmessagebox.h>
MenuAppletExample::MenuAppletExample()
:QObject( 0, "MenuAppletExample" )
{
}
@@ -26,29 +25,25 @@ QString MenuAppletExample::name() const
{
return tr( "MenuApplet Example Name" );
}
QString MenuAppletExample::text() const
{
return tr( "Click the white rabbit" );
}
QIconSet MenuAppletExample::icon() const
{
- QPixmap pix;
- QImage img = Resource::loadImage( "Tux" );
- if ( !img.isNull() )
- pix.convertFromImage( img.smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) );
- return pix;
+ return Opie::Core::OResource::loadPixmap( "Tux", Opie::Core::OResource::SmallIcon );
}
QPopupMenu* MenuAppletExample::popup(QWidget*) const
{
/* no subdir */
return 0;
}
void MenuAppletExample::activated()
{
QMessageBox::information(0,tr("No white rabbit found"),
tr("<qt>No white rabbit was seen near Opie."