tools/templates/mainform.h
author sheepluva
Sat, 18 Jan 2014 18:20:43 +0100
changeset 10013 4d7302e9b617
parent 8442 535a00ca0d35
permissions -rw-r--r--
changing build files without testing the change is fun, isn't it? especially for trivial things that would take less than 10 seconds to test :p

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