tools/MissionsEditor/teamedit.h
author nemo
Fri, 05 Nov 2010 18:56:12 -0400
changeset 4140 1563b216f243
parent 2596 41b46f83d088
permissions -rw-r--r--
revert attempts to block switching weapon while targetting in infinite attack mode. just getting too messy. probably best to allow any weapon to be targetted, and store the target in the gear and draw it there instead of uworld, but I'm leaving this alone

#ifndef TEAMEDIT_H
#define TEAMEDIT_H

#include <QtGui/QWidget>

namespace Ui {
    class TeamEdit;
}

class TeamEdit : public QWidget {
    Q_OBJECT
public:
    TeamEdit(QWidget *parent = 0);
    ~TeamEdit();

    void reset();
    void setTeam(const QString & teamName = QString(), quint32 color = 0xdd0000);
    void addHedgehog(quint32 level = 0, quint32 health = 100, const QString & name = QString());
    void setFort(const QString & name);
    void setGrave(const QString & name);
    void setLastHHHat(const QString & name);
    void setLastHHCoords(int x, int y);
    void setVoicepack(const QString & name);
protected:
    void changeEvent(QEvent *e);

private:
    Ui::TeamEdit *m_ui;
};

#endif // TEAMEDIT_H