Add a bunch of new hats from the hats thread. There are still 20 or so that need pixel fixes that are not in this list.
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}