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