summaryrefslogtreecommitdiff
path: root/core
authorzecke <zecke>2002-06-12 15:59:45 (UTC)
committer zecke <zecke>2002-06-12 15:59:45 (UTC)
commit9b87f7a2f2de6b5c1bad4f35f76fc7a0fd1ad021 (patch) (side-by-side diff)
tree3e1ccaae54d96ae3cbb25fba48814fb31c15105d /core
parent8a53908265672bd3feee0ace40f9e5e38de2f30e (diff)
downloadopie-9b87f7a2f2de6b5c1bad4f35f76fc7a0fd1ad021.zip
opie-9b87f7a2f2de6b5c1bad4f35f76fc7a0fd1ad021.tar.gz
opie-9b87f7a2f2de6b5c1bad4f35f76fc7a0fd1ad021.tar.bz2
Fix memleak and add OBEX receive support
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/irdaapplet/irda.cpp21
-rw-r--r--core/applets/irdaapplet/irda.h7
2 files changed, 19 insertions, 9 deletions
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
@@ -22,12 +22,14 @@
#include <qpe/qpeapplication.h>
#include <qpe/timestring.h>
#include <qpe/resource.h>
#include <qpe/config.h>
#include <qpe/applnk.h>
#include <qpe/config.h>
+#include <qpe/ir.h>
+#include <qpe/qcopenvelope_qws.h>
#include <qdir.h>
#include <qfileinfo.h>
#include <qpoint.h>
#include <qpushbutton.h>
#include <qpainter.h>
@@ -146,15 +148,18 @@ void IrdaApplet::mousePressEvent( QMouseEvent *)
if (irdaDiscoveryActive)
menu->insertItem( tr("Disable Discovery"), 2 );
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) {
case 0:
setIrdaStatus(0);
timerEvent(NULL);
@@ -166,19 +171,25 @@ void IrdaApplet::mousePressEvent( QMouseEvent *)
case 2:
setIrdaDiscoveryStatus(0);
timerEvent(NULL);
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 * )
{
int oldactive = irdaactive;
int olddiscovery = irdaDiscoveryActive;
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
@@ -9,14 +9,14 @@
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
**********************************************************************/
-#ifndef __SCREENSHOT_APPLET_H__
-#define __SCREENSHOT_APPLET_H__
+#ifndef SCREENSHOT_APPLET_H__
+#define SCREENSHOT_APPLET_H__
#include <qwidget.h>
#include <qframe.h>
#include <qpixmap.h>
@@ -32,13 +32,12 @@ public:
IrdaApplet( QWidget *parent = 0, const char *name=0 );
~IrdaApplet();
protected:
void timerEvent(QTimerEvent *te );
-public slots:
private:
void mousePressEvent( QMouseEvent * );
void paintEvent( QPaintEvent* );
int checkIrdaStatus();
int setIrdaStatus(int);
int checkIrdaDiscoveryStatus();
@@ -46,13 +45,13 @@ private:
int sockfd;
private:
QPixmap irdaOnPixmap;
QPixmap irdaOffPixmap;
QPixmap irdaDiscoveryOnPixmap;
- int irdaactive;
+ int irdaactive; // bool and bitfields later bool irdaactive :1 ;
int irdaDiscoveryActive;
private slots:
};