2008-05-05 07:46:19 +00:00
|
|
|
//
|
|
|
|
|
// C++ Implementation: mycardspixmaplabel
|
|
|
|
|
//
|
|
|
|
|
// Description:
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// Author: FThauer FHammer <f.thauer@web.de>, (C) 2007
|
|
|
|
|
//
|
|
|
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
#include "mysetlabel.h"
|
|
|
|
|
|
|
|
|
|
#include "gametableimpl.h"
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
MySetLabel::MySetLabel(QGroupBox* parent)
|
2010-10-28 08:19:52 +00:00
|
|
|
: QLabel(parent), myW(0)
|
2008-05-05 07:46:19 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
MySetLabel::~MySetLabel()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MySetLabel::paintEvent(QPaintEvent * event) {
|
|
|
|
|
|
|
|
|
|
QLabel::paintEvent(event);
|
|
|
|
|
}
|