author | llornkcor <llornkcor> | 2002-05-26 23:41:26 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-05-26 23:41:26 (UTC) |
commit | ff4ab0f08fe935fd781be4caa245cb953e9f68ce (patch) (unidiff) | |
tree | 3a20249c724552e4437677dea4e407397afc1610 | |
parent | f0d0d53759436686f7f15fcd55a6706b1ecaa1cc (diff) | |
download | opie-ff4ab0f08fe935fd781be4caa245cb953e9f68ce.zip opie-ff4ab0f08fe935fd781be4caa245cb953e9f68ce.tar.gz opie-ff4ab0f08fe935fd781be4caa245cb953e9f68ce.tar.bz2 |
changed visual alert to QLabel in the corner while recording, instead of nag screen when stopping recording. made pick-a-key record work
-rw-r--r-- | core/applets/vmemo/vmemo.cpp | 78 | ||||
-rw-r--r-- | core/applets/vmemo/vmemo.h | 6 |
2 files changed, 72 insertions, 12 deletions
diff --git a/core/applets/vmemo/vmemo.cpp b/core/applets/vmemo/vmemo.cpp index f5d2b20..e327098 100644 --- a/core/applets/vmemo/vmemo.cpp +++ b/core/applets/vmemo/vmemo.cpp | |||
@@ -16,499 +16,557 @@ | |||
16 | // Sun 03-17-2002 L.J.Potter <ljp@llornkcor.com> | 16 | // Sun 03-17-2002 L.J.Potter <ljp@llornkcor.com> |
17 | #include <sys/utsname.h> | 17 | #include <sys/utsname.h> |
18 | #include <sys/time.h> | 18 | #include <sys/time.h> |
19 | #include <sys/types.h> | 19 | #include <sys/types.h> |
20 | #include <unistd.h> | 20 | #include <unistd.h> |
21 | #include <stdio.h> | 21 | #include <stdio.h> |
22 | #include <sys/stat.h> | 22 | #include <sys/stat.h> |
23 | #include <fcntl.h> | 23 | #include <fcntl.h> |
24 | #include <sys/ioctl.h> | 24 | #include <sys/ioctl.h> |
25 | #include <linux/soundcard.h> | 25 | #include <linux/soundcard.h> |
26 | 26 | ||
27 | #include <string.h> | 27 | #include <string.h> |
28 | #include <stdlib.h> | 28 | #include <stdlib.h> |
29 | #include <errno.h> | 29 | #include <errno.h> |
30 | 30 | ||
31 | typedef struct _waveheader { | 31 | typedef struct _waveheader { |
32 | u_long main_chunk; /* 'RIFF' */ | 32 | u_long main_chunk; /* 'RIFF' */ |
33 | u_long length; /* filelen */ | 33 | u_long length; /* filelen */ |
34 | u_long chunk_type; /* 'WAVE' */ | 34 | u_long chunk_type; /* 'WAVE' */ |
35 | u_long sub_chunk; /* 'fmt ' */ | 35 | u_long sub_chunk; /* 'fmt ' */ |
36 | u_long sc_len; /* length of sub_chunk, =16 | 36 | u_long sc_len; /* length of sub_chunk, =16 |
37 | (chunckSize) format len */ | 37 | (chunckSize) format len */ |
38 | u_short format; /* should be 1 for PCM-code (formatTag) */ | 38 | u_short format; /* should be 1 for PCM-code (formatTag) */ |
39 | 39 | ||
40 | u_short modus; /* 1 Mono, 2 Stereo (channels) */ | 40 | u_short modus; /* 1 Mono, 2 Stereo (channels) */ |
41 | u_long sample_fq; /* samples per second (samplesPerSecond) */ | 41 | u_long sample_fq; /* samples per second (samplesPerSecond) */ |
42 | u_long byte_p_sec; /* avg bytes per second (avgBytePerSecond) */ | 42 | u_long byte_p_sec; /* avg bytes per second (avgBytePerSecond) */ |
43 | u_short byte_p_spl; /* samplesize; 1 or 2 bytes (blockAlign) */ | 43 | u_short byte_p_spl; /* samplesize; 1 or 2 bytes (blockAlign) */ |
44 | u_short bit_p_spl; /* 8, 12 or 16 bit (bitsPerSample) */ | 44 | u_short bit_p_spl; /* 8, 12 or 16 bit (bitsPerSample) */ |
45 | 45 | ||
46 | u_long data_chunk; /* 'data' */ | 46 | u_long data_chunk; /* 'data' */ |
47 | 47 | ||
48 | u_long data_length;/* samplecount */ | 48 | u_long data_length;/* samplecount */ |
49 | } WaveHeader; | 49 | } WaveHeader; |
50 | 50 | ||
51 | #define RIFF 0x46464952 | 51 | #define RIFF 0x46464952 |
52 | #define WAVE 0x45564157 | 52 | #define WAVE 0x45564157 |
53 | #define FMT 0x20746D66 | 53 | #define FMT 0x20746D66 |
54 | #define DATA 0x61746164 | 54 | #define DATA 0x61746164 |
55 | #define PCM_CODE 1 | 55 | #define PCM_CODE 1 |
56 | #define WAVE_MONO 1 | 56 | #define WAVE_MONO 1 |
57 | #define WAVE_STEREO 2 | 57 | #define WAVE_STEREO 2 |
58 | 58 | ||
59 | #include "vmemo.h" | 59 | #include "vmemo.h" |
60 | 60 | ||
61 | #include <qpe/qpeapplication.h> | 61 | #include <qpe/qpeapplication.h> |
62 | #include <qpe/resource.h> | 62 | #include <qpe/resource.h> |
63 | #include <qpe/config.h> | 63 | #include <qpe/config.h> |
64 | 64 | ||
65 | #include <qpainter.h> | 65 | #include <qpainter.h> |
66 | #include <qdatetime.h> | 66 | #include <qdatetime.h> |
67 | #include <qregexp.h> | 67 | #include <qregexp.h> |
68 | #include <qsound.h> | 68 | #include <qsound.h> |
69 | #include <qfile.h> | 69 | #include <qfile.h> |
70 | #include <qmessagebox.h> | 70 | #include <qmessagebox.h> |
71 | 71 | ||
72 | int seq = 0; | 72 | int seq = 0; |
73 | 73 | ||
74 | /* XPM */ | 74 | /* XPM */ |
75 | static char * vmemo_xpm[] = { | 75 | static char * vmemo_xpm[] = { |
76 | "16 16 102 2", | 76 | "16 16 102 2", |
77 | " c None", | 77 | " c None", |
78 | ". c #60636A", | 78 | ". c #60636A", |
79 | "+ c #6E6E72", | 79 | "+ c #6E6E72", |
80 | "@ c #68696E", | 80 | "@ c #68696E", |
81 | "# c #4D525C", | 81 | "# c #4D525C", |
82 | "$ c #6B6C70", | 82 | "$ c #6B6C70", |
83 | "% c #E3E3E8", | 83 | "% c #E3E3E8", |
84 | "& c #EEEEF2", | 84 | "& c #EEEEF2", |
85 | "* c #EAEAEF", | 85 | "* c #EAEAEF", |
86 | "= c #CACAD0", | 86 | "= c #CACAD0", |
87 | "- c #474A51", | 87 | "- c #474A51", |
88 | "; c #171819", | 88 | "; c #171819", |
89 | "> c #9B9B9F", | 89 | "> c #9B9B9F", |
90 | ", c #EBEBF0", | 90 | ", c #EBEBF0", |
91 | "' c #F4F4F7", | 91 | "' c #F4F4F7", |
92 | ") c #F1F1F5", | 92 | ") c #F1F1F5", |
93 | "! c #DEDEE4", | 93 | "! c #DEDEE4", |
94 | "~ c #57575C", | 94 | "~ c #57575C", |
95 | "{ c #010101", | 95 | "{ c #010101", |
96 | "] c #A2A2A6", | 96 | "] c #A2A2A6", |
97 | "^ c #747477", | 97 | "^ c #747477", |
98 | "/ c #B5B5B8", | 98 | "/ c #B5B5B8", |
99 | "( c #AEAEB2", | 99 | "( c #AEAEB2", |
100 | "_ c #69696D", | 100 | "_ c #69696D", |
101 | ": c #525256", | 101 | ": c #525256", |
102 | "< c #181C24", | 102 | "< c #181C24", |
103 | "[ c #97979B", | 103 | "[ c #97979B", |
104 | "} c #A7A7AC", | 104 | "} c #A7A7AC", |
105 | "| c #B0B0B4", | 105 | "| c #B0B0B4", |
106 | "1 c #C8C8D1", | 106 | "1 c #C8C8D1", |
107 | "2 c #75757B", | 107 | "2 c #75757B", |
108 | "3 c #46464A", | 108 | "3 c #46464A", |
109 | "4 c #494A4F", | 109 | "4 c #494A4F", |
110 | "5 c #323234", | 110 | "5 c #323234", |
111 | "6 c #909095", | 111 | "6 c #909095", |
112 | "7 c #39393B", | 112 | "7 c #39393B", |
113 | "8 c #757578", | 113 | "8 c #757578", |
114 | "9 c #87878E", | 114 | "9 c #87878E", |
115 | "0 c #222224", | 115 | "0 c #222224", |
116 | "a c #414144", | 116 | "a c #414144", |
117 | "b c #6A6A6E", | 117 | "b c #6A6A6E", |
118 | "c c #020C16", | 118 | "c c #020C16", |
119 | "d c #6B6B6F", | 119 | "d c #6B6B6F", |
120 | "e c #68686D", | 120 | "e c #68686D", |
121 | "f c #5B5B60", | 121 | "f c #5B5B60", |
122 | "g c #8A8A8F", | 122 | "g c #8A8A8F", |
123 | "h c #6B6B6E", | 123 | "h c #6B6B6E", |
124 | "i c #ADADB2", | 124 | "i c #ADADB2", |
125 | "j c #828289", | 125 | "j c #828289", |
126 | "k c #3E3E41", | 126 | "k c #3E3E41", |
127 | "l c #CFCFD7", | 127 | "l c #CFCFD7", |
128 | "m c #4C4C50", | 128 | "m c #4C4C50", |
129 | "n c #000000", | 129 | "n c #000000", |
130 | "o c #66666A", | 130 | "o c #66666A", |
131 | "p c #505054", | 131 | "p c #505054", |
132 | "q c #838388", | 132 | "q c #838388", |
133 | "r c #A1A1A7", | 133 | "r c #A1A1A7", |
134 | "s c #A9A9AE", | 134 | "s c #A9A9AE", |
135 | "t c #A8A8B0", | 135 | "t c #A8A8B0", |
136 | "u c #5E5E63", | 136 | "u c #5E5E63", |
137 | "v c #3A3A3E", | 137 | "v c #3A3A3E", |
138 | "w c #BDBDC6", | 138 | "w c #BDBDC6", |
139 | "x c #59595E", | 139 | "x c #59595E", |
140 | "y c #76767C", | 140 | "y c #76767C", |
141 | "z c #373738", | 141 | "z c #373738", |
142 | "A c #717174", | 142 | "A c #717174", |
143 | "B c #727278", | 143 | "B c #727278", |
144 | "C c #1C1C1E", | 144 | "C c #1C1C1E", |
145 | "D c #3C3C3F", | 145 | "D c #3C3C3F", |
146 | "E c #ADADB6", | 146 | "E c #ADADB6", |
147 | "F c #54555A", | 147 | "F c #54555A", |
148 | "G c #8B8C94", | 148 | "G c #8B8C94", |
149 | "H c #5A5A5F", | 149 | "H c #5A5A5F", |
150 | "I c #BBBBC3", | 150 | "I c #BBBBC3", |
151 | "J c #C4C4CB", | 151 | "J c #C4C4CB", |
152 | "K c #909098", | 152 | "K c #909098", |
153 | "L c #737379", | 153 | "L c #737379", |
154 | "M c #343437", | 154 | "M c #343437", |
155 | "N c #8F8F98", | 155 | "N c #8F8F98", |
156 | "O c #000407", | 156 | "O c #000407", |
157 | "P c #2D3137", | 157 | "P c #2D3137", |
158 | "Q c #B0B1BC", | 158 | "Q c #B0B1BC", |
159 | "R c #3B3C40", | 159 | "R c #3B3C40", |
160 | "S c #6E6E74", | 160 | "S c #6E6E74", |
161 | "T c #95959C", | 161 | "T c #95959C", |
162 | "U c #74747A", | 162 | "U c #74747A", |
163 | "V c #1D1D1E", | 163 | "V c #1D1D1E", |
164 | "W c #91929A", | 164 | "W c #91929A", |
165 | "X c #42444A", | 165 | "X c #42444A", |
166 | "Y c #22282E", | 166 | "Y c #22282E", |
167 | "Z c #B0B2BC", | 167 | "Z c #B0B2BC", |
168 | "` c #898A90", | 168 | "` c #898A90", |
169 | " . c #65656A", | 169 | " . c #65656A", |
170 | ".. c #999AA2", | 170 | ".. c #999AA2", |
171 | "+. c #52535A", | 171 | "+. c #52535A", |
172 | "@. c #151B21", | 172 | "@. c #151B21", |
173 | "#. c #515257", | 173 | "#. c #515257", |
174 | "$. c #B5B5BE", | 174 | "$. c #B5B5BE", |
175 | "%. c #616167", | 175 | "%. c #616167", |
176 | "&. c #1A1D22", | 176 | "&. c #1A1D22", |
177 | "*. c #000713", | 177 | "*. c #000713", |
178 | "=. c #1F1F21", | 178 | "=. c #1F1F21", |
179 | " ", | 179 | " ", |
180 | " . + @ # ", | 180 | " . + @ # ", |
181 | " $ % & * = - ", | 181 | " $ % & * = - ", |
182 | " ; > , ' ) ! ~ ", | 182 | " ; > , ' ) ! ~ ", |
183 | " { ] ^ / ( _ : ", | 183 | " { ] ^ / ( _ : ", |
184 | " < [ } | 1 2 3 ", | 184 | " < [ } | 1 2 3 ", |
185 | " 4 5 6 7 8 9 0 a b c ", | 185 | " 4 5 6 7 8 9 0 a b c ", |
186 | " d e f g h i j 3 k l m n ", | 186 | " d e f g h i j 3 k l m n ", |
187 | " o p q r s t u v w n ", | 187 | " o p q r s t u v w n ", |
188 | " o x y z A B C D E n ", | 188 | " o x y z A B C D E n ", |
189 | " F G H I J K L M N O ", | 189 | " F G H I J K L M N O ", |
190 | " P Q R S T U V W X ", | 190 | " P Q R S T U V W X ", |
191 | " Y Z ` b ...+. ", | 191 | " Y Z ` b ...+. ", |
192 | " @.#.$.%.&. ", | 192 | " @.#.$.%.&. ", |
193 | " *.B =. ", | 193 | " *.B =. ", |
194 | " n n n n n n n n n "}; | 194 | " n n n n n n n n n "}; |
195 | 195 | ||
196 | 196 | ||
197 | VMemo::VMemo( QWidget *parent, const char *_name ) | 197 | VMemo::VMemo( QWidget *parent, const char *_name ) |
198 | : QWidget( parent, _name ) | 198 | : QWidget( parent, _name ) |
199 | { | 199 | { |
200 | setFixedHeight( 18 ); | 200 | setFixedHeight( 18 ); |
201 | setFixedWidth( 14 ); | 201 | setFixedWidth( 14 ); |
202 | 202 | ||
203 | recording = FALSE; | 203 | recording = FALSE; |
204 | 204 | ||
205 | struct utsname name; /* check for embedix kernel running on the zaurus*/ | 205 | struct utsname name; /* check for embedix kernel running on the zaurus*/ |
206 | if (uname(&name) != -1) { | 206 | if (uname(&name) != -1) { |
207 | QString release=name.release; | 207 | QString release=name.release; |
208 | Config vmCfg("VMemo"); | 208 | Config vmCfg("Vmemo"); |
209 | vmCfg.setGroup("Defaults"); | 209 | vmCfg.setGroup("Defaults"); |
210 | int toggleKey = vmCfg.readNumEntry("toggleKey", -1); | 210 | int toggleKey = setToggleButton(vmCfg.readNumEntry("toggleKey", -1)); |
211 | 211 | ||
212 | qDebug("toggleKey %d", toggleKey); | ||
213 | |||
212 | if(release.find("embedix",0,TRUE) !=-1) | 214 | if(release.find("embedix",0,TRUE) !=-1) |
213 | systemZaurus=TRUE; | 215 | systemZaurus=TRUE; |
214 | else | 216 | else |
215 | systemZaurus=FALSE; | 217 | systemZaurus=FALSE; |
216 | 218 | ||
217 | myChannel = new QCopChannel( "QPE/VMemo", this ); | 219 | myChannel = new QCopChannel( "QPE/VMemo", this ); |
218 | connect( myChannel, SIGNAL(received(const QCString&, const QByteArray&)), | 220 | connect( myChannel, SIGNAL(received(const QCString&, const QByteArray&)), |
219 | this, SLOT(receive(const QCString&, const QByteArray&)) ); | 221 | this, SLOT(receive(const QCString&, const QByteArray&)) ); |
220 | 222 | ||
221 | if( toggleKey != -1 ) { | 223 | if( toggleKey != -1 ) { |
222 | QCopEnvelope e("QPE/Desktop", "keyRegister(int key, QString channel, QString message)"); | 224 | QCopEnvelope e("QPE/Desktop", "keyRegister(int key, QString channel, QString message)"); |
223 | // e << 4096; // Key_Escape | 225 | // e << 4096; // Key_Escape |
224 | // e << Key_F5; //4148 | 226 | // e << Key_F5; //4148 |
225 | e << toggleKey; | 227 | e << toggleKey; |
226 | e << QString("QPE/VMemo"); | 228 | e << QString("QPE/VMemo"); |
227 | e << QString("toggleRecord()"); | 229 | e << QString("toggleRecord()"); |
228 | } | 230 | } |
229 | if( vmCfg.readNumEntry("hideIcon",0) == 1) | 231 | if( vmCfg.readNumEntry("hideIcon",0) == 1) |
230 | hide(); | 232 | hide(); |
231 | } | 233 | } |
232 | } | 234 | } |
233 | 235 | ||
234 | VMemo::~VMemo() | 236 | VMemo::~VMemo() |
235 | { | 237 | { |
236 | } | 238 | } |
237 | 239 | ||
238 | void VMemo::receive( const QCString &msg, const QByteArray &data ) | 240 | void VMemo::receive( const QCString &msg, const QByteArray &data ) |
239 | { | 241 | { |
240 | QDataStream stream( data, IO_ReadOnly ); | 242 | QDataStream stream( data, IO_ReadOnly ); |
241 | if (msg == "toggleRecord()") { | 243 | if (msg == "toggleRecord()") { |
242 | if (recording) { | 244 | if (recording) { |
243 | fromToggle = TRUE; | 245 | fromToggle = TRUE; |
244 | stopRecording(); | 246 | stopRecording(); |
245 | } else { | 247 | } else { |
246 | fromToggle = TRUE; | 248 | fromToggle = TRUE; |
247 | startRecording(); | 249 | startRecording(); |
248 | } | 250 | } |
249 | } | 251 | } |
250 | } | 252 | } |
251 | 253 | ||
252 | void VMemo::paintEvent( QPaintEvent* ) | 254 | void VMemo::paintEvent( QPaintEvent* ) |
253 | { | 255 | { |
254 | QPainter p(this); | 256 | QPainter p(this); |
255 | p.drawPixmap( 0, 1,( const char** ) vmemo_xpm ); | 257 | p.drawPixmap( 0, 1,( const char** ) vmemo_xpm ); |
256 | } | 258 | } |
257 | 259 | ||
258 | void VMemo::mousePressEvent( QMouseEvent * ) | 260 | void VMemo::mousePressEvent( QMouseEvent * ) |
259 | { | 261 | { |
260 | startRecording(); | 262 | startRecording(); |
261 | } | 263 | } |
262 | 264 | ||
263 | void VMemo::mouseReleaseEvent( QMouseEvent * ) | 265 | void VMemo::mouseReleaseEvent( QMouseEvent * ) |
264 | { | 266 | { |
265 | stopRecording(); | 267 | stopRecording(); |
266 | } | 268 | } |
267 | 269 | ||
268 | bool VMemo::startRecording() { | 270 | bool VMemo::startRecording() { |
269 | 271 | ||
270 | if ( recording) | 272 | if ( recording) |
271 | return FALSE;; | 273 | return FALSE;; |
272 | Config config( "Vmemo" ); | 274 | |
275 | Config config( "Vmemo" ); | ||
273 | config.setGroup( "System" ); | 276 | config.setGroup( "System" ); |
277 | |||
274 | useAlerts = config.readBoolEntry("Alert"); | 278 | useAlerts = config.readBoolEntry("Alert"); |
279 | if(useAlerts) { | ||
280 | |||
281 | msgLabel = new QLabel( 0, "alertLabel" ); | ||
282 | msgLabel->setText("<B><P><font size=+2>VMemo-Recording</font></B>"); | ||
283 | msgLabel->show(); | ||
284 | } | ||
275 | 285 | ||
276 | // if(useAlerts) | 286 | // if(useAlerts) |
277 | // QMessageBox::message("VMemo","Really Record?");//) ==1) | 287 | // QMessageBox::message("VMemo","Really Record?");//) ==1) |
278 | // return; | 288 | // return; |
279 | // } else { | 289 | // } else { |
280 | if (!systemZaurus ) | 290 | if (!systemZaurus ) |
281 | QSound::play(Resource::findSound("vmemob")); | 291 | QSound::play(Resource::findSound("vmemob")); |
282 | // } | 292 | // } |
283 | qDebug("Start recording"); | 293 | qDebug("Start recording"); |
284 | recording = TRUE; | 294 | recording = TRUE; |
285 | if (openDSP() == -1) { | 295 | if (openDSP() == -1) { |
286 | QMessageBox::critical(0, "VMemo", "Could not open dsp device.\n"+errorMsg, "Abort"); | 296 | QMessageBox::critical(0, "vmemo", "Could not open dsp device.\n"+errorMsg, "Abort"); |
287 | recording = FALSE; | 297 | recording = FALSE; |
288 | return FALSE; | 298 | return FALSE; |
289 | } | 299 | } |
290 | 300 | ||
291 | config.setGroup("Defaults"); | 301 | config.setGroup("Defaults"); |
292 | 302 | ||
293 | QDateTime dt = QDateTime::currentDateTime(); | 303 | QDateTime dt = QDateTime::currentDateTime(); |
294 | 304 | ||
295 | QString fName; | 305 | QString fName; |
296 | config.setGroup( "System" ); | 306 | config.setGroup( "System" ); |
297 | fName = QPEApplication::documentDir() ; | 307 | fName = QPEApplication::documentDir() ; |
298 | fileName = config.readEntry("RecLocation", fName); | 308 | fileName = config.readEntry("RecLocation", fName); |
299 | 309 | ||
300 | int s; | 310 | int s; |
301 | s=fileName.find(':'); | 311 | s=fileName.find(':'); |
302 | if(s) | 312 | if(s) |
303 | fileName=fileName.right(fileName.length()-s-2); | 313 | fileName=fileName.right(fileName.length()-s-2); |
304 | qDebug("filename will be "+fileName); | 314 | qDebug("filename will be "+fileName); |
305 | if( fileName.left(1).find('/') == -1) | 315 | if( fileName.left(1).find('/') == -1) |
306 | fileName="/"+fileName; | 316 | fileName="/"+fileName; |
307 | if( fileName.right(1).find('/') == -1) | 317 | if( fileName.right(1).find('/') == -1) |
308 | fileName+="/"; | 318 | fileName+="/"; |
309 | fName = "vm_"+ dt.toString()+ ".wav"; | 319 | fName = "vm_"+ dt.toString()+ ".wav"; |
310 | 320 | ||
311 | fileName+=fName; | 321 | fileName+=fName; |
312 | qDebug("filename is "+fileName); | 322 | qDebug("filename is "+fileName); |
313 | // No spaces in the filename | 323 | // No spaces in the filename |
314 | fileName.replace(QRegExp("'"),""); | 324 | fileName.replace(QRegExp("'"),""); |
315 | fileName.replace(QRegExp(" "),"_"); | 325 | fileName.replace(QRegExp(" "),"_"); |
316 | fileName.replace(QRegExp(":"),"."); | 326 | fileName.replace(QRegExp(":"),"."); |
317 | fileName.replace(QRegExp(","),""); | 327 | fileName.replace(QRegExp(","),""); |
318 | 328 | ||
319 | if(openWAV(fileName.latin1()) == -1) { | 329 | if(openWAV(fileName.latin1()) == -1) { |
320 | QString err("Could not open the output file\n"); | 330 | QString err("Could not open the output file\n"); |
321 | err += fileName; | 331 | err += fileName; |
322 | QMessageBox::critical(0, "VMemo", err, "Abort"); | 332 | QMessageBox::critical(0, "vmemo", err, "Abort"); |
323 | close(dsp); | 333 | close(dsp); |
324 | return FALSE; | 334 | return FALSE; |
325 | } | 335 | } |
326 | 336 | ||
327 | QArray<int> cats(1); | 337 | QArray<int> cats(1); |
328 | cats[0] = config.readNumEntry("Category", 0); | 338 | cats[0] = config.readNumEntry("Category", 0); |
329 | 339 | ||
330 | QString dlName("vm_"); | 340 | QString dlName("vm_"); |
331 | dlName += dt.toString(); | 341 | dlName += dt.toString(); |
332 | DocLnk l; | 342 | DocLnk l; |
333 | l.setFile(fileName); | 343 | l.setFile(fileName); |
334 | l.setName(dlName); | 344 | l.setName(dlName); |
335 | l.setType("audio/x-wav"); | 345 | l.setType("audio/x-wav"); |
336 | l.setCategories(cats); | 346 | l.setCategories(cats); |
337 | l.writeLink(); | 347 | l.writeLink(); |
348 | |||
338 | 349 | ||
339 | record(); | 350 | record(); |
340 | return TRUE; | 351 | return TRUE; |
341 | } | 352 | } |
342 | 353 | ||
343 | void VMemo::stopRecording() { | 354 | void VMemo::stopRecording() { |
344 | recording = FALSE; | 355 | recording = FALSE; |
356 | if(useAlerts) | ||
357 | if( msgLabel) delete msgLabel; | ||
345 | } | 358 | } |
346 | 359 | ||
347 | int VMemo::openDSP() | 360 | int VMemo::openDSP() |
348 | { | 361 | { |
349 | Config cfg("Vmemo"); | 362 | Config cfg("Vmemo"); |
350 | cfg.setGroup("Record"); | 363 | cfg.setGroup("Record"); |
351 | 364 | ||
352 | speed = cfg.readNumEntry("SampleRate", 22050); | 365 | speed = cfg.readNumEntry("SampleRate", 22050); |
353 | channels = cfg.readNumEntry("Stereo", 1) ? 2 : 1; // 1 = stereo(2), 0 = mono(1) | 366 | channels = cfg.readNumEntry("Stereo", 1) ? 2 : 1; // 1 = stereo(2), 0 = mono(1) |
354 | if (cfg.readNumEntry("SixteenBit", 1)==1) { | 367 | if (cfg.readNumEntry("SixteenBit", 1)==1) { |
355 | format = AFMT_S16_LE; | 368 | format = AFMT_S16_LE; |
356 | resolution = 16; | 369 | resolution = 16; |
357 | } else { | 370 | } else { |
358 | format = AFMT_U8; | 371 | format = AFMT_U8; |
359 | resolution = 8; | 372 | resolution = 8; |
360 | } | 373 | } |
361 | 374 | ||
362 | qDebug("samplerate: %d, channels %d, resolution %d", speed, channels, resolution); | 375 | qDebug("samplerate: %d, channels %d, resolution %d", speed, channels, resolution); |
363 | 376 | ||
364 | if(systemZaurus) { | 377 | if(systemZaurus) { |
365 | dsp = open("/dev/dsp1", O_RDWR); //Zaurus needs /dev/dsp1 | 378 | dsp = open("/dev/dsp1", O_RDWR); //Zaurus needs /dev/dsp1 |
366 | channels=1; //zaurus has one input channel | 379 | channels=1; //zaurus has one input channel |
367 | } else { | 380 | } else { |
368 | dsp = open("/dev/dsp", O_RDWR); | 381 | dsp = open("/dev/dsp", O_RDWR); |
369 | } | 382 | } |
370 | 383 | ||
371 | if(dsp == -1) { | 384 | if(dsp == -1) { |
372 | perror("open(\"/dev/dsp\")"); | 385 | perror("open(\"/dev/dsp\")"); |
373 | errorMsg="open(\"/dev/dsp\")\n "+(QString)strerror(errno); | 386 | errorMsg="open(\"/dev/dsp\")\n "+(QString)strerror(errno); |
374 | return -1; | 387 | return -1; |
375 | } | 388 | } |
376 | 389 | ||
377 | if(ioctl(dsp, SNDCTL_DSP_SETFMT , &format)==-1) { | 390 | if(ioctl(dsp, SNDCTL_DSP_SETFMT , &format)==-1) { |
378 | perror("ioctl(\"SNDCTL_DSP_SETFMT\")"); | 391 | perror("ioctl(\"SNDCTL_DSP_SETFMT\")"); |
379 | return -1; | 392 | return -1; |
380 | } | 393 | } |
381 | if(ioctl(dsp, SNDCTL_DSP_CHANNELS , &channels)==-1) { | 394 | if(ioctl(dsp, SNDCTL_DSP_CHANNELS , &channels)==-1) { |
382 | perror("ioctl(\"SNDCTL_DSP_CHANNELS\")"); | 395 | perror("ioctl(\"SNDCTL_DSP_CHANNELS\")"); |
383 | return -1; | 396 | return -1; |
384 | } | 397 | } |
385 | if(ioctl(dsp, SNDCTL_DSP_SPEED , &speed)==-1) { | 398 | if(ioctl(dsp, SNDCTL_DSP_SPEED , &speed)==-1) { |
386 | perror("ioctl(\"SNDCTL_DSP_SPEED\")"); | 399 | perror("ioctl(\"SNDCTL_DSP_SPEED\")"); |
387 | return -1; | 400 | return -1; |
388 | } | 401 | } |
389 | if(ioctl(dsp, SOUND_PCM_READ_RATE , &rate)==-1) { | 402 | if(ioctl(dsp, SOUND_PCM_READ_RATE , &rate)==-1) { |
390 | perror("ioctl(\"SOUND_PCM_READ_RATE\")"); | 403 | perror("ioctl(\"SOUND_PCM_READ_RATE\")"); |
391 | return -1; | 404 | return -1; |
392 | } | 405 | } |
393 | 406 | ||
394 | return 1; | 407 | return 1; |
395 | } | 408 | } |
396 | 409 | ||
397 | int VMemo::openWAV(const char *filename) | 410 | int VMemo::openWAV(const char *filename) |
398 | { | 411 | { |
399 | track.setName(filename); | 412 | track.setName(filename); |
400 | if(!track.open(IO_WriteOnly|IO_Truncate|IO_Raw)) { | 413 | if(!track.open(IO_WriteOnly|IO_Truncate|IO_Raw)) { |
401 | errorMsg=filename; | 414 | errorMsg=filename; |
402 | return -1; | 415 | return -1; |
403 | } | 416 | } |
404 | 417 | ||
405 | wav=track.handle(); | 418 | wav=track.handle(); |
406 | 419 | ||
407 | WaveHeader wh; | 420 | WaveHeader wh; |
408 | 421 | ||
409 | wh.main_chunk = RIFF; | 422 | wh.main_chunk = RIFF; |
410 | wh.length=0; | 423 | wh.length=0; |
411 | wh.chunk_type = WAVE; | 424 | wh.chunk_type = WAVE; |
412 | wh.sub_chunk = FMT; | 425 | wh.sub_chunk = FMT; |
413 | wh.sc_len = 16; | 426 | wh.sc_len = 16; |
414 | wh.format = PCM_CODE; | 427 | wh.format = PCM_CODE; |
415 | wh.modus = channels; | 428 | wh.modus = channels; |
416 | wh.sample_fq = speed; | 429 | wh.sample_fq = speed; |
417 | wh.byte_p_sec = speed * channels * resolution/8; | 430 | wh.byte_p_sec = speed * channels * resolution/8; |
418 | wh.byte_p_spl = channels * (resolution / 8); | 431 | wh.byte_p_spl = channels * (resolution / 8); |
419 | wh.bit_p_spl = resolution; | 432 | wh.bit_p_spl = resolution; |
420 | wh.data_chunk = DATA; | 433 | wh.data_chunk = DATA; |
421 | wh.data_length= 0; | 434 | wh.data_length= 0; |
422 | // qDebug("Write header channels %d, speed %d, b/s %d, blockalign %d, bitrate %d" | 435 | // qDebug("Write header channels %d, speed %d, b/s %d, blockalign %d, bitrate %d" |
423 | // , wh.modus, wh.sample_fq, wh.byte_p_sec, wh.byte_p_spl, wh.bit_p_spl ); | 436 | // , wh.modus, wh.sample_fq, wh.byte_p_sec, wh.byte_p_spl, wh.bit_p_spl ); |
424 | write (wav, &wh, sizeof(WaveHeader)); | 437 | write (wav, &wh, sizeof(WaveHeader)); |
425 | 438 | ||
426 | return 1; | 439 | return 1; |
427 | } | 440 | } |
428 | 441 | ||
429 | void VMemo::record(void) | 442 | void VMemo::record(void) |
430 | { | 443 | { |
431 | int length=0, result, value; | 444 | int length=0, result, value; |
432 | qDebug("Recording"); | 445 | QString msg; |
446 | msg.sprintf("Recording format %d", format); | ||
447 | qDebug(msg); | ||
433 | 448 | ||
434 | if(systemZaurus) { | 449 | if(systemZaurus) { |
435 | signed short sound[512], monoBuffer[512]; | 450 | signed short sound[512], monoBuffer[512]; |
436 | if(format==AFMT_S16_LE) { | 451 | if(format==AFMT_S16_LE) { |
452 | |||
437 | while(recording) { | 453 | while(recording) { |
454 | |||
438 | result = read(dsp, sound, 512); // 8192 | 455 | result = read(dsp, sound, 512); // 8192 |
439 | int j=0; | 456 | int j=0; |
457 | |||
440 | if(systemZaurus) { | 458 | if(systemZaurus) { |
441 | for (int i = 0; i < result; i++) { //since Z is mono do normally | 459 | for (int i = 0; i < result; i++) { //since Z is mono do normally |
442 | monoBuffer[i] = sound[i]; | 460 | monoBuffer[i] = sound[i]; |
443 | } | 461 | } |
462 | |||
444 | length+=write(wav, monoBuffer, result); | 463 | length+=write(wav, monoBuffer, result); |
464 | |||
445 | } else { //ipaq /stereo inputs | 465 | } else { //ipaq /stereo inputs |
466 | |||
446 | for (int i = 0; i < result; i+=2) { | 467 | for (int i = 0; i < result; i+=2) { |
447 | monoBuffer[j] = (sound[i]+sound[i+1])/2; | 468 | monoBuffer[j] = (sound[i]+sound[i+1])/2; |
448 | j++; | 469 | j++; |
449 | } | 470 | } |
471 | |||
450 | length+=write(wav, monoBuffer, result/2); | 472 | length+=write(wav, monoBuffer, result/2); |
451 | } | 473 | } |
474 | qApp->processEvents(); | ||
452 | // printf("%d\r",length); | 475 | // printf("%d\r",length); |
453 | // fflush(stdout); | 476 | // fflush(stdout); |
454 | } | 477 | } |
455 | } else { //AFMT_U8 | 478 | } else { //AFMT_U8 |
456 | // 8bit unsigned | 479 | // 8bit unsigned |
457 | unsigned short sound[512], monoBuffer[512]; | 480 | unsigned short sound[512], monoBuffer[512]; |
458 | while(recording) { | 481 | while(recording) { |
459 | result = read(dsp, sound, 512); // 8192 | 482 | result = read(dsp, sound, 512); // 8192 |
460 | int j=0; | 483 | int j=0; |
461 | if(systemZaurus) { | 484 | if(systemZaurus) { |
462 | for (int i = 0; i < result; i++) { //since Z is mono do normally | 485 | for (int i = 0; i < result; i++) { //since Z is mono do normally |
463 | monoBuffer[i] = sound[i]; | 486 | monoBuffer[i] = sound[i]; |
464 | } | 487 | } |
465 | length+=write(wav, monoBuffer, result); | 488 | length+=write(wav, monoBuffer, result); |
466 | } else { //ipaq /stereo inputs | 489 | } else { //ipaq /stereo inputs |
467 | for (int i = 0; i < result; i+=2) { | 490 | for (int i = 0; i < result; i+=2) { |
468 | monoBuffer[j] = (sound[i]+sound[i+1])/2; | 491 | monoBuffer[j] = (sound[i]+sound[i+1])/2; |
469 | j++; | 492 | j++; |
470 | } | 493 | } |
471 | length+=write(wav, monoBuffer, result/2); | 494 | length+=write(wav, monoBuffer, result/2); |
472 | } | 495 | } |
473 | length += result; | 496 | length += result; |
474 | // printf("%d\r",length); | 497 | // printf("%d\r",length); |
475 | // fflush(stdout); | 498 | // fflush(stdout); |
476 | } | 499 | } |
477 | 500 | ||
478 | qApp->processEvents(); | 501 | qApp->processEvents(); |
479 | } | 502 | } |
480 | 503 | ||
481 | } else { // this is specific for ipaqs that do not have 8 bit capabilities | 504 | } else { // this is specific for ipaqs that do not have 8 bit capabilities |
482 | 505 | ||
483 | signed short sound[512], monoBuffer[512]; | 506 | signed short sound[512], monoBuffer[512]; |
484 | 507 | ||
485 | while(recording) { | 508 | while(recording) { |
486 | result = read(dsp, sound, 512); // 8192 | 509 | result = read(dsp, sound, 512); // 8192 |
487 | write(wav, sound, result); | 510 | write(wav, sound, result); |
488 | length += result; | 511 | length += result; |
489 | 512 | ||
490 | qApp->processEvents(); | 513 | qApp->processEvents(); |
491 | } | 514 | } |
492 | // printf("%d\r",length); | 515 | // printf("%d\r",length); |
493 | // fflush(stdout); | 516 | // fflush(stdout); |
494 | // qDebug("file has length of %d lasting %d seconds", | 517 | // qDebug("file has length of %d lasting %d seconds", |
495 | // length, (( length / speed) / channels) / 2 ); | 518 | // length, (( length / speed) / channels) / 2 ); |
496 | // medialplayer states wrong length in secs | 519 | // medialplayer states wrong length in secs |
497 | } | 520 | } |
498 | 521 | ||
499 | value = length+36; | 522 | value = length+36; |
500 | lseek(wav, 4, SEEK_SET); | 523 | lseek(wav, 4, SEEK_SET); |
501 | write(wav, &value, 4); | 524 | write(wav, &value, 4); |
502 | lseek(wav, 40, SEEK_SET); | 525 | lseek(wav, 40, SEEK_SET); |
503 | write(wav, &length, 4); | 526 | write(wav, &length, 4); |
504 | track.close(); | 527 | track.close(); |
505 | 528 | ||
506 | if( ioctl( dsp, SNDCTL_DSP_RESET,0) == -1) | 529 | if( ioctl( dsp, SNDCTL_DSP_RESET,0) == -1) |
507 | perror("ioctl(\"SNDCTL_DSP_RESET\")"); | 530 | perror("ioctl(\"SNDCTL_DSP_RESET\")"); |
508 | ::close(dsp); | 531 | ::close(dsp); |
509 | fileName = fileName.left(fileName.length()-4); | 532 | fileName = fileName.left(fileName.length()-4); |
510 | if(useAlerts) | 533 | // if(useAlerts) |
511 | QMessageBox::message("Vmemo"," Done recording\n"+ fileName); | 534 | // QMessageBox::message("Vmemo"," Done1 recording\n"+ fileName); |
512 | qDebug("done recording "+fileName); | 535 | qDebug("done recording "+fileName); |
513 | QSound::play(Resource::findSound("vmemoe")); | 536 | QSound::play(Resource::findSound("vmemoe")); |
514 | } | 537 | } |
538 | |||
539 | int VMemo::setToggleButton(int tog) { | ||
540 | |||
541 | for( int i=0; i < 10;i++) { | ||
542 | switch (tog) { | ||
543 | case 0: | ||
544 | return -1; | ||
545 | break; | ||
546 | case 1: | ||
547 | return 0; | ||
548 | break; | ||
549 | case 2: | ||
550 | return Key_Escape; | ||
551 | break; | ||
552 | case 3: | ||
553 | return Key_Space; | ||
554 | break; | ||
555 | case 4: | ||
556 | return Key_F12; | ||
557 | break; | ||
558 | case 5: | ||
559 | return Key_F9; | ||
560 | break; | ||
561 | case 6: | ||
562 | return Key_F10; | ||
563 | break; | ||
564 | case 7: | ||
565 | return Key_F11; | ||
566 | break; | ||
567 | case 8: | ||
568 | return Key_F13; | ||
569 | break; | ||
570 | }; | ||
571 | } | ||
572 | } | ||
diff --git a/core/applets/vmemo/vmemo.h b/core/applets/vmemo/vmemo.h index 701663f..b33ab55 100644 --- a/core/applets/vmemo/vmemo.h +++ b/core/applets/vmemo/vmemo.h | |||
@@ -1,57 +1,59 @@ | |||
1 | /**************************************************************************************94x78** | 1 | /**************************************************************************************94x78** |
2 | ** | 2 | ** |
3 | ** This file may be distributed and/or modified under the terms of the | 3 | ** This file may be distributed and/or modified under the terms of the |
4 | ** GNU General Public License version 2 as published by the Free Software | 4 | ** GNU General Public License version 2 as published by the Free Software |
5 | ** Foundation and appearing in the file LICENSE.GPL included in the | 5 | ** Foundation and appearing in the file LICENSE.GPL included in the |
6 | ** packaging of this file. | 6 | ** packaging of this file. |
7 | ** | 7 | ** |
8 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 8 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
9 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 9 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
10 | ** | 10 | ** |
11 | *********************************************************************************************/ | 11 | *********************************************************************************************/ |
12 | 12 | ||
13 | /* | 13 | /* |
14 | * $Id$ | 14 | * $Id$ |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #ifndef __VMEMO_H__ | 17 | #ifndef __VMEMO_H__ |
18 | #define __VMEMO_H__ | 18 | #define __VMEMO_H__ |
19 | 19 | ||
20 | |||
20 | #include <qwidget.h> | 21 | #include <qwidget.h> |
21 | #include <qpixmap.h> | 22 | #include <qpixmap.h> |
22 | #include <qpe/applnk.h> | 23 | #include <qpe/applnk.h> |
23 | #include <qfile.h> | 24 | #include <qfile.h> |
24 | #include <qpe/qcopenvelope_qws.h> | 25 | #include <qpe/qcopenvelope_qws.h> |
26 | #include <qlabel.h> | ||
25 | 27 | ||
26 | class VMemo : public QWidget | 28 | class VMemo : public QWidget |
27 | { | 29 | { |
28 | Q_OBJECT | 30 | Q_OBJECT |
29 | public: | 31 | public: |
30 | VMemo( QWidget *parent, const char *name = NULL); | 32 | VMemo( QWidget *parent, const char *name = NULL); |
31 | ~VMemo(); | 33 | ~VMemo(); |
32 | QFile track; | 34 | QFile track; |
33 | QString fileName, errorMsg; | 35 | QString fileName, errorMsg; |
34 | 36 | QLabel* msgLabel; | |
35 | public slots: | 37 | public slots: |
36 | void record(); | 38 | void record(); |
37 | void mousePressEvent( QMouseEvent * ); | 39 | void mousePressEvent( QMouseEvent * ); |
38 | void mouseReleaseEvent( QMouseEvent * ); | 40 | void mouseReleaseEvent( QMouseEvent * ); |
39 | void receive( const QCString &msg, const QByteArray &data ); | 41 | void receive( const QCString &msg, const QByteArray &data ); |
40 | bool startRecording(); | 42 | bool startRecording(); |
41 | void stopRecording(); | 43 | void stopRecording(); |
42 | private: | 44 | private: |
43 | bool useAlerts; | 45 | bool useAlerts; |
44 | void paintEvent( QPaintEvent* ); | 46 | void paintEvent( QPaintEvent* ); |
45 | 47 | int setToggleButton(int); | |
46 | int openDSP(); | 48 | int openDSP(); |
47 | int openWAV(const char *filename); | 49 | int openWAV(const char *filename); |
48 | bool fromToggle; | 50 | bool fromToggle; |
49 | QPixmap vmemoPixmap; | 51 | QPixmap vmemoPixmap; |
50 | QCopChannel *myChannel; | 52 | QCopChannel *myChannel; |
51 | bool systemZaurus; | 53 | bool systemZaurus; |
52 | int dsp, wav, rate, speed, channels, format, resolution; | 54 | int dsp, wav, rate, speed, channels, format, resolution; |
53 | bool recording; | 55 | bool recording; |
54 | }; | 56 | }; |
55 | 57 | ||
56 | #endif // __VMEMO_H__ | 58 | #endif // __VMEMO_H__ |
57 | 59 | ||