fixed fontsizes Windows/Linux
This commit is contained in:
+1
-1
@@ -103,7 +103,7 @@ void Log::logNewGameHandMsg(int gameID, int handID) {
|
||||
|
||||
int i;
|
||||
|
||||
myW->textBrowser_Log->append("## Game: "+QString::number(gameID,10)+" | Hand: "+QString::number(handID,10)+" ##");
|
||||
myW->textBrowser_Log->append("<b>## Game: "+QString::number(gameID,10)+" | Hand: "+QString::number(handID,10)+" ##</b>");
|
||||
|
||||
myLogFile->open( QIODevice::ReadWrite );
|
||||
QTextStream stream( myLogFile );
|
||||
|
||||
@@ -1805,11 +1805,6 @@
|
||||
</disabled>
|
||||
</palette>
|
||||
</property>
|
||||
<property name="font" >
|
||||
<font>
|
||||
<pointsize>8</pointsize>
|
||||
</font>
|
||||
</property>
|
||||
<property name="horizontalScrollBarPolicy" >
|
||||
<enum>Qt::ScrollBarAlwaysOff</enum>
|
||||
</property>
|
||||
@@ -2661,6 +2656,9 @@
|
||||
<height>26</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="alignment" >
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
@@ -2677,6 +2675,9 @@
|
||||
<height>26</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="alignment" >
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
@@ -2715,12 +2716,17 @@
|
||||
</property>
|
||||
<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 name="minimumSize" >
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>22</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize" >
|
||||
<size>
|
||||
<width>16777215</width>
|
||||
<height>22</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="alignment" >
|
||||
<set>Qt::AlignCenter</set>
|
||||
@@ -2729,10 +2735,17 @@
|
||||
</item>
|
||||
<item row="0" column="0" >
|
||||
<widget class="QLabel" name="textLabel_gameNumber" >
|
||||
<property name="font" >
|
||||
<font>
|
||||
<pointsize>11</pointsize>
|
||||
</font>
|
||||
<property name="minimumSize" >
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>22</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize" >
|
||||
<size>
|
||||
<width>16777215</width>
|
||||
<height>22</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="alignment" >
|
||||
<set>Qt::AlignCenter</set>
|
||||
@@ -2768,13 +2781,6 @@
|
||||
</property>
|
||||
<item row="0" column="0" >
|
||||
<widget class="QLabel" name="textLabel_handLabel" >
|
||||
<property name="font" >
|
||||
<font>
|
||||
<pointsize>15</pointsize>
|
||||
<weight>75</weight>
|
||||
<bold>true</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="alignment" >
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
@@ -4003,7 +4009,7 @@
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>874</width>
|
||||
<height>29</height>
|
||||
<height>30</height>
|
||||
</rect>
|
||||
</property>
|
||||
<widget class="QMenu" name="menuSpiel" >
|
||||
|
||||
@@ -54,10 +54,21 @@ mainWindowImpl::mainWindowImpl(QMainWindow *parent)
|
||||
|
||||
// Schriftart laden
|
||||
#ifdef _WIN32
|
||||
QFont tmpFont("Arial",9);
|
||||
|
||||
QFont tmpFont;
|
||||
tmpFont.setFamily("Arial");
|
||||
tmpFont.setPixelSize(12);
|
||||
|
||||
// if(this->logicalDpiX() > 105) { tmpFont.setFont("Arial",8); }
|
||||
// else { QFont tmpFont("Arial",9); }
|
||||
|
||||
#else
|
||||
QFontDatabase::addApplicationFont (":fonts/fonts/n019003l.pfb");
|
||||
QFont tmpFont("Nimbus Sans L",9);
|
||||
// QFont tmpFont("Nimbus Sans L",9);
|
||||
QFont tmpFont;
|
||||
tmpFont.setFamily("Nimbus Sans L");
|
||||
tmpFont.setPixelSize(12);
|
||||
|
||||
#endif
|
||||
QApplication::setFont(tmpFont);
|
||||
|
||||
@@ -65,6 +76,23 @@ mainWindowImpl::mainWindowImpl(QMainWindow *parent)
|
||||
|
||||
setupUi(this);
|
||||
|
||||
//Schriftgrößen festlegen
|
||||
tmpFont.setPixelSize(11);
|
||||
textBrowser_Log->setFont(tmpFont);
|
||||
tmpFont.setPixelSize(18);
|
||||
label_Pot->setFont(tmpFont);
|
||||
tmpFont.setPixelSize(13);
|
||||
label_Sets->setFont(tmpFont);
|
||||
tmpFont.setPixelSize(14);
|
||||
textLabel_handNumber->setFont(tmpFont);
|
||||
textLabel_gameNumber->setFont(tmpFont);
|
||||
textLabel_Sets->setFont(tmpFont);
|
||||
tmpFont.setPixelSize(15);
|
||||
textLabel_Pot->setFont(tmpFont);
|
||||
tmpFont.setPixelSize(21);
|
||||
tmpFont.setBold(TRUE);
|
||||
textLabel_handLabel->setFont(tmpFont);
|
||||
|
||||
//pixmapCardsLabel erstellen und ins Layout einfügen!
|
||||
pixmapLabel_cardBoard0 = new MyCardsPixmapLabel(frame_5);
|
||||
pixmapLabel_cardBoard0->setObjectName(QString::fromUtf8("pixmapLabel_cardBoard0"));
|
||||
@@ -437,8 +465,8 @@ void mainWindowImpl::callNewGameDialog() {
|
||||
//restliche Singleshots killen!!!
|
||||
stopTimer();
|
||||
|
||||
label_Pot->setText("<p align='center'><span style='font-size:x-large; font-weight:bold'>Pot Total</span></p>");
|
||||
label_Sets->setText("<p align='center'><span style='font-size:medium; font-weight:bold'>Sets:</span></p>");
|
||||
label_Pot->setText("<p align='center'><span style='font-weight:bold'>Pot Total</span></p>");
|
||||
label_Sets->setText("<p align='center'><span style='font-weight:bold'>Sets:</span></p>");
|
||||
|
||||
|
||||
//Tools und Board aufhellen und enablen
|
||||
@@ -470,8 +498,8 @@ void mainWindowImpl::callNewGameDialog() {
|
||||
//restliche Singleshots killen!!!
|
||||
stopTimer();
|
||||
|
||||
label_Pot->setText("<p align='center'><span style='font-size:x-large; font-weight:bold'>Pot Total</span></p>");
|
||||
label_Sets->setText("<p align='center'><span style='font-size:medium; font-weight:bold'>Sets:</span></p>");
|
||||
label_Pot->setText("<p align='center'><span style='font-weight:bold'>Pot Total</span></p>");
|
||||
label_Sets->setText("<p align='center'><span style='font-weight:bold'>Sets:</span></p>");
|
||||
|
||||
|
||||
// debugMode = v->checkBox_debugMode->isChecked();
|
||||
@@ -720,7 +748,7 @@ void mainWindowImpl::refreshChangePlayer() {
|
||||
void mainWindowImpl::refreshPot() {
|
||||
|
||||
textLabel_Sets->setText("<p align='left'>"+QString::number(actualHand->getBoard()->getSets(),10)+" $</p>");
|
||||
textLabel_Pot->setText("<p align='center'><span style='font-size:large; font-weight:bold'>"+QString::number(actualHand->getBoard()->getPot(),10)+" $</p>");
|
||||
textLabel_Pot->setText("<p align='center'><span style='font-weight:bold'>"+QString::number(actualHand->getBoard()->getPot(),10)+" $</span></p>");
|
||||
|
||||
}
|
||||
|
||||
@@ -1641,7 +1669,7 @@ void mainWindowImpl::nextRoundCleanGui() {
|
||||
tempPalette.setColor(QPalette::Window, active);
|
||||
frame_Pot->setPalette(tempPalette);
|
||||
|
||||
textLabel_handLabel->setText("<p align='center'><span style='font-size:14pt; font-weight:bold'> </span></p>");
|
||||
textLabel_handLabel->setText("");
|
||||
|
||||
tempPalette = frame_handLabel->palette();
|
||||
tempPalette.setColor(QPalette::Window, active);
|
||||
|
||||
@@ -50,11 +50,18 @@ void StartSplash::paintEvent(QPaintEvent * event) {
|
||||
QPainter painter(this);
|
||||
|
||||
#ifdef _WIN32
|
||||
QFont welcomeFont("Times New Roman",29);
|
||||
QFont welcomeFont;
|
||||
welcomeFont.setFamily("Times New Roman");
|
||||
welcomeFont.setPixelSize(42);
|
||||
#else
|
||||
QFont welcomeFont("Century Schoolbook L",29);
|
||||
QFont welcomeFont;
|
||||
welcomeFont.setFamily("Century Schoolbook L");
|
||||
welcomeFont.setPixelSize(35);
|
||||
#endif
|
||||
QFont haveFont("Andy MT",30);
|
||||
QFont haveFont;
|
||||
haveFont.setFamily("Andy MT");
|
||||
haveFont.setPixelSize(36);
|
||||
|
||||
QPixmap logo(":/graphics/graphics/logo-140-100.png");
|
||||
|
||||
if(frameNo >= 52 && frameNo < 65) {
|
||||
|
||||
Reference in New Issue
Block a user