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
@@ -27,6 +27,7 @@
class Session;
class ConfigFile;
class GameTableStyleReader;
class ChatTools : public QObject
{
@@ -55,6 +56,8 @@ public slots:
void setPlayerNicksList(QStringList value) { myNickStringList = value; }
void setMyNick ( const QString& theValue ) { myNick = theValue; }
void setMyStyle ( GameTableStyleReader* theValue ) { myStyle = theValue; }
private:
@@ -73,6 +76,8 @@ private:
ConfigFile *myConfig;
QString myNick;
GameTableStyleReader *myStyle;
};
#endif