Loopp/src/gtrack.hxx

106 lines
2.4 KiB
C++
Raw Normal View History

2013-04-20 13:20:46 +02:00
#ifndef LUPPP_G_TRACK_H
#define LUPPP_G_TRACK_H
#include <iostream>
2013-04-20 13:20:46 +02:00
#include <FL/Fl.H>
#include <FL/Fl_Group.H>
#include <FL/Fl_Slider.H>
#include "avtk/avtk_dial.h"
2013-04-20 13:20:46 +02:00
#include "avtk/avtk_button.h"
#include "avtk/avtk_background.h"
2013-04-20 13:20:46 +02:00
#include "eventhandler.hxx"
using namespace std;
static void gtrack_button_callback(Fl_Widget *w, void *data) {
2013-05-15 03:17:08 +02:00
int track = *(int*)data;
cout << "Button " << *(int*)data << " " << w->label() << " clicked" << endl;
if ( strcmp( w->label() , "Rec" ) == 0 )
{
EventLooperState e = EventLooperState(track,Looper::STATE_RECORD_QUEUED);
writeToDspRingbuffer( &e );
}
else if ( strcmp( w->label() , "Play" ) == 0 )
{
EventLooperState e = EventLooperState(track,Looper::STATE_PLAY_QUEUED);
writeToDspRingbuffer( &e );
}
2013-05-13 23:20:00 +02:00
else if ( strcmp( w->label() , "Stop" ) == 0 )
{
EventLooperState e = EventLooperState(track,Looper::STATE_STOP_QUEUED);
2013-05-13 23:20:00 +02:00
writeToDspRingbuffer( &e );
}
2013-05-15 03:17:08 +02:00
else
{
cout << __FILE__ << __LINE__ << " Error: unknown command string" << endl;
}
}
2013-04-20 13:20:46 +02:00
class GTrack : public Fl_Group
{
public:
GTrack(int x, int y, int w, int h, const char* l = 0 ) :
2013-04-20 13:20:46 +02:00
Fl_Group(x, y, w, h),
2013-05-13 22:11:21 +02:00
title( strdup(l) ),
bg( x, y , w, h, title ),
button1(x + 5, y + 24, 100, 18,"Rec"),
button2(x + 5, y + 44, 100, 18,"Play"),
2013-05-13 23:20:00 +02:00
button3(x + 5, y + 64, 100, 18,"Stop"),
button4(x + 5, y + 84, 18, 18,"4"),
button5(x + 5, y +104, 18, 18,"5"),
button6(x + 5, y +124, 18, 18,"6"),
dial1(x+15, y +155, 24, 24, "A"),
dial2(x+45, y +155, 24, 24, "B"),
dial3(x+75, y +155, 24, 24, "C")
2013-04-20 13:20:46 +02:00
{
2013-05-15 03:17:08 +02:00
ID = privateID++;
button1.callback( gtrack_button_callback, &ID );
button2.callback( gtrack_button_callback, &ID );
button3.callback( gtrack_button_callback, &ID );
button4.callback( gtrack_button_callback, &ID );
button5.callback( gtrack_button_callback, &ID );
button6.callback( gtrack_button_callback, &ID );
2013-04-20 13:20:46 +02:00
end(); // close the group
}
2013-05-13 22:11:21 +02:00
~GTrack()
{
free(title);
}
2013-04-20 13:20:46 +02:00
private:
2013-05-15 03:17:08 +02:00
int ID;
2013-05-13 22:11:21 +02:00
char* title;
Avtk::Background bg;
Avtk::Button button1;
Avtk::Button button2;
Avtk::Button button3;
Avtk::Button button4;
Avtk::Button button5;
Avtk::Button button6;
Avtk::Dial dial1;
Avtk::Dial dial2;
Avtk::Dial dial3;
2013-05-13 22:11:21 +02:00
static int privateID;
2013-04-20 13:20:46 +02:00
};
#endif // LUPPP_G_TRACK_H