summaryrefslogtreecommitdiff
path: root/core/applets/vmemo/vmemo.h
authorjeremy <jeremy>2002-02-15 15:47:21 (UTC)
committer jeremy <jeremy>2002-02-15 15:47:21 (UTC)
commitee2c9639827ea77d2ae33c56580fe99671dd8eab (patch) (unidiff)
tree49988cfa5530b90b0c82a154f2805df3d35478d0 /core/applets/vmemo/vmemo.h
parente6125036c4260fb9aeb40105c1ec58777678792b (diff)
downloadopie-ee2c9639827ea77d2ae33c56580fe99671dd8eab.zip
opie-ee2c9639827ea77d2ae33c56580fe99671dd8eab.tar.gz
opie-ee2c9639827ea77d2ae33c56580fe99671dd8eab.tar.bz2
Adding support the ipaq's rec button. Not totally funtioning yet, but
getting there.
Diffstat (limited to 'core/applets/vmemo/vmemo.h') (more/less context) (show whitespace changes)
-rw-r--r--core/applets/vmemo/vmemo.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/applets/vmemo/vmemo.h b/core/applets/vmemo/vmemo.h
index ee375b0..d96cd94 100644
--- a/core/applets/vmemo/vmemo.h
+++ b/core/applets/vmemo/vmemo.h
@@ -18,32 +18,36 @@
18#define __VMEMO_H__ 18#define __VMEMO_H__
19 19
20#include <qwidget.h> 20#include <qwidget.h>
21#include <qpixmap.h> 21#include <qpixmap.h>
22#include <qpe/applnk.h> 22#include <qpe/applnk.h>
23#include <qfile.h> 23#include <qfile.h>
24#include <qpe/qcopenvelope_qws.h>
24 25
25class VMemo : public QWidget 26class VMemo : public QWidget
26{ 27{
27 Q_OBJECT 28 Q_OBJECT
28public: 29public:
29 VMemo( QWidget *parent, const char *name = NULL); 30 VMemo( QWidget *parent, const char *name = NULL);
30 ~VMemo(); 31 ~VMemo();
31 QFile track; 32 QFile track;
33
32public slots: 34public slots:
33 void record(); 35 void record();
34 void mousePressEvent( QMouseEvent * ); 36 void mousePressEvent( QMouseEvent * );
35 void mouseReleaseEvent( QMouseEvent * ); 37 void mouseReleaseEvent( QMouseEvent * );
38 void receive( const QCString &msg, const QByteArray &data );
36 39
37private: 40private:
38 void paintEvent( QPaintEvent* ); 41 void paintEvent( QPaintEvent* );
39 42
40 int openDSP(); 43 int openDSP();
41 int openWAV(const char *filename); 44 int openWAV(const char *filename);
42 45
43 QPixmap vmemoPixmap; 46 QPixmap vmemoPixmap;
47 QCopChannel *myChannel;
44 bool systemZaurus; 48 bool systemZaurus;
45 int dsp, wav, rate, speed, channels, format, resolution; 49 int dsp, wav, rate, speed, channels, format, resolution;
46 bool recording; 50 bool recording;
47}; 51};
48 52
49#endif // __VMEMO_H__ 53#endif // __VMEMO_H__