Files
pokerth/src/gui/qt/gametable/mystatuslabel.h
T
2008-05-05 07:46:19 +00:00

45 lines
642 B
C++
Executable File

//
// C++ Interface: mycardspixmaplabel
//
// Description:
//
//
// Author: FThauer FHammer <f.thauer@web.de>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef MYSTATUSLABEL_H
#define MYSTATUSLABEL_H
#include <iostream>
#include <QtGui>
#include <QtCore>
class gameTableImpl;
class MyStatusLabel : public QLabel
{
Q_OBJECT
public:
MyStatusLabel(QFrame*);
~MyStatusLabel();
void setMyW ( gameTableImpl* theValue ) { myW = theValue; }
void mousePressEvent ( QMouseEvent *);
void mouseReleaseEvent ( QMouseEvent *);
private:
gameTableImpl *myW;
bool mousePress;
};
#endif