author | jeremy <jeremy> | 2002-02-15 17:01:32 (UTC) |
---|---|---|
committer | jeremy <jeremy> | 2002-02-15 17:01:32 (UTC) |
commit | 3a3b4465992439e6a52190fdfc757166aa3de880 (patch) (side-by-side diff) | |
tree | e795a6dfe4cf9e517121dd2c1b35111d6e3f89bc | |
parent | 379e66393a2986e218baad0e585c1b4a0dd7d045 (diff) | |
download | opie-3a3b4465992439e6a52190fdfc757166aa3de880.zip opie-3a3b4465992439e6a52190fdfc757166aa3de880.tar.gz opie-3a3b4465992439e6a52190fdfc757166aa3de880.tar.bz2 |
Trying to make QCop to work
-rw-r--r-- | core/applets/vmemo/vmemo.cpp | 12 | ||||
-rw-r--r-- | core/applets/vmemo/vmemo.h | 1 |
2 files changed, 11 insertions, 2 deletions
diff --git a/core/applets/vmemo/vmemo.cpp b/core/applets/vmemo/vmemo.cpp index 8875cdf..5ce6fa9 100644 --- a/core/applets/vmemo/vmemo.cpp +++ b/core/applets/vmemo/vmemo.cpp @@ -133,24 +133,25 @@ static char * vmemo_xpm[] = { " h0,!_;2@ ", " ))))) "}; VMemo::VMemo( QWidget *parent, const char *name ) : QWidget( parent, name ) { setFixedHeight( 18 ); setFixedWidth( 14 ); recording = FALSE; myChannel = new QCopChannel( "QPE/VMemo", this ); + connect( myChannel, SIGNAL(sayHi()), this, SLOT(sayHi()) ); connect( myChannel, SIGNAL(received(const QCString&, const QByteArray&)), this, SLOT(receive(const QCString&, const QByteArray&)) ); struct utsname name; /* check for embedix kernel running on the zaurus, if lineo change string, this break */ if (uname(&name) != -1) { QString release=name.release; qWarning("System release: %s\n", name.release); if(release.find("embedix",0,TRUE) !=-1) systemZaurus=TRUE; @@ -180,62 +181,69 @@ VMemo::VMemo( QWidget *parent, const char *name ) { FD_ZERO(&fdr); FD_SET(key, &fdr); max = key; qWarning("while"); read(key, buffer, 10); if(*buffer == (char)129) { qWarning("REC = stop"); QCopEnvelope( "QPE/VMemo", "toggleRecord()"); - activate_signal("toggleRecordNow()"); + QCopEnvelope( "QPE/VMemo", "sayHi()"); } else if(*buffer == (char)1) { qWarning("REC = start"); QCopEnvelope( "QPE/VMemo", "toggleRecord()"); - activate_signal("toggleRecordNow()"); + QCopEnvelope( "QPE/VMemo", "sayHi()"); } } } else if(fr) qWarning("parent: Fork = good"); } } qWarning("VMemo done init"); } VMemo::~VMemo() { } +void VMemo::sayHi() +{ + qWarning("Hi"); +} + void VMemo::receive( const QCString &msg, const QByteArray &data ) { QDataStream stream( data, IO_ReadOnly ); qWarning(msg); if ( msg == "toggleRecord()" ) { qWarning("Hello"); } } void VMemo::paintEvent( QPaintEvent* ) { QPainter p(this); p.drawPixmap( 0, 1,( const char** ) vmemo_xpm ); } void VMemo::mousePressEvent( QMouseEvent * ) { + QCopEnvelope( "QPE/VMemo", "sayHi()"); + // just to be safe if (recording) { recording = FALSE; return; } qWarning("VMemo::mousePress()"); QSound::play(Resource::findSound("vmemob")); recording = TRUE; qWarning("VMemo::mousePress() -> Starting to record"); diff --git a/core/applets/vmemo/vmemo.h b/core/applets/vmemo/vmemo.h index d96cd94..824309e 100644 --- a/core/applets/vmemo/vmemo.h +++ b/core/applets/vmemo/vmemo.h @@ -27,24 +27,25 @@ class VMemo : public QWidget { Q_OBJECT public: VMemo( QWidget *parent, const char *name = NULL); ~VMemo(); QFile track; public slots: void record(); void mousePressEvent( QMouseEvent * ); void mouseReleaseEvent( QMouseEvent * ); void receive( const QCString &msg, const QByteArray &data ); + void sayHi(); private: void paintEvent( QPaintEvent* ); int openDSP(); int openWAV(const char *filename); QPixmap vmemoPixmap; QCopChannel *myChannel; bool systemZaurus; int dsp, wav, rate, speed, channels, format, resolution; bool recording; |