Loopp/src/gui.hxx

31 lines
436 B
C++
Raw Normal View History

2013-04-20 12:50:30 +02:00
#ifndef LUPPP_GUI
#define LUPPP_GUI
#include <FL/Fl.H>
#include <FL/Fl_Double_Window.H>
2013-04-20 12:50:30 +02:00
#include <FL/Fl_Box.H>
#include "avtk/avtk_light_button.h"
2013-04-20 13:20:46 +02:00
#include "gtrack.hxx"
#include <vector>
using namespace std;
2013-04-20 12:50:30 +02:00
class Gui
{
public:
Gui();
int show();
private:
Fl_Double_Window window;
Fl_Box* box;
Avtk::LightButton* metronomeButton;
vector<GTrack*> tracks;
2013-04-20 12:50:30 +02:00
};
#endif // LUPPP_GUI