1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
/*
* Copyright (C) 2009-2010 Parker Coates <coates@kde.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef KABSTRACTCARDDECK_H
#define KABSTRACTCARDDECK_H
#include "libkcardgame_export.h"
class KCard;
class KCardPile;
#include "kcardtheme.h"
#include <QtCore/QObject>
class QSize;
class QPainter;
class LIBKCARDGAME_EXPORT KAbstractCardDeck : public QObject
{
Q_OBJECT
public:
explicit KAbstractCardDeck( const KCardTheme & theme = KCardTheme(), QObject * parent = 0 );
virtual ~KAbstractCardDeck();
void setDeckContents( const QList<quint32> & ids );
QList<KCard*> cards() const;
virtual int rankFromId( quint32 id ) const;
virtual int suitFromId( quint32 id ) const;
virtual int colorFromId( quint32 id ) const;
void setCardWidth( int width );
int cardWidth() const;
void setCardHeight( int height );
int cardHeight() const;
QSize cardSize() const;
void setTheme( const KCardTheme & theme );
KCardTheme theme() const;
bool hasAnimatedCards() const;
void stopAnimations();
QPixmap cardPixmap( quint32 id, bool faceUp );
Q_SIGNALS:
void cardAnimationDone();
protected:
virtual QString elementName( quint32 id, bool faceUp = true ) const = 0;
private:
class KAbstractCardDeckPrivate * const d;
friend class KAbstractCardDeckPrivate;
};
#endif
|