tools/templates/mainform.h
author Wuzzy <almikes@aol.com>
Sun, 27 Nov 2016 03:18:20 +0100
changeset 12089 0183b4c448bf
parent 8442 535a00ca0d35
permissions -rw-r--r--
Fix Killing the Specialists giving you a free turn after killing Desert Eagle with a desert eagle with shot 1-3

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