add timeoutanimation for network player actions

This commit is contained in:
doitux
2007-05-29 21:31:30 +00:00
parent ccb339be04
commit ba82acbd06
6 changed files with 565 additions and 428 deletions
+47
View File
@@ -0,0 +1,47 @@
//
// 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>
#include <iostream>
class MySetLabel : public QLabel
{
Q_OBJECT
public:
MySetLabel(QGroupBox*);
~MySetLabel();
void startTimeOutAnimation(int secs);
void stopTimeOutAnimation();
void paintEvent(QPaintEvent * event);
public slots:
void nextTimeOutAnimationFrame();
private:
QTimer *timeOutAnimationTimer;
bool timeOutAnimation;
int timeOutAnimationWidth;
int timeOutValue;
int timeOutFrame;
};
#endif