Files
pokerth/src/gui/qt/mainwindow/mysetlabel.h
T

54 lines
797 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 MYSETLABEL_H
#define MYSETLABEL_H
#include <QtGui>
#include <QtCore>
class mainWindowImpl;
class MySetLabel : public QLabel
{
Q_OBJECT
public:
MySetLabel(QGroupBox*);
~MySetLabel();
void setMyW ( mainWindowImpl* theValue ) { myW = theValue; }
void startTimeOutAnimation(int secs);
void stopTimeOutAnimation();
void paintEvent(QPaintEvent * event);
public slots:
void nextTimeOutAnimationFrame();
private:
mainWindowImpl *myW;
QTimer *timeOutAnimationTimer;
bool timeOutAnimation;
int timeOutAnimationWidth;
int timeOutValue;
int timeOutFrame;
};
#endif