tools/MissionsEditor/editor.h
author nemo
Sat, 06 Mar 2010 21:32:04 +0000
changeset 2963 0f0789204802
parent 2596 41b46f83d088
permissions -rw-r--r--
This might be all it takes to prevent the desync. needs local/remote testing. Also toggle 2nd barrel state on 0 movement

#ifndef EDITOR_H
#define EDITOR_H

#include <QtGui/QMainWindow>

namespace Ui
{
    class editor;
}

class QCheckBox;

class editor : public QMainWindow
{
    Q_OBJECT

public:
    editor(QWidget *parent = 0);
    ~editor();

private:
    Ui::editor *ui;
    QList<QCheckBox  *> cbFlags;

    void load(const QString & fileName);
    void reset();

private slots:
    void on_actionLoad_triggered();
};

#endif // EDITOR_H