summaryrefslogtreecommitdiff
path: root/muse2/muse/arranger/trackautomationview.cpp
blob: 43abcc69a4eb1a9efc082af8674d45d8d3c2e94e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include "trackautomationview.h"
#include "math.h"
#include <qpainter.h>
#include <qbitmap.h>
#include <qimage.h>
//Added by qt3to4:
#include <QPaintEvent>
#include "track.h"

TrackAutomationView::TrackAutomationView(QWidget *parent, Track *t) : QWidget(parent)
{
  printf("created trackautomationview\n");
  _t = t;
  //show();
}

void TrackAutomationView::paintEvent(QPaintEvent* e)
{
    QPainter p(this);
    const QRect &r = e->rect();

    // temporary solution, audio track drawing moved here.
    // best would be to get transparency to work correctly
    p.setPen(QPen(Qt::black, 2, Qt::SolidLine));
    p.setBrush(Qt::gray);
    p.drawRect(r);

     int height=r.bottom()-r.top();
     if( _t->type()>1) { // audio type
       double volume = ((AudioTrack*)_t)->volume();
       double dbvolume = (20.0*log10(volume)+60) /70.0; // represent volume between 0 and 1
       if (dbvolume < 0) dbvolume =0.0;
       printf("height=%d volume=%f dbvolume=%f\n", height, volume, dbvolume);
       p.setPen(QPen(Qt::yellow,1,Qt::SolidLine));
       p.drawLine(r.left(),r.bottom()-dbvolume*height,r.right(),r.bottom()-dbvolume*height);

   }



    printf("paintEvent\n");
}

void TrackAutomationView::collectAutomationData()
{
  // here we should collect all automation data that is currently selected for viewing and
  // prepare an event list that is easy to draw in paintEvent
  // the main reason being that the event list in it's entirety likely contains too much data to
  // be processed in the paintEvent. Better to preprocess.

//  CtrlListList cll =((AudioTrack*)_t)->controller();
//  cll.count()
}