tools/templates/mainform.h
author nemo
Thu, 15 Apr 2010 20:46:34 +0000
changeset 3342 b4f01613dcd7
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
Some initial stubs for portal just so Tiy will quit nagging. Also let folks know what approximation of physics I plan to try, here.

#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();
};