first colors and font sizes are skinnable now

This commit is contained in:
doitux
2009-04-01 12:27:31 +00:00
parent 6d973aa178
commit b944852a4e
16 changed files with 355 additions and 242 deletions
+5
View File
@@ -15,6 +15,8 @@
#include <QtGui>
#include <QtCore>
class GameTableStyleReader;
class MyActionButton : public QPushButton
{
public:
@@ -25,9 +27,12 @@ public:
void paintEvent(QPaintEvent * event);
void setFKeyText ( const QString& theValue ){fKeyText = theValue;}
void setMyStyle ( GameTableStyleReader* theValue ) { myStyle = theValue; }
private:
QString fKeyText;
GameTableStyleReader *myStyle;
};
#endif