summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2005-03-20 09:34:43 (UTC)
committer llornkcor <llornkcor>2005-03-20 09:34:43 (UTC)
commit28bbb05f2a329f2938f2f1cf5ae56831dfa544e4 (patch) (unidiff)
treec7135d32fdad1581e22813516a3dc11eda524f51
parent421ee128d31c51f8530b0e37313ea0086e023237 (diff)
downloadopie-28bbb05f2a329f2938f2f1cf5ae56831dfa544e4.zip
opie-28bbb05f2a329f2938f2f1cf5ae56831dfa544e4.tar.gz
opie-28bbb05f2a329f2938f2f1cf5ae56831dfa544e4.tar.bz2
clean up
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opierec/vumeter.cpp19
1 files changed, 6 insertions, 13 deletions
diff --git a/noncore/multimedia/opierec/vumeter.cpp b/noncore/multimedia/opierec/vumeter.cpp
index 0edc806..c28dbe4 100644
--- a/noncore/multimedia/opierec/vumeter.cpp
+++ b/noncore/multimedia/opierec/vumeter.cpp
@@ -7,82 +7,77 @@
7#include "qtrec.h" 7#include "qtrec.h"
8 8
9#include <qpe/config.h> 9#include <qpe/config.h>
10#include <qtimer.h> 10#include <qtimer.h>
11#include <qdrawutl.h> 11#include <qdrawutl.h>
12 12
13#include <opie2/odebug.h> 13#include <opie2/odebug.h>
14using namespace Opie::Core; 14using namespace Opie::Core;
15 15
16#include <math.h> 16#include <math.h>
17 17
18VUMeter::VUMeter(QWidget *parent, const char *name, const int tr) 18VUMeter::VUMeter(QWidget *parent, const char *name, const int tr)
19 : QWidget( parent, name ) 19 : QWidget( parent, name )
20{ 20{
21 int tracks = tr; 21 int tracks = tr;
22 int i; 22 int i;
23 23
24 qWarning("initialize peakvalues"); 24 qWarning("initialize peakvalues");
25 for(i = 0; i < tracks + 2; i++) { 25 for(i = 0; i < tracks + 2; i++) {
26 peak[i] = hold[i] = 32768; 26 peak[i] = hold[i] = 32768;
27 holdTime[i] = 20; 27 holdTime[i] = 20;
28 } 28 }
29 29
30 readConf(); 30 readConf();
31 31
32// QColor c;
33// c.setHsv( (x * 255)/w, 255, 255 );// rainbow effect
34// c.setRgb( 255, 0, 255);
35// p.setPen(c);
36
37 //rainbow effect 32 //rainbow effect
38 if( colorScheme = 0 ) { 33 if( colorScheme == 0 ) {
39 for( i = 0; i < para.leds; i++) color[i] = green; 34 for( i = 0; i < para.leds; i++) color[i] = green;
40 color[0] = color[1] = red; 35 color[0] = color[1] = red;
41 color[2] = color[3] = color[4] = color[5] = yellow; 36 color[2] = color[3] = color[4] = color[5] = yellow;
42 } else { 37 } else {
43 int j = para.leds - 4; 38 int j = para.leds - 4;
44 for( i = 0; i < para.leds; i++) { 39 for( i = 0; i < para.leds; i++) {
45 int i16 = (j);// & 15; 40 int i16 = (j);
46 color[i] = QColor(( 15 - i16) * 16, 255, 255, QColor::Hsv); 41 color[i] = QColor(( 15 - i16) * 16, 255, 255, QColor::Hsv);
47 owarn << color[i].name() << oendl; 42// owarn << color[i].name() << oendl;
48 j--; 43 j--;
49 } 44 }
50 } 45 }
51 46
52 buffer = new QPixmap(); 47 buffer = new QPixmap();
53 setBackgroundMode(NoBackground); 48 setBackgroundMode(NoBackground);
54 vuTimer = new QTimer(this,"vu timer"); 49 vuTimer = new QTimer(this,"vu timer");
55 50
56 connect(vuTimer, SIGNAL(timeout()), this , SLOT(timeSlot())); 51 connect(vuTimer, SIGNAL(timeout()), this , SLOT(timeSlot()));
57} 52}
58 53
59VUMeter::~VUMeter(){ 54VUMeter::~VUMeter(){
60 writeConf(); 55 writeConf();
61} 56}
62 57
63void VUMeter::update(){ 58void VUMeter::update(){
64 qWarning("vumeter update"); 59// qWarning("vumeter update");
65 vuTimer->start(para.update, FALSE); 60 vuTimer->start(para.update, FALSE);
66 if (para.onOff) { 61 if (para.onOff) {
67 disconnect(vuTimer, SIGNAL(timeout()), this , SLOT(timeSlot())); 62 disconnect(vuTimer, SIGNAL(timeout()), this , SLOT(timeSlot()));
68 connect(vuTimer, SIGNAL(timeout()), this , SLOT(timeSlot())); 63 connect(vuTimer, SIGNAL(timeout()), this , SLOT(timeSlot()));
69 } else { 64 } else {
70 disconnect(vuTimer, SIGNAL(timeout()), this , SLOT(timeSlot())); 65 disconnect(vuTimer, SIGNAL(timeout()), this , SLOT(timeSlot()));
71 } 66 }
72 resize(); 67 resize();
73} 68}
74 69
75void VUMeter::slotOn() { 70void VUMeter::slotOn() {
76 connect(vuTimer, SIGNAL(timeout()), this , SLOT(timeSlot())); 71 connect(vuTimer, SIGNAL(timeout()), this , SLOT(timeSlot()));
77 para.onOff=true; 72 para.onOff=true;
78} 73}
79 74
80void VUMeter::slotOff() { 75void VUMeter::slotOff() {
81 disconnect(vuTimer, SIGNAL(timeout()), this , SLOT(timeSlot())); 76 disconnect(vuTimer, SIGNAL(timeout()), this , SLOT(timeSlot()));
82 para.onOff=false; 77 para.onOff=false;
83} 78}
84 79
85void VUMeter::slotProps() { 80void VUMeter::slotProps() {
86 qDebug("VU-Dialog"); 81 qDebug("VU-Dialog");
87} 82}
88 83
@@ -201,40 +196,38 @@ void VUMeter::setPeak(float a[]) {
201 if (a[i] > hold[i]) { hold[i] = a[i]; holdTime[i] = para.hold; } 196 if (a[i] > hold[i]) { hold[i] = a[i]; holdTime[i] = para.hold; }
202 } 197 }
203 paint(); 198 paint();
204} 199}
205 200
206void VUMeter::startTimer() { 201void VUMeter::startTimer() {
207 vuTimer->start(para.update, FALSE); 202 vuTimer->start(para.update, FALSE);
208} 203}
209 204
210void VUMeter::stopTimer() { 205void VUMeter::stopTimer() {
211 vuTimer->stop(); 206 vuTimer->stop();
212} 207}
213 208
214void VUMeter::readConf() { 209void VUMeter::readConf() {
215 Config config("OpieRec"); 210 Config config("OpieRec");
216 config.setGroup("VU-Meter"); 211 config.setGroup("VU-Meter");
217 212
218 para.onOff = config.readBoolEntry("OnOff", true); 213 para.onOff = config.readBoolEntry("OnOff", true);
219 para.update = config.readNumEntry("Update", 25); 214 para.update = config.readNumEntry("Update", 25);
220 para.hold = config.readNumEntry("Hold", 20); 215 para.hold = config.readNumEntry("Hold", 20);
221 para.reso = config.readNumEntry("Resolution", 3); 216 para.reso = config.readNumEntry("Resolution", 3);
222 para.leds = config.readNumEntry("LEDs", 20); 217 para.leds = config.readNumEntry("LEDs", 20);
223 para.resoFactor = pow(2, para.reso / 6.0); 218 para.resoFactor = pow(2, para.reso / 6.0);
224 219
225 colorScheme = config.readNumEntry("colorScheme", 0); 220 colorScheme = config.readNumEntry("colorScheme", 1);
226// update();
227// dia->updatePara();
228} 221}
229 222
230 223
231void VUMeter::writeConf() { 224void VUMeter::writeConf() {
232 Config config("OpieRec"); 225 Config config("OpieRec");
233 config.setGroup("VU-Meter"); 226 config.setGroup("VU-Meter");
234 227
235 config.writeEntry("OnOff", para.onOff); 228 config.writeEntry("OnOff", para.onOff);
236 config.writeEntry("Update", para.update); 229 config.writeEntry("Update", para.update);
237 config.writeEntry("Hold", para.hold); 230 config.writeEntry("Hold", para.hold);
238 config.writeEntry("Resolution", para.reso); 231 config.writeEntry("Resolution", para.reso);
239 config.writeEntry("LEDs", para.leds); 232 config.writeEntry("LEDs", para.leds);
240} 233}