This commit is contained in:
doitux
2007-02-05 22:33:52 +00:00
parent 20700f200c
commit 6a6674d86c
3 changed files with 27 additions and 7 deletions
+6 -2
View File
@@ -31,10 +31,14 @@ Log::Log(mainWindowImpl* w) : myW(w)
if(myConfig->readConfigString("LogDir") != "" && QDir::QDir(QString::fromStdString(myConfig->readConfigString("LogDir"))).exists()) {
myLogDir = new QDir(QString::fromStdString(myConfig->readConfigString("LogDir")));
myLogFile = new QFile(myLogDir->absolutePath()+"pokerth-log-"+QDateTime::currentDateTime().toString("yyyy-MM-dd_hh:mm:ss")+".html");
#ifdef _WIN32
myLogFile = new QFile(myLogDir->absolutePath()+"\\pokerth-log-"+QDateTime::currentDateTime().toString("yyyy-MM-dd_hh:mm:ss")+".html");
#else
myLogFile = new QFile(myLogDir->absolutePath()+"/pokerth-log-"+QDateTime::currentDateTime().toString("yyyy-MM-dd_hh:mm:ss")+".html");
#endif
//Logo-Pixmap extrahieren
QPixmap::QPixmap(":graphics/graphics/logo-140-100.png").save(myLogDir->absolutePath()+"logo.png");
QPixmap::QPixmap(":graphics/graphics/logo-140-100.png").save(myLogDir->absolutePath()+"/logo.png");
myLogFile->open( QIODevice::WriteOnly );
QTextStream stream( myLogFile );
+18 -4
View File
@@ -2708,16 +2708,30 @@
</property>
<layout class="QGridLayout" >
<property name="margin" >
<number>2</number>
<number>3</number>
</property>
<property name="spacing" >
<number>0</number>
</property>
<item rowspan="2" row="0" column="0" >
<item rowspan="2" row="1" column="0" >
<widget class="QLabel" name="textLabel_handNumber" >
<property name="font" >
<font>
<pointsize>11</pointsize>
<weight>50</weight>
<bold>false</bold>
</font>
</property>
<property name="alignment" >
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="0" column="0" >
<widget class="QLabel" name="textLabel_gameNumber" >
<property name="font" >
<font>
<pointsize>12</pointsize>
<pointsize>11</pointsize>
</font>
</property>
<property name="alignment" >
@@ -3989,7 +4003,7 @@
<x>0</x>
<y>0</y>
<width>874</width>
<height>30</height>
<height>29</height>
</rect>
</property>
<widget class="QMenu" name="menuSpiel" >
+3 -1
View File
@@ -690,7 +690,9 @@ void mainWindowImpl::highlightRoundLabel(string tempround) {
frame_handLabel->setPalette(tempPalette);
textLabel_handLabel->setText(round);
textLabel_gameNumber->setText("Hand: "+QString::number(actualHand->getMyID(),10));
textLabel_handNumber->setText("Hand: "+QString::number(actualHand->getMyID(),10));
textLabel_gameNumber->setText("Game: "+QString::number(actualGame->getMyGameID(),10));
}