Loopp/src/gui.hxx

36 lines
517 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"
#include "config.hxx"
2013-04-20 13:20:46 +02:00
#include "gtrack.hxx"
#include "gmastertrack.hxx"
2013-04-20 13:20:46 +02:00
#include <vector>
using namespace std;
2013-04-20 12:50:30 +02:00
class Gui
{
public:
Gui();
int show();
GTrack* getTrack(int id);
2013-04-20 12:50:30 +02:00
private:
Fl_Double_Window window;
Fl_Box* box;
GMasterTrack* master;
vector<GTrack*> tracks;
2013-04-20 12:50:30 +02:00
};
#endif // LUPPP_GUI