tools/templates/mainform.h
author koda
Tue, 14 Jul 2009 20:02:07 +0000
changeset 2261 57e99c908e7c
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
a lot of stuff: - added an autoupdater option * works in mac osx only * the xml file should be hosted on official webserver * checkbox could be moved in a "updates section" of the option page * only english and italian translation provided for new option - reverted openalbridge type for compatibility - german translation fix

#include <QScrollArea>
#include <QMainWindow>
#include <QLabel>
#include <QListWidget>
#include <QPushButton>
#include "pixlabel.h"

class MyWindow : public QMainWindow
{
	Q_OBJECT

public:

	MyWindow(QWidget * parent = 0, Qt::WFlags flags = 0);

private:

	QScrollArea * sa_xy;
	PixLabel * xy;
	QPushButton * buttAdd;
	QPushButton * buttCode;
	QPushButton * buttSave;
	QPushButton * buttLoad;

private slots:
	void Code();
	void Save();
	void Load();
};