summaryrefslogtreecommitdiff
path: root/core
authorllornkcor <llornkcor>2004-07-02 21:28:14 (UTC)
committer llornkcor <llornkcor>2004-07-02 21:28:14 (UTC)
commite46eb5eb8bb8a0a34dbc7f4749ff62633261aba0 (patch) (side-by-side diff)
tree0f18b7d34ee6208b18afc45837098c4e11cc5ed5 /core
parent558c37f440baa57213d40639992bd29eaed1e12f (diff)
downloadopie-e46eb5eb8bb8a0a34dbc7f4749ff62633261aba0.zip
opie-e46eb5eb8bb8a0a34dbc7f4749ff62633261aba0.tar.gz
opie-e46eb5eb8bb8a0a34dbc7f4749ff62633261aba0.tar.bz2
fix
Diffstat (limited to 'core') (more/less context) (show whitespace changes)
-rw-r--r--core/applets/vmemo/vmemo.cpp26
1 files changed, 18 insertions, 8 deletions
diff --git a/core/applets/vmemo/vmemo.cpp b/core/applets/vmemo/vmemo.cpp
index b80b378..e747a19 100644
--- a/core/applets/vmemo/vmemo.cpp
+++ b/core/applets/vmemo/vmemo.cpp
@@ -238,3 +238,4 @@ VMemo::VMemo( QWidget *parent, const char *_name )
// if( vmCfg.readNumEntry("hideIcon",0) == 1)
-// hide();
+ if (!usingIcon)
+ hide();
recording = FALSE;
@@ -377,3 +378,3 @@ bool VMemo::startRecording() {
void VMemo::stopRecording() {
- show();
+// show();
odebug << "Stopped recording" << oendl;
@@ -490,2 +491,3 @@ bool VMemo::record() {
int value = 0;
+
QString msg;
@@ -493,2 +495,3 @@ bool VMemo::record() {
odebug << msg << oendl;
+
Config config("Vmemo");
@@ -496,4 +499,7 @@ bool VMemo::record() {
int sRate = config.readNumEntry("SizeLimit", 30);
- if(sRate > 0)
+ odebug << "VMEMO rate" << sRate << oendl;
+
+ if(sRate > 0) {
t_timer->start( sRate * 1000+1000, TRUE);
+ }
@@ -509,4 +515,6 @@ bool VMemo::record() {
short sbuf[bufsize];
-
+ odebug << "ready to record"<< oendl;
if(useADPCM) {
+ odebug << "usr ADPCM" << oendl;
+
while(recording) {
@@ -531,4 +539,4 @@ bool VMemo::record() {
}
- // printf("%d\r", length);
- // fflush(stdout);
+ printf("%d\r", length);
+ fflush(stdout);
qApp->processEvents();
@@ -536,2 +544,3 @@ bool VMemo::record() {
} else {
+ odebug << "use regular wav" << oendl;
while(recording) {
@@ -544,2 +553,3 @@ bool VMemo::record() {
return FALSE;
+ }
@@ -559,5 +569,5 @@ bool VMemo::record() {
}
+// odebug << "result is " << result << oendl;
}
- }
- // odebug << "file has length of " << length << " lasting " << (( length / speed) / channels) / 2 ) << " seconds" << oendl;
+ odebug << "file has length of " << length << " lasting " << (( length / speed) / channels) / 2 << " seconds" << oendl;