From 9b87f7a2f2de6b5c1bad4f35f76fc7a0fd1ad021 Mon Sep 17 00:00:00 2001 From: zecke Date: Wed, 12 Jun 2002 15:59:45 +0000 Subject: Fix memleak and add OBEX receive support --- (limited to 'core') diff --git a/core/applets/irdaapplet/irda.cpp b/core/applets/irdaapplet/irda.cpp index a197957..67e7f22 100644 --- a/core/applets/irdaapplet/irda.cpp +++ b/core/applets/irdaapplet/irda.cpp @@ -25,6 +25,8 @@ #include #include #include +#include +#include #include #include @@ -149,9 +151,12 @@ void IrdaApplet::mousePressEvent( QMouseEvent *) else menu->insertItem( tr("Enable Discovery"), 3 ); - QPoint p = mapToGlobal( QPoint(1, -menu->sizeHint().height()-1) ); + if( Ir::supported() ){ + menu->insertItem( tr("Enable Receive"), 4 ); + } + QPoint p = mapToGlobal( QPoint(1, menu->sizeHint().height()-1) ); ret = menu->exec(p, 2); - + qDebug("ret was %d\n", ret); switch(ret) { @@ -169,13 +174,19 @@ void IrdaApplet::mousePressEvent( QMouseEvent *) break; case 3: setIrdaDiscoveryStatus(1); - timerEvent(NULL); + timerEvent(NULL); // NULL is undefined in c++ use 0 or 0l break; - case 4: + case 4: { // enable receive{ + qWarning("Enable receive" ); + QCopEnvelope e("QPE/Obex", "receive(bool)" ); + e << true; + break; + } + case 6: qDebug("FIXME: Bring up pretty menu...\n"); // With table of currently-detected devices. } - + delete menu; // Can somebody explain why use a QPopupMenu* and not QPopupMenu nor QAction. with out delete we will leak cause QPopupMenu doesn't have a parent in this case } void IrdaApplet::timerEvent( QTimerEvent * ) diff --git a/core/applets/irdaapplet/irda.h b/core/applets/irdaapplet/irda.h index 2f84909..bb174e8 100644 --- a/core/applets/irdaapplet/irda.h +++ b/core/applets/irdaapplet/irda.h @@ -12,8 +12,8 @@ ** **********************************************************************/ -#ifndef __SCREENSHOT_APPLET_H__ -#define __SCREENSHOT_APPLET_H__ +#ifndef SCREENSHOT_APPLET_H__ +#define SCREENSHOT_APPLET_H__ @@ -35,7 +35,6 @@ public: protected: void timerEvent(QTimerEvent *te ); -public slots: private: void mousePressEvent( QMouseEvent * ); void paintEvent( QPaintEvent* ); @@ -49,7 +48,7 @@ private: QPixmap irdaOnPixmap; QPixmap irdaOffPixmap; QPixmap irdaDiscoveryOnPixmap; - int irdaactive; + int irdaactive; // bool and bitfields later bool irdaactive :1 ; int irdaDiscoveryActive; private slots: -- cgit v0.9.0.2