diff --git a/src/gui/qt/gametable.ui b/src/gui/qt/gametable.ui index 58a77453..9b1fd378 100644 --- a/src/gui/qt/gametable.ui +++ b/src/gui/qt/gametable.ui @@ -3102,6 +3102,10 @@ + + + :/gfx/view-fullscreen.png:/gfx/view-fullscreen.png + Fullscreen @@ -3156,11 +3160,19 @@ + + + :/gfx/systemsettings.png:/gfx/systemsettings.png + Configure PokerTH ... + + + :/gfx/application_exit.png:/gfx/application_exit.png + Close @@ -3216,7 +3228,9 @@
mychancelabel.h
- + + + horizontalSlider_speed diff --git a/src/gui/qt/resources/pokerth.qrc b/src/gui/qt/resources/pokerth.qrc index 35a801e2..a5377007 100644 --- a/src/gui/qt/resources/pokerth.qrc +++ b/src/gui/qt/resources/pokerth.qrc @@ -1,5 +1,6 @@ + view-fullscreen.png pokerth.qrc swbuttoninternetgame.png swbuttoncreatenetworkgame.png diff --git a/src/gui/qt/resources/view-fullscreen.png b/src/gui/qt/resources/view-fullscreen.png new file mode 100644 index 00000000..eb5864d0 Binary files /dev/null and b/src/gui/qt/resources/view-fullscreen.png differ diff --git a/src/gui/qt/startwindow.ui b/src/gui/qt/startwindow.ui index d584b3a0..a3547e7e 100644 --- a/src/gui/qt/startwindow.ui +++ b/src/gui/qt/startwindow.ui @@ -6,19 +6,19 @@ 0 0 450 - 350 + 380 450 - 350 + 380 450 - 350 + 380 diff --git a/src/gui/qt/startwindow/startwindowimpl.cpp b/src/gui/qt/startwindow/startwindowimpl.cpp index d90d5e38..d9317f4a 100644 --- a/src/gui/qt/startwindow/startwindowimpl.cpp +++ b/src/gui/qt/startwindow/startwindowimpl.cpp @@ -71,7 +71,8 @@ startWindowImpl::startWindowImpl(ConfigFile *c) //Widgets Grafiken per Stylesheets setzen QString myAppDataPath = QString::fromUtf8(myConfig->readConfigString("AppDataDir").c_str()); - this->setStyleSheet("QMainWindow { background-image: url(" + myAppDataPath +"gfx/gui/misc/startwindowbg.png); background-position: bottom center; background-origin: content;}"); + this->setWindowIcon(QIcon(myAppDataPath+"gfx/gui/misc/windowicon.png")); + this->setStyleSheet("QMainWindow { background-image: url(" + myAppDataPath +"gfx/gui/misc/startwindowbg.png); background-position: bottom center; background-origin: content; background-repeat: no-repeat;}"); pushButtonStart_Local_Game->setStyleSheet("QPushButton { padding-left: 3px; padding-right: 3px; text-align: left; font-weight: bold;}"); pushButtonInternet_Game->setStyleSheet("QPushButton { padding-left: 3px; padding-right: 3px; text-align: left; font-weight: bold;}");