Files
pokerth/src/gui/qt/gametable/myactionbutton.h
T
lotodore 02518c67b2 Reformatting code using Kernighan & Ritchie style, tabs, tab width=4.
Command line: astyle --style=kr --indent=force-tab=4 --lineend=linux -n -r <file names>
2011-02-11 20:02:08 +00:00

43 lines
679 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 MYACTIONBUTTON_H
#define MYACTIONBUTTON_H
#include <QtGui>
#include <QtCore>
class GameTableStyleReader;
class MyActionButton : public QPushButton
{
public:
MyActionButton(QGroupBox*);
~MyActionButton();
void paintEvent(QPaintEvent * event);
void setFKeyText ( const QString& theValue ) {
fKeyText = theValue;
}
void setMyStyle ( GameTableStyleReader* theValue ) {
myStyle = theValue;
}
private:
QString fKeyText;
GameTableStyleReader *myStyle;
};
#endif