initial commit

This commit is contained in:
Max-Wilhelm Bruker 2009-03-13 22:50:41 +01:00
commit a11f93df4d
99 changed files with 7493 additions and 0 deletions

View file

@ -0,0 +1,29 @@
#ifndef CARDINFOWIDGET_H
#define CARDINFOWIDGET_H
#include "carddatabase.h"
#include <QFrame>
class QLabel;
class QTextEdit;
class CardInfoWidget : public QFrame {
Q_OBJECT
private:
CardDatabase *db;
double aspectratio;
QLabel *cardPicture;
QLabel *nameLabel1, *nameLabel2;
QLabel *manacostLabel1, *manacostLabel2;
QLabel *cardtypeLabel1, *cardtypeLabel2;
QLabel *powtoughLabel1, *powtoughLabel2;
QTextEdit *textLabel;
public:
CardInfoWidget(CardDatabase *_db, QWidget *parent = 0);
public slots:
void setCard(CardInfo *card);
void setCard(const QString &cardName);
};
#endif