RetroShare/plugins/patience_plugin/Patience/Zielstapel.h
defnax 0b78ed6ff8 added patience plugin
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2245 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-08 22:33:14 +00:00

33 lines
662 B
C++

#ifndef ZIELSTAPEL_H
#define ZIELSTAPEL_H
#include "Basisstapel.h"
#include <QList>
class Siegkontrolle;
class Zielstapel : public Basisstapel
{
Q_OBJECT
public:
Zielstapel(const QPixmap& pixmap, Scene* oparent, QGraphicsItem* gparent = 0);
virtual ~Zielstapel();
virtual void registriere_siegkontrolle(Siegkontrolle*);
virtual void registriere_nachbar_zielstapel(Basisstapel*, Basisstapel*, Basisstapel*);
virtual void ablage_erfolgt();
virtual bool ablage_moeglich(Karte *) const;
virtual bool lege_karte_ab(Karte*);
public slots:
virtual void hilfsanfrage_start(Karte*);
private:
Siegkontrolle *siegkontrolle;
QList<Basisstapel*> nachbarn;
};
#endif