54 lines
971 B
C++
54 lines
971 B
C++
//
|
|
// C++ Interface: mycardspixmaplabel
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: FThauer FHammer <f.thauer@web.de>, (C) 2007
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#ifndef MYCHANCELABEL_H
|
|
#define MYCHANCELABEL_H
|
|
|
|
#include <vector>
|
|
|
|
#include <QtGui>
|
|
#include <QtCore>
|
|
|
|
class gameTableImpl;
|
|
class GameTableStyleReader;
|
|
|
|
class MyChanceLabel : public QLabel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MyChanceLabel(QWidget*);
|
|
|
|
~MyChanceLabel();
|
|
|
|
void setMyW ( gameTableImpl* theValue ) { myW = theValue; }
|
|
void setMyStyle ( GameTableStyleReader* theValue ) { myStyle = theValue; }
|
|
void paintEvent(QPaintEvent * event);
|
|
void refreshChance(std::vector< std::vector<int> >);
|
|
void resetChance();
|
|
|
|
private:
|
|
|
|
gameTableImpl *myW;
|
|
GameTableStyleReader *myStyle;
|
|
int RFChance[2];
|
|
int SFChance[2];
|
|
int FOAKChance[2];
|
|
int FHChance[2];
|
|
int FLChance[2];
|
|
int STRChance[2];
|
|
int TOAKChance[2];
|
|
int TPChance[2];
|
|
int OPChance[2];
|
|
int HCChance[2];
|
|
};
|
|
|
|
#endif
|