move all sdl source files in a proper directory
remove hackish code to get a window up, now it should be quite clean
#include <QtGui/QApplication>
#include "editor.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
editor w;
w.show();
return a.exec();
}