tools/MissionsEditor/editor.h
author smxx
Wed, 17 Feb 2010 20:03:25 +0000
changeset 2822 0533562bc3a4
parent 2596 41b46f83d088
permissions -rw-r--r--
Engine: * Use included Lua source files to compile a local copy to be used (Koda) Frontend: * Changed the way Xfire code is excluded outside Win32 * Updated slovak translation by jose1711__

#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