mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
0b78ed6ff8
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2245 b45a01b8-16f6-495d-af2f-9b41ad6348cc
29 lines
582 B
C++
29 lines
582 B
C++
#ifndef AUSTEILSTAPEL_H
|
|
#define AUSTEILSTAPEL_H
|
|
|
|
#include "Basisstapel.h"
|
|
|
|
class Austeilstapel : public Basisstapel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Austeilstapel(const QPixmap& pixmap, Scene* oparent, QGraphicsItem* gparent = 0);
|
|
virtual ~Austeilstapel();
|
|
|
|
virtual void registriere_costapel(Basisstapel*);
|
|
virtual void karte_wurde_aufgedeckt(Karte*);
|
|
virtual bool ablage_moeglich(Karte*) const;
|
|
virtual void undo_karten_ablage(Karte*);
|
|
|
|
public slots:
|
|
virtual void hilfsanfrage_start(Karte*);
|
|
|
|
private:
|
|
Basisstapel *costapel;
|
|
|
|
virtual void mousePressEvent(QGraphicsSceneMouseEvent*);
|
|
};
|
|
|
|
#endif
|