summaryrefslogtreecommitdiff
path: root/core/applets/vmemo/vmemo.h
Unidiff
Diffstat (limited to 'core/applets/vmemo/vmemo.h') (more/less context) (show whitespace changes)
-rw-r--r--core/applets/vmemo/vmemo.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/applets/vmemo/vmemo.h b/core/applets/vmemo/vmemo.h
index 9ee08ff..31d0a25 100644
--- a/core/applets/vmemo/vmemo.h
+++ b/core/applets/vmemo/vmemo.h
@@ -24,25 +24,26 @@
24#include <qfile.h> 24#include <qfile.h>
25#include <qpe/qcopenvelope_qws.h> 25#include <qpe/qcopenvelope_qws.h>
26#include <qlabel.h> 26#include <qlabel.h>
27#include <qtimer.h> 27#include <qtimer.h>
28 28
29class VMemo : public QWidget 29class VMemo : public QWidget
30{ 30{
31 Q_OBJECT 31 Q_OBJECT
32public: 32public:
33 VMemo( QWidget *parent, const char *name = NULL); 33 VMemo( QWidget *parent, const char *name = NULL);
34 ~VMemo(); 34 ~VMemo();
35 QFile track; 35 QFile track;
36 QString fileName, errorMsg; 36 int length;
37 QString fileName, errorMsg, date;
37 QLabel* msgLabel; 38 QLabel* msgLabel;
38 QTimer *t_timer; 39 QTimer *t_timer;
39bool usingIcon, useADPCM; 40bool usingIcon, useADPCM;
40public slots: 41public slots:
41 bool record(); 42 bool record();
42 void mousePressEvent( QMouseEvent * ); 43 void mousePressEvent( QMouseEvent * );
43 void mouseReleaseEvent( QMouseEvent * ); 44 void mouseReleaseEvent( QMouseEvent * );
44 void receive( const QCString &msg, const QByteArray &data ); 45 void receive( const QCString &msg, const QByteArray &data );
45 bool startRecording(); 46 bool startRecording();
46 void stopRecording(); 47 void stopRecording();
47 void timerBreak(); 48 void timerBreak();
48private: 49private: