This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -3123,11 +3123,6 @@
|
|||||||
<height>0</height>
|
<height>0</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="font" >
|
|
||||||
<font>
|
|
||||||
<pointsize>9</pointsize>
|
|
||||||
</font>
|
|
||||||
</property>
|
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="0" column="0" >
|
<item row="0" column="0" >
|
||||||
@@ -3215,11 +3210,6 @@
|
|||||||
<height>0</height>
|
<height>0</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="font" >
|
|
||||||
<font>
|
|
||||||
<pointsize>9</pointsize>
|
|
||||||
</font>
|
|
||||||
</property>
|
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
@@ -3528,11 +3518,6 @@
|
|||||||
<height>0</height>
|
<height>0</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="font" >
|
|
||||||
<font>
|
|
||||||
<pointsize>9</pointsize>
|
|
||||||
</font>
|
|
||||||
</property>
|
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
@@ -3841,11 +3826,6 @@
|
|||||||
<height>0</height>
|
<height>0</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="font" >
|
|
||||||
<font>
|
|
||||||
<pointsize>9</pointsize>
|
|
||||||
</font>
|
|
||||||
</property>
|
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
|
|||||||
@@ -147,13 +147,6 @@ mainWindowImpl::mainWindowImpl(QMainWindow *parent, const char *name)
|
|||||||
inactive.setRgb(83,141,107);
|
inactive.setRgb(83,141,107);
|
||||||
highlight.setRgb(151,214,109);
|
highlight.setRgb(151,214,109);
|
||||||
|
|
||||||
//Schriftart laden
|
|
||||||
cout << "schriftart läd: " << QFontDatabase::addApplicationFont ("src/gui/qt/font.ttf") << endl;
|
|
||||||
QFont tmpFont("Tuffy",9);
|
|
||||||
QApplication::setFont(tmpFont);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//firstCallNewGame Test init
|
//firstCallNewGame Test init
|
||||||
firstCallNewGame = TRUE;
|
firstCallNewGame = TRUE;
|
||||||
|
|
||||||
|
|||||||
+9
-2
@@ -20,8 +20,8 @@
|
|||||||
|
|
||||||
/////// can be removed for non-qt-guis ////////////
|
/////// can be removed for non-qt-guis ////////////
|
||||||
#include <qapplication.h>
|
#include <qapplication.h>
|
||||||
// #include <QFont>
|
#include <QFont>
|
||||||
// #include <QFontDatabase>
|
#include <QFontDatabase>
|
||||||
///////////////////////////////////////////////////
|
///////////////////////////////////////////////////
|
||||||
|
|
||||||
#include "session.h"
|
#include "session.h"
|
||||||
@@ -34,9 +34,16 @@ int main( int argc, char **argv )
|
|||||||
|
|
||||||
srand( time(0) );
|
srand( time(0) );
|
||||||
|
|
||||||
|
|
||||||
/////// can be removed for non-qt-guis ////////////
|
/////// can be removed for non-qt-guis ////////////
|
||||||
QApplication a( argc, argv );
|
QApplication a( argc, argv );
|
||||||
|
|
||||||
|
//Schriftart laden
|
||||||
|
QFontDatabase::addApplicationFont ("src/gui/qt/Vera.ttf");
|
||||||
|
QFont tmpFont("Bitstream Vera Sans",9);
|
||||||
|
QApplication::setFont(tmpFont);
|
||||||
|
|
||||||
|
|
||||||
Q_INIT_RESOURCE(deck);
|
Q_INIT_RESOURCE(deck);
|
||||||
///////////////////////////////////////////////////
|
///////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user