diff --git a/pokerth.pro b/pokerth.pro index 6024cd5f..ed4db1ed 100755 --- a/pokerth.pro +++ b/pokerth.pro @@ -2,7 +2,7 @@ TEMPLATE = subdirs SUBDIRS = pokerth_protocol.pro pokerth_db.pro pokerth_lib.pro pokerth_game.pro -!mac { +!mac:!gui_800x480 { SUBDIRS += pokerth_server.pro chatcleaner.pro } CONFIG += ordered diff --git a/pokerth_game.pro b/pokerth_game.pro index d8136541..3921ac30 100644 --- a/pokerth_game.pro +++ b/pokerth_game.pro @@ -552,43 +552,24 @@ gui_800x480 { DEFINES += GUI_800x480 INCLUDEPATH += src/gui/qt/gui_800x480/ DEPENDPATH += src/gui/qt/gui_800x480/ - FORMS += src/gui/qt/gui_800x480/startwindow_800x480.ui -# src/gui/qt/gui_800x480/gametable_800x480.ui \ -# src/gui/qt/gui_800x480/aboutpokerth_800x480.ui \ -# src/gui/qt/gui_800x480/connecttoserverdialog_800x480.ui \ -# src/gui/qt/gui_800x480/createnetworkgamedialog_800x480.ui \ -# src/gui/qt/gui_800x480/createinternetgamedialog_800x480.ui \ -# src/gui/qt/gui_800x480/joinnetworkgamedialog_800x480.ui \ -# src/gui/qt/gui_800x480/newgamedialog_800x480.ui \ -# src/gui/qt/gui_800x480/settingsdialog_800x480.ui \ -# src/gui/qt/gui_800x480/selectavatardialog_800x480.ui \ -# src/gui/qt/gui_800x480/startnetworkgamedialog_800x480.ui \ -# src/gui/qt/gui_800x480/changecompleteblindsdialog_800x480.ui \ -# src/gui/qt/gui_800x480/gamelobbydialog_800x480.ui \ -# src/gui/qt/gui_800x480/mymessagedialog_800x480.ui \ -# src/gui/qt/gui_800x480/manualblindsorderdialog_800x480.ui \ -# src/gui/qt/gui_800x480/serverlistdialog_800x480.ui \ -# src/gui/qt/gui_800x480/internetgamelogindialog_800x480.ui \ -# src/gui/qt/gui_800x480/changecontentdialog_800x480.ui - - FORMS += src/gui/qt/gametable.ui \ - src/gui/qt/aboutpokerth.ui \ - src/gui/qt/connecttoserverdialog.ui \ - src/gui/qt/createnetworkgamedialog.ui \ - src/gui/qt/createinternetgamedialog.ui \ - src/gui/qt/joinnetworkgamedialog.ui \ - src/gui/qt/newgamedialog.ui \ - src/gui/qt/settingsdialog.ui \ - src/gui/qt/selectavatardialog.ui \ - src/gui/qt/startnetworkgamedialog.ui \ - src/gui/qt/changecompleteblindsdialog.ui \ - src/gui/qt/gamelobbydialog.ui \ - src/gui/qt/mymessagedialog.ui \ - src/gui/qt/manualblindsorderdialog.ui \ - src/gui/qt/serverlistdialog.ui \ - src/gui/qt/internetgamelogindialog.ui \ - src/gui/qt/changecontentdialog.ui - + FORMS += src/gui/qt/gui_800x480/startwindow_800x480.ui \ + src/gui/qt/gui_800x480/gametable_800x480.ui \ + src/gui/qt/gui_800x480/aboutpokerth_800x480.ui \ + src/gui/qt/gui_800x480/connecttoserverdialog_800x480.ui \ + src/gui/qt/gui_800x480/createnetworkgamedialog_800x480.ui \ + src/gui/qt/gui_800x480/createinternetgamedialog_800x480.ui \ + src/gui/qt/gui_800x480/joinnetworkgamedialog_800x480.ui \ + src/gui/qt/gui_800x480/newgamedialog_800x480.ui \ + src/gui/qt/gui_800x480/settingsdialog_800x480.ui \ + src/gui/qt/gui_800x480/selectavatardialog_800x480.ui \ + src/gui/qt/gui_800x480/startnetworkgamedialog_800x480.ui \ + src/gui/qt/gui_800x480/changecompleteblindsdialog_800x480.ui \ + src/gui/qt/gui_800x480/gamelobbydialog_800x480.ui \ + src/gui/qt/gui_800x480/mymessagedialog_800x480.ui \ + src/gui/qt/gui_800x480/manualblindsorderdialog_800x480.ui \ + src/gui/qt/gui_800x480/serverlistdialog_800x480.ui \ + src/gui/qt/gui_800x480/internetgamelogindialog_800x480.ui \ + src/gui/qt/gui_800x480/changecontentdialog_800x480.ui } diff --git a/src/config/configfile.cpp b/src/config/configfile.cpp index 14b4affb..fa2e295d 100644 --- a/src/config/configfile.cpp +++ b/src/config/configfile.cpp @@ -543,8 +543,7 @@ void ConfigFile::updateConfig(ConfigState myConfigState) ///////// VERSION HACK SECTION /////////////////////// //this is the right place for special version depending config hacks: //0.9.1 - log interval needs to be set to 1 instead of 0 - if (configRev == 95) // this means 0.9.1 - { + if (configRev == 95) { // this means 0.9.1 TiXmlElement * confElement2 = new TiXmlElement( "LogInterval" ); config->LinkEndChild( confElement2 ); confElement2->SetAttribute("value", 1); diff --git a/src/gui/qt/aboutpokerth/aboutpokerthimpl.h b/src/gui/qt/aboutpokerth/aboutpokerthimpl.h index 91f977ce..71159cf9 100755 --- a/src/gui/qt/aboutpokerth/aboutpokerthimpl.h +++ b/src/gui/qt/aboutpokerth/aboutpokerthimpl.h @@ -18,7 +18,11 @@ #ifndef ABOUTPOKERTHIMPL_H #define ABOUTPOKERTHIMPL_H +#ifdef GUI_800x480 +#include "ui_aboutpokerth_800x480.h" +#else #include "ui_aboutpokerth.h" +#endif class ConfigFile; diff --git a/src/gui/qt/changecompleteblindsdialog/changecompleteblindsdialogimpl.h b/src/gui/qt/changecompleteblindsdialog/changecompleteblindsdialogimpl.h index 8ddc806c..dbce130d 100644 --- a/src/gui/qt/changecompleteblindsdialog/changecompleteblindsdialogimpl.h +++ b/src/gui/qt/changecompleteblindsdialog/changecompleteblindsdialogimpl.h @@ -18,7 +18,11 @@ #ifndef CHANGECOMPLETEBLINDSDIALOGIMPL_H #define CHANGECOMPLETEBLINDSDIALOGIMPL_H +#ifdef GUI_800x480 +#include "ui_changecompleteblindsdialog_800x480.h" +#else #include "ui_changecompleteblindsdialog.h" +#endif #include #include diff --git a/src/gui/qt/changecontentdialog/changecontentdialogimpl.h b/src/gui/qt/changecontentdialog/changecontentdialogimpl.h index cdb2c7fc..a755b63c 100644 --- a/src/gui/qt/changecontentdialog/changecontentdialogimpl.h +++ b/src/gui/qt/changecontentdialog/changecontentdialogimpl.h @@ -18,7 +18,11 @@ #ifndef CHANGECONTENTDIALOGIMPL_H #define CHANGECONTENTDIALOGIMPL_H +#ifdef GUI_800x480 +#include "ui_changecontentdialog_800x480.h" +#else #include "ui_changecontentdialog.h" +#endif #include diff --git a/src/gui/qt/connecttoserverdialog/connecttoserverdialogimpl.h b/src/gui/qt/connecttoserverdialog/connecttoserverdialogimpl.h index eeb598b0..3f203f9a 100644 --- a/src/gui/qt/connecttoserverdialog/connecttoserverdialogimpl.h +++ b/src/gui/qt/connecttoserverdialog/connecttoserverdialogimpl.h @@ -18,7 +18,11 @@ #ifndef CONNECTTOSERVERDIALOGIMPL_H #define CONNECTTOSERVERDIALOGIMPL_H +#ifdef GUI_800x480 +#include "ui_connecttoserverdialog_800x480.h" +#else #include "ui_connecttoserverdialog.h" +#endif #include #include diff --git a/src/gui/qt/createinternetgamedialog/createinternetgamedialogimpl.h b/src/gui/qt/createinternetgamedialog/createinternetgamedialogimpl.h index 16d6b835..6c2589b0 100644 --- a/src/gui/qt/createinternetgamedialog/createinternetgamedialogimpl.h +++ b/src/gui/qt/createinternetgamedialog/createinternetgamedialogimpl.h @@ -18,7 +18,11 @@ #ifndef CREATEINTERNETGAMEDIALOGIMPL_H #define CREATEINTERNETGAMEDIALOGIMPL_H +#ifdef GUI_800x480 +#include "ui_createinternetgamedialog_800x480.h" +#else #include "ui_createinternetgamedialog.h" +#endif #include #include diff --git a/src/gui/qt/createnetworkgamedialog/createnetworkgamedialogimpl.h b/src/gui/qt/createnetworkgamedialog/createnetworkgamedialogimpl.h index 627fcf8b..35700c70 100644 --- a/src/gui/qt/createnetworkgamedialog/createnetworkgamedialogimpl.h +++ b/src/gui/qt/createnetworkgamedialog/createnetworkgamedialogimpl.h @@ -18,7 +18,11 @@ #ifndef CREATENETWORKGAMEDIALOGIMPL_H #define CREATENETWORKGAMEDIALOGIMPL_H +#ifdef GUI_800x480 +#include "ui_createnetworkgamedialog_800x480.h" +#else #include "ui_createnetworkgamedialog.h" +#endif #include #include diff --git a/src/gui/qt/gamelobbydialog/gamelobbydialogimpl.h b/src/gui/qt/gamelobbydialog/gamelobbydialogimpl.h index c67a0b18..e385b64e 100644 --- a/src/gui/qt/gamelobbydialog/gamelobbydialogimpl.h +++ b/src/gui/qt/gamelobbydialog/gamelobbydialogimpl.h @@ -18,7 +18,11 @@ #ifndef GAMELOBBYDIALOGIMPL_H #define GAMELOBBYDIALOGIMPL_H +#ifdef GUI_800x480 +#include +#else #include +#endif #include #include diff --git a/src/gui/qt/gametable/gametableimpl.h b/src/gui/qt/gametable/gametableimpl.h index 466ad429..f36cbb48 100755 --- a/src/gui/qt/gametable/gametableimpl.h +++ b/src/gui/qt/gametable/gametableimpl.h @@ -18,7 +18,11 @@ #ifndef GAMETABLEIMPL_H #define GAMETABLEIMPL_H +#ifdef GUI_800x480 +#include "ui_gametable_800x480.h" +#else #include "ui_gametable.h" +#endif #include "game_defs.h" #include diff --git a/src/gui/qt/gametable/myactionbutton.cpp b/src/gui/qt/gametable/myactionbutton.cpp index 7c02b4bc..e49dff0b 100644 --- a/src/gui/qt/gametable/myactionbutton.cpp +++ b/src/gui/qt/gametable/myactionbutton.cpp @@ -21,7 +21,7 @@ using namespace std; MyActionButton::MyActionButton(QGroupBox* parent) -: QPushButton(parent), myStyle(NULL), eatMyEvents(false) + : QPushButton(parent), myStyle(NULL), eatMyEvents(false) { } @@ -54,7 +54,7 @@ void MyActionButton::paintEvent(QPaintEvent * event) bool MyActionButton::event(QEvent *event) { if ((event->type() == QEvent::KeyPress || event->type() == QEvent::MouseButtonPress) && eatMyEvents ) { - return true; + return true; } return QWidget::event(event); } diff --git a/src/gui/qt/gametable/myactionbutton.h b/src/gui/qt/gametable/myactionbutton.h index 2b62d31b..3877309f 100644 --- a/src/gui/qt/gametable/myactionbutton.h +++ b/src/gui/qt/gametable/myactionbutton.h @@ -39,7 +39,9 @@ public: myStyle = theValue; } - void setEatMyEvents(bool e) { eatMyEvents = e; } + void setEatMyEvents(bool e) { + eatMyEvents = e; + } bool event(QEvent *e); private: diff --git a/src/gui/qt/gui_800x480/aboutpokerth_800x480.ui b/src/gui/qt/gui_800x480/aboutpokerth_800x480.ui new file mode 100755 index 00000000..b5ced9bd --- /dev/null +++ b/src/gui/qt/gui_800x480/aboutpokerth_800x480.ui @@ -0,0 +1,315 @@ + + + Felix Hammer + aboutPokerth + + + + 0 + 0 + 560 + 415 + + + + + 9 + + + 6 + + + + + true + + + 0 + + + + About + + + + + + + + + + + + + 0 + 0 + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal;"> +<table border="0" style="-qt-table-type: root; margin-top:4px; margin-bottom:4px; margin-left:4px; margin-right:4px;"> +<tr> +<td style="border: none;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">- Singleplayer games with up to 9 computer-opponents</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- </span><a href="http://online-ranking.pokerth.net"><span style=" font-size:8pt; text-decoration: underline; color:#0057ae;">Online ranking website</span></a><span style=" font-size:8pt;"> with result tables</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">© 2006-2011, Felix Hammer, Florian Thauer, Lothar May</span></p></td></tr></table></body></html> + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + + Qt::Vertical + + + + 20 + 100 + + + + + + + + Qt::Vertical + + + + 20 + 91 + + + + + + + + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + true + + + + + + + + Project + + + + 9 + + + 6 + + + + + QTextEdit::NoWrap + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal;"> +<table border="0" style="-qt-table-type: root; margin-top:4px; margin-bottom:4px; margin-left:4px; margin-right:4px;"> +<tr> +<td style="border: none;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Project page: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> </span><a href="http://www.pokerth.net"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.pokerth.net</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">IRC: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> #pokerth (irc.freenode.net)</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" font-size:8pt;">)</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" font-size:8pt;">)</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> - initial idea, basic architecture, engine development</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" font-size:8pt;">)</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> - basic architecture, network development, windows package, MacOS package</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" font-size:8pt;">)</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> - initial gui graphics design</span></p></td></tr></table></body></html> + + + true + + + + + + + + Translation + + + + 9 + + + 6 + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal;"> +<table border="0" style="-qt-table-type: root; margin-top:4px; margin-bottom:4px; margin-left:4px; margin-right:4px;"> +<tr> +<td style="border: none;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">translator name - mail address</span></p></td></tr></table></body></html> + + + true + + + + + + + + Thanks to + + + + 9 + + + 6 + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal;"> +<table border="0" style="-qt-table-type: root; margin-top:4px; margin-bottom:4px; margin-left:4px; margin-right:4px;"> +<tr> +<td style="border: none;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" font-size:8pt; font-weight:600; text-decoration: underline; color:#0000ff;">Wikimedia Commons</span></a></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;"> - </span><span style=" font-size:8pt;">for different popular avatar picture resources</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Benedikt, Erhard, Felix, Florian, Linus, Lothar, Steffi, Caro</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> - for people avatar pictures</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">ZeiZei</span><span style=" font-size:8pt;"> </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> - for &quot;misc&quot; avatar pictures</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://kde-look.org/"><span style=" font-size:8pt; font-weight:600; text-decoration: underline; color:#0000ff;">http://kde-look.org/</span></a></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> - for different gpl licensed sounds</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">doc_dos</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> - for self recorded chip sounds</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">thiger, dunkanx, BerndA, coldz</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> - for different patches</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">kraut</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> - for internet-game-server hosting and administration</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">danuxi</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> - for startwindow background gfx and danuxi1 table background</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">heyn</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> - for moderating forum and organise bugtracker and feature requests</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">texas_outlaw</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> - for new table sounds</span></p></td></tr></table></body></html> + + + true + + + + + + + + License + + + + 9 + + + 6 + + + + + true + + + false + + + + + + + + + + + 6 + + + 0 + + + + + Qt::Horizontal + + + + 131 + 31 + + + + + + + + Close + + + + + + + + + + + okButton + clicked() + aboutPokerth + accept() + + + 278 + 253 + + + 96 + 254 + + + + + diff --git a/src/gui/qt/gui_800x480/changecompleteblindsdialog_800x480.ui b/src/gui/qt/gui_800x480/changecompleteblindsdialog_800x480.ui new file mode 100644 index 00000000..4215d02a --- /dev/null +++ b/src/gui/qt/gui_800x480/changecompleteblindsdialog_800x480.ui @@ -0,0 +1,368 @@ + + + changeCompleteBlindsDialog + + + + 0 + 0 + 454 + 397 + + + + Change Blinds Settings + + + + + + + + First small blind: + + + + + + + 5 + + + 20000 + + + + + + + + + Raise blinds: + + + + 9 + + + 0 + + + 9 + + + + + Every: + + + true + + + + + + + 1 + + + + + + + + 0 + 0 + + + + hands + + + + + + + Every: + + + + + + + 1 + + + + + + + + 0 + 0 + + + + minutes + + + + + + + + + + + 0 + 0 + + + + Raise mode: + + + + 0 + + + + + Always double blinds + + + true + + + + + + + Manual blinds order: + + + + + + + + + + false + + + Manual blinds order: + + + + + + 4 + + + + + + + + Delete + + + + + + + Qt::Vertical + + + + 20 + 121 + + + + + + + + 20000 + + + + + + + Add + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + Afterwards: + + + + 0 + + + + + Always double blinds + + + true + + + + + + + + + Always raise by: + + + + + + + 20000 + + + + + + + $ + + + + + + + + + Keep last blind + + + + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + spinBox_firstSmallBlind + radioButton_raiseBlindsAtHands + spinBox_raiseSmallBlindEveryHands + radioButton_raiseBlindsAtMinutes + spinBox_raiseSmallBlindEveryMinutes + radioButton_alwaysDoubleBlinds + radioButton_manualBlindsOrder + listWidget_blinds + spinBox_input + pushButton_add + pushButton_delete + radioButton_afterThisAlwaysDoubleBlinds + radioButton_afterThisAlwaysRaiseAbout + spinBox_afterThisAlwaysRaiseValue + radioButton_afterThisStayAtLastBlind + buttonBox + + + + + buttonBox + accepted() + changeCompleteBlindsDialog + accept() + + + 237 + 387 + + + 157 + 274 + + + + + buttonBox + rejected() + changeCompleteBlindsDialog + reject() + + + 279 + 387 + + + 286 + 274 + + + + + radioButton_afterThisAlwaysRaiseAbout + toggled(bool) + spinBox_afterThisAlwaysRaiseValue + setEnabled(bool) + + + 327 + 302 + + + 389 + 304 + + + + + radioButton_manualBlindsOrder + toggled(bool) + groupBox_2 + setEnabled(bool) + + + 297 + 116 + + + 306 + 164 + + + + + diff --git a/src/gui/qt/gui_800x480/changecontentdialog_800x480.ui b/src/gui/qt/gui_800x480/changecontentdialog_800x480.ui new file mode 100644 index 00000000..d8b8bf09 --- /dev/null +++ b/src/gui/qt/gui_800x480/changecontentdialog_800x480.ui @@ -0,0 +1,105 @@ + + + changeContentDialog + + + + 0 + 0 + 209 + 126 + + + + + 700 + 300 + + + + Network Error + + + + + + + + + + + Name: + + + lineEdit + + + + + + + + + + + + Save in configuration + + + true + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + lineEdit + checkBox + buttonBox + + + + + buttonBox + accepted() + changeContentDialog + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + changeContentDialog + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/src/gui/qt/gui_800x480/connecttoserverdialog_800x480.ui b/src/gui/qt/gui_800x480/connecttoserverdialog_800x480.ui new file mode 100644 index 00000000..5923ccaf --- /dev/null +++ b/src/gui/qt/gui_800x480/connecttoserverdialog_800x480.ui @@ -0,0 +1,106 @@ + + connectToServerDialog + + + + 0 + 0 + 260 + 118 + + + + Connect to Server + + + + 9 + + + 6 + + + + + Connecting to Server ... + + + Qt::AlignCenter + + + + + + + 0 + + + Qt::Horizontal + + + + + + + 5 + + + 6 + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Cancel + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + + pushButton_cancel + clicked() + connectToServerDialog + reject() + + + 122 + 96 + + + 44 + 90 + + + + + diff --git a/src/gui/qt/gui_800x480/createinternetgamedialog_800x480.ui b/src/gui/qt/gui_800x480/createinternetgamedialog_800x480.ui new file mode 100644 index 00000000..f676c8f3 --- /dev/null +++ b/src/gui/qt/gui_800x480/createinternetgamedialog_800x480.ui @@ -0,0 +1,393 @@ + + + createInternetGameDialog + + + + 0 + 0 + 303 + 390 + + + + Create Internet Game + + + + + + Internet Game Settings + + + + + + + + Default game name: + + + + + + + 48 + + + + + + + + + + + Game type: + + + + + + + + 0 + 0 + + + + + Standard + + + + :/gfx/player_play.png:/gfx/player_play.png + + + + + Registered players only + + + + :/gfx/registered.png:/gfx/registered.png + + + + + Invited players only + + + + :/gfx/list_add_user.png:/gfx/list_add_user.png + + + + + Ranking game + + + + :/gfx/cup.png:/gfx/cup.png + + + + + + + + + + 6 + + + 0 + + + + + Password: + + + + :/gfx/lock.png:/gfx/lock.png + + + + + + + false + + + QLineEdit::Password + + + + + + + + + Qt::Horizontal + + + + + + + Maximum number of players: + + + spinBox_quantityPlayers + + + + + + + 2 + + + 10 + + + 10 + + + + + + + Start Cash: + + + spinBox_startCash + + + + + + + + + + $ + + + 1000 + + + 1000000 + + + 50 + + + 2000 + + + + + + + Blinds + + + + 0 + + + + + Use saved blinds settings + + + true + + + + + + + Change blinds settings ... + + + + + + + + + + + 0 + 0 + + + + Timeout for player action: + + + spinBox_netTimeOutPlayerAction + + + + + + + s + + + 5 + + + 60 + + + 20 + + + + + + + Delay between hands: + + + spinBox_netDelayBetweenHands + + + + + + + + 0 + 0 + + + + s + + + 5 + + + 20 + + + 7 + + + + + + + + + + 6 + + + 0 + + + + + Qt::Horizontal + + + + 181 + 20 + + + + + + + + Create Game + + + + + + + Cancel + + + + + + + + + lineEdit_gameName + comboBox_gameType + checkBox_Password + lineEdit_Password + spinBox_quantityPlayers + spinBox_startCash + radioButton_useSavedBlindsSettings + radioButton_changeBlindsSettings + spinBox_netTimeOutPlayerAction + spinBox_netDelayBetweenHands + pushButton_createGame + pushButton_cancel + + + + + + + pushButton_createGame + clicked() + createInternetGameDialog + accept() + + + 205 + 294 + + + 87 + 215 + + + + + pushButton_cancel + clicked() + createInternetGameDialog + reject() + + + 286 + 294 + + + 288 + 190 + + + + + checkBox_Password + toggled(bool) + lineEdit_Password + setEnabled(bool) + + + 76 + 239 + + + 146 + 235 + + + + + diff --git a/src/gui/qt/gui_800x480/createnetworkgamedialog_800x480.ui b/src/gui/qt/gui_800x480/createnetworkgamedialog_800x480.ui new file mode 100644 index 00000000..816bc900 --- /dev/null +++ b/src/gui/qt/gui_800x480/createnetworkgamedialog_800x480.ui @@ -0,0 +1,246 @@ + + + createNetworkGameDialog + + + + 0 + 0 + 336 + 302 + + + + Create Network Game + + + + + + Network Game Settings + + + + 9 + + + + + Maximum number of players: + + + spinBox_quantityPlayers + + + + + + + 2 + + + 10 + + + 10 + + + + + + + Start Cash: + + + spinBox_startCash + + + + + + + + + + $ + + + 1000 + + + 1000000 + + + 2000 + + + + + + + Blinds + + + + 0 + + + + + Use saved blinds settings + + + true + + + + + + + Change blinds settings ... + + + + + + + + + + Timeout for player action: + + + spinBox_netTimeOutPlayerAction + + + + + + + Delay between hands: + + + spinBox_netDelayBetweenHands + + + + + + + s + + + 0 + + + 60 + + + 20 + + + + + + + s + + + 5 + + + 20 + + + 7 + + + + + + + + + + 6 + + + 0 + + + + + Qt::Horizontal + + + + 181 + 20 + + + + + + + + Create Game + + + + + + + Cancel + + + + + + + + + spinBox_quantityPlayers + spinBox_startCash + radioButton_useSavedBlindsSettings + radioButton_changeBlindsSettings + spinBox_netTimeOutPlayerAction + spinBox_netDelayBetweenHands + pushButton_createGame + pushButton_cancel + + + + + pushButton_createGame + clicked() + createNetworkGameDialog + accept() + + + 223 + 292 + + + 87 + 215 + + + + + pushButton_cancel + clicked() + createNetworkGameDialog + reject() + + + 304 + 292 + + + 288 + 190 + + + + + diff --git a/src/gui/qt/gui_800x480/gamelobbydialog_800x480.ui b/src/gui/qt/gui_800x480/gamelobbydialog_800x480.ui new file mode 100644 index 00000000..45f5432c --- /dev/null +++ b/src/gui/qt/gui_800x480/gamelobbydialog_800x480.ui @@ -0,0 +1,890 @@ + + + gameLobbyDialog + + + + 0 + 0 + 875 + 570 + + + + + 875 + 570 + + + + Internet Game Lobby + + + + 7 + + + 4 + + + 5 + + + + + + 0 + 0 + + + + + 165 + 0 + + + + + 165 + 16777215 + + + + search for player ... + + + + + + + + 0 - No game list filter + + + + + 1 - Show open games + + + + + 2 - Show open & non-full games + + + + + 3 - Show open & non-full & non-private games + + + + + 4 - Show open & non-full & private games + + + + + 5 - Show open & non-full & ranking games + + + + + + + + false + + + + 0 + 0 + + + + + 270 + 0 + + + + + 270 + 16777215 + + + + Game Info + + + + 3 + + + 7 + + + 2 + + + 7 + + + 6 + + + + + + 221 + 237 + + + + Qt::CustomContextMenu + + + 1 + + + + 25 + 26 + + + + 15 + + + + Connected Players + + + + + + + + + 252 + 174 + + + + true + + + + + 0 + 0 + 248 + 178 + + + + + -1 + + + 2 + + + 4 + + + + + Game type: + + + Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing + + + true + + + + + + + + + + 16 + 16 + + + + + 16 + 16777215 + + + + Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing + + + + + + + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + + + + Start Cash: + + + Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing + + + true + + + + + + + QLabel { color:rgb(0, 0, 255); } + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + + First small blind: + + + Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing + + + true + + + + + + + QLabel { color:rgb(0, 0, 255); } + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + + Blinds raise interval: + + + Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing + + + true + + + + + + + QLabel { color:rgb(0, 0, 255); } + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + + Blinds raise mode: + + + Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing + + + true + + + + + + + QLabel { color:rgb(0, 0, 255); } + + + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + + Manual blinds list: + + + Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing + + + true + + + + + + + QLabel { color:rgb(0, 0, 255); } + + + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + + Timeout for player action (sec): + + + Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing + + + true + + + + + + + QLabel { color:rgb(0, 0, 255); } + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + + + + + + + + + 0 + 0 + + + + Fill up with computer opponents + + + + :/gfx/swbuttonlocalgame.png:/gfx/swbuttonlocalgame.png + + + + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 0 + 21 + + + + + + + + + + 3 + + + 0 + + + 0 + + + + + false + + + + 0 + 0 + + + + + 0 + 24 + + + + + 16777215 + 24 + + + + &Start Game + + + + :/gfx/dialog_ok_apply.png:/gfx/dialog_ok_apply.png + + + + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 0 + 24 + + + + + + + + + 0 + 0 + + + + + 0 + 24 + + + + + 16777215 + 24 + + + + &Kick Player + + + + :/gfx/list-remove.png:/gfx/list-remove.png + + + + + + + + + 0 + + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 0 + 24 + + + + + + + + + 0 + 0 + + + + + 0 + 24 + + + + + 16777215 + 24 + + + + &Leave Game + + + + :/gfx/go-previous-view.png:/gfx/go-previous-view.png + + + + + + + + + + + + + 400 + 0 + + + + Qt::ScrollBarAlwaysOff + + + QAbstractItemView::NoEditTriggers + + + false + + + 5 + + + false + + + true + + + + + + + 6 + + + 0 + + + + + Join &any game + + + + :/gfx/transform-rotate.png:/gfx/transform-rotate.png + + + + + + + Qt::Horizontal + + + QSizePolicy::Expanding + + + + 181 + 20 + + + + + + + + &Create Game + + + + :/gfx/list_add.png:/gfx/list_add.png + + + + + + + &Join Game + + + + :/gfx/go-next-view.png:/gfx/go-next-view.png + + + + + + + + + + 400 + 223 + + + + + 16777215 + 230 + + + + Lobby-Chat + + + + 7 + + + 2 + + + 7 + + + 7 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + + + + + + + + + + + Qt::Horizontal + + + QSizePolicy::Expanding + + + + 20 + 20 + + + + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body> +<table border="0" style="-qt-table-type: root; margin-top:4px; margin-bottom:4px; margin-left:4px; margin-right:4px;"> +<tr> +<td style="border: none;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">Click here to view the online rankings</span></a></p></td></tr></table></body></html> + + + true + + + + + + + Qt::Horizontal + + + QSizePolicy::Expanding + + + + 20 + 20 + + + + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">http://www.pokerth.net</span></a></p></body></html> + + + true + + + + + + + + + + 0 + 0 + + + + + 165 + 0 + + + + + 165 + 16777215 + + + + Qt::CustomContextMenu + + + QAbstractItemView::NoEditTriggers + + + false + + + true + + + + + + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + + + + + + + lineEdit_searchForPlayers + treeView_NickList + comboBox_nickListFilter + comboBox_gameListFilter + treeView_GameList + pushButton_joinAnyGame + pushButton_CreateGame + pushButton_JoinGame + textBrowser_ChatDisplay + lineEdit_ChatInput + treeWidget_connectedPlayers + scrollArea_gameInfos + checkBox_fillUpWithComputerOpponents + pushButton_StartGame + pushButton_Kick + pushButton_Leave + + + + + + diff --git a/src/gui/qt/gui_800x480/gametable_800x480.ui b/src/gui/qt/gui_800x480/gametable_800x480.ui new file mode 100644 index 00000000..6fac1a19 --- /dev/null +++ b/src/gui/qt/gui_800x480/gametable_800x480.ui @@ -0,0 +1,4707 @@ + + + gameTable + + + + 0 + 0 + 1024 + 600 + + + + + 1024 + 600 + + + + + 1920 + 1280 + + + + false + + + PokerTH 0.6-beta - The Open-Source Texas Holdem Engine + + + QStatusbar { height:0px; } + + + + + 2 + + + 0 + + + 2 + + + 3 + + + 0 + + + + + 0 + + + + + Qt::Vertical + + + + 20 + 17 + + + + + + + + + 190 + 142 + + + + + 190 + 142 + + + + + + + + + 13 + 13 + 50 + 50 + + + + + 50 + 50 + + + + + 50 + 50 + + + + true + + + + + + 70 + 11 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + 70 + 119 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignBottom|Qt::AlignHCenter + + + + + + 70 + 25 + 104 + 14 + + + + + 35 + 14 + + + + + 16777215 + 14 + + + + + + + 18 + 88 + 40 + 42 + + + + + 40 + 42 + + + + + 40 + 42 + + + + + + + true + + + + + + 86 + 39 + 48 + 76 + + + + true + + + + + + 110 + 39 + 48 + 76 + + + + true + + + + + + 67 + 56 + 111 + 40 + + + + + 0 + 20 + + + + + + + Qt::AlignCenter + + + + + + 12 + 75 + 52 + 10 + + + + + + + + + + 70 + 50 + 16 + 17 + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#ffffff;">*</span></p></body></html> + + + + + + 33 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 23 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 53 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 43 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 13 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + + + Qt::Vertical + + + + 20 + 13 + + + + + + + + + 190 + 142 + + + + + 190 + 142 + + + + + + + + + 13 + 79 + 50 + 50 + + + + + 50 + 50 + + + + + 50 + 50 + + + + true + + + + + + 70 + 117 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + 70 + 10 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignBottom|Qt::AlignHCenter + + + + + + 70 + 104 + 104 + 14 + + + + + 35 + 14 + + + + + 16777215 + 14 + + + + + + + 18 + 16 + 40 + 42 + + + + + 40 + 42 + + + + + 40 + 42 + + + + + + + true + + + + + + 86 + 26 + 48 + 76 + + + + true + + + + + + 110 + 26 + 48 + 76 + + + + true + + + + + + 67 + 43 + 111 + 40 + + + + + 0 + 20 + + + + + + + Qt::AlignCenter + + + + + + 12 + 57 + 52 + 10 + + + + + + + + + + 70 + 79 + 16 + 17 + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#ffffff;">*</span></p></body></html> + + + + + + 13 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 23 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 33 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 43 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 53 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + + + Qt::Vertical + + + + 20 + 18 + + + + + + + + + + 0 + + + + + + 190 + 142 + + + + + 190 + 142 + + + + + + + + + 13 + 13 + 50 + 50 + + + + + 50 + 50 + + + + + 50 + 50 + + + + true + + + + + + 70 + 11 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + false + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + 70 + 119 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignBottom|Qt::AlignHCenter + + + + + + 70 + 25 + 104 + 14 + + + + + 35 + 14 + + + + + 16777215 + 14 + + + + + + + 18 + 88 + 40 + 42 + + + + + 40 + 42 + + + + + 40 + 42 + + + + + + + true + + + + + + 86 + 39 + 48 + 76 + + + + true + + + + + + 110 + 39 + 48 + 76 + + + + true + + + + + + 67 + 56 + 111 + 40 + + + + + 0 + 20 + + + + + + + Qt::AlignCenter + + + + + + 12 + 75 + 52 + 10 + + + + + + + + + + 70 + 50 + 16 + 17 + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#ffffff;">*</span></p></body></html> + + + + + + 33 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 23 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 53 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 43 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 13 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + + + + 190 + 142 + + + + + 190 + 142 + + + + + + + + + 13 + 13 + 50 + 50 + + + + + 50 + 50 + + + + + 50 + 50 + + + + true + + + + + + 70 + 11 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + 70 + 119 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignBottom|Qt::AlignHCenter + + + + + + 70 + 25 + 104 + 14 + + + + + 35 + 14 + + + + + 16777215 + 14 + + + + + + + 18 + 88 + 40 + 42 + + + + + 40 + 42 + + + + + 40 + 42 + + + + + + + true + + + + + + 86 + 39 + 48 + 76 + + + + true + + + + + + 110 + 39 + 48 + 76 + + + + true + + + + + + 67 + 56 + 111 + 40 + + + + + 0 + 20 + + + + + + + Qt::AlignCenter + + + + + + 12 + 75 + 52 + 10 + + + + + + + + + + 70 + 50 + 16 + 17 + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#ffffff;">*</span></p></body></html> + + + + + + 33 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 23 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 53 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 43 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 13 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + + + + 190 + 142 + + + + + 190 + 142 + + + + + + + + + 13 + 13 + 50 + 50 + + + + + 50 + 50 + + + + + 50 + 50 + + + + true + + + + + + 70 + 11 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + 70 + 119 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignBottom|Qt::AlignHCenter + + + + + + 70 + 25 + 104 + 14 + + + + + 35 + 14 + + + + + 16777215 + 14 + + + + + + + 18 + 88 + 40 + 42 + + + + + 40 + 42 + + + + + 40 + 42 + + + + + + + true + + + + + + 86 + 39 + 48 + 76 + + + + true + + + + + + 110 + 39 + 48 + 76 + + + + true + + + + + + 67 + 56 + 111 + 40 + + + + + 0 + 20 + + + + + + + Qt::AlignCenter + + + + + + 12 + 75 + 52 + 10 + + + + + + + + + + 70 + 50 + 16 + 17 + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#ffffff;">*</span></p></body></html> + + + + + + 33 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 23 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 53 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 43 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 13 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + + + + + 0 + + + + + Qt::Vertical + + + + 20 + 13 + + + + + + + + + 190 + 142 + + + + + 190 + 142 + + + + + + + + + 13 + 13 + 50 + 50 + + + + + 50 + 50 + + + + + 50 + 50 + + + + true + + + + + + 70 + 11 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + 70 + 119 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignBottom|Qt::AlignHCenter + + + + + + 70 + 25 + 104 + 14 + + + + + 35 + 14 + + + + + 16777215 + 14 + + + + + + + 18 + 88 + 40 + 42 + + + + + 40 + 42 + + + + + 40 + 42 + + + + + + + true + + + + + + 86 + 39 + 48 + 76 + + + + true + + + + + + 110 + 39 + 48 + 76 + + + + true + + + + + + 67 + 56 + 111 + 40 + + + + + 0 + 20 + + + + + + + Qt::AlignCenter + + + + + + 12 + 75 + 52 + 10 + + + + + + + + + + 70 + 50 + 16 + 17 + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#ffffff;">*</span></p></body></html> + + + + + + 33 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 23 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 53 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 43 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 13 + 62 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + + + Qt::Vertical + + + + 20 + 28 + + + + + + + + + 190 + 142 + + + + + 190 + 142 + + + + + + + + + 13 + 79 + 50 + 50 + + + + + 50 + 50 + + + + + 50 + 50 + + + + true + + + + + + 70 + 117 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + 70 + 10 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignBottom|Qt::AlignHCenter + + + + + + 70 + 104 + 104 + 12 + + + + + 35 + 12 + + + + + 16777215 + 12 + + + + + + + 18 + 16 + 40 + 42 + + + + + 40 + 42 + + + + + 40 + 42 + + + + + + + true + + + + + + 86 + 26 + 48 + 76 + + + + true + + + + + + 110 + 26 + 48 + 76 + + + + true + + + + + + 67 + 43 + 111 + 40 + + + + + 0 + 20 + + + + + + + Qt::AlignCenter + + + + + + 12 + 57 + 52 + 10 + + + + + + + + + + 70 + 79 + 16 + 17 + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#ffffff;">*</span></p></body></html> + + + + + + 33 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 23 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 53 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 43 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 13 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + + + Qt::Vertical + + + + 20 + 18 + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + 0 + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + 0 + 0 + + + + + 600 + 94 + + + + + 600 + 94 + + + + QGroupBox {border-style:none;} + + + + 0 + + + 0 + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 91 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 91 + + + + + + + + 0 + + + 8 + + + 8 + + + + + + 142 + 0 + + + + Qt::AlignCenter + + + + + + + + 90 + 0 + + + + + 3 + + + 2 + + + 0 + + + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + + 45 + 0 + + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + + + + + 285 + 0 + + + + + + 230 + 10 + 48 + 76 + + + + true + + + + + + 65 + 10 + 48 + 76 + + + + true + + + + + + 62 + 7 + 54 + 82 + + + + true + + + + + + 7 + 7 + 54 + 82 + + + + true + + + + + + 10 + 10 + 48 + 76 + + + + true + + + + + + 227 + 7 + 54 + 82 + + + + true + + + + + + 117 + 7 + 54 + 82 + + + + true + + + + + + 120 + 10 + 48 + 76 + + + + true + + + + + + 172 + 7 + 54 + 82 + + + + true + + + + + + 175 + 10 + 48 + 76 + + + + true + + + + + + + + + 0 + + + 0 + + + 8 + + + 0 + + + 8 + + + + + 0 + + + + + + 144 + 0 + + + + + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + + 17 + 17 + + + + + + + + + + 3 + + + 2 + + + 0 + + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + 90 + 0 + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + 0 + + + + + + 190 + 142 + + + + + 190 + 142 + + + + + + + + + 13 + 79 + 50 + 50 + + + + + 50 + 50 + + + + + 50 + 50 + + + + true + + + + + + 70 + 117 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + 70 + 10 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignBottom|Qt::AlignHCenter + + + + + + 70 + 104 + 104 + 14 + + + + + 35 + 14 + + + + + 16777215 + 14 + + + + + + + 18 + 16 + 40 + 42 + + + + + 40 + 42 + + + + + 40 + 42 + + + + + + + true + + + + + + 86 + 26 + 48 + 76 + + + + true + + + + + + 110 + 26 + 48 + 76 + + + + true + + + + + + 67 + 43 + 111 + 40 + + + + + 0 + 20 + + + + + + + Qt::AlignCenter + + + + + + 12 + 57 + 52 + 10 + + + + + + + + + + 70 + 79 + 16 + 17 + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#ffffff;">*</span></p></body></html> + + + + + + 33 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 23 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 53 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 43 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 13 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + + + + 190 + 142 + + + + + 190 + 142 + + + + + + + + + 13 + 79 + 50 + 50 + + + + + 50 + 50 + + + + + 50 + 50 + + + + true + + + + + + 70 + 117 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + 70 + 10 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignBottom|Qt::AlignHCenter + + + + + + 70 + 104 + 104 + 12 + + + + + 35 + 12 + + + + + 16777215 + 12 + + + + + + + 18 + 16 + 40 + 42 + + + + + 40 + 42 + + + + + 40 + 42 + + + + + + + true + + + + + + 86 + 26 + 48 + 76 + + + + true + + + + + + 110 + 26 + 48 + 76 + + + + true + + + + + + 67 + 43 + 111 + 40 + + + + + 0 + 20 + + + + + + + Qt::AlignCenter + + + + + + 12 + 64 + 52 + 10 + + + + + + + + + + 72 + 72 + 100 + 25 + + + + Show! + + + + + + 70 + 79 + 16 + 17 + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#ffffff;">*</span></p></body></html> + + + + + + 33 + 67 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 23 + 67 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 53 + 67 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 43 + 67 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 13 + 67 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + + + + 190 + 142 + + + + + 190 + 142 + + + + + + + + + 13 + 79 + 50 + 50 + + + + + 50 + 50 + + + + + 50 + 50 + + + + true + + + + + + 70 + 117 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + 70 + 10 + 104 + 14 + + + + + 0 + 14 + + + + + 16777215 + 14 + + + + Qt::AlignBottom|Qt::AlignHCenter + + + + + + 70 + 104 + 104 + 12 + + + + + 35 + 12 + + + + + 16777215 + 12 + + + + + + + 18 + 16 + 40 + 42 + + + + + 40 + 42 + + + + + 40 + 42 + + + + + + + true + + + + + + 86 + 26 + 48 + 76 + + + + true + + + + + + 110 + 26 + 48 + 76 + + + + true + + + + + + 67 + 43 + 111 + 40 + + + + + 0 + 20 + + + + + + + Qt::AlignCenter + + + + + + 12 + 57 + 52 + 10 + + + + + + + + + + 70 + 79 + 16 + 17 + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#ffffff;">*</span></p></body></html> + + + + + + 33 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 23 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 53 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 43 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + 13 + 65 + 12 + 12 + + + + <a>&#9734;</a> + + + + + + + + + + + + 0 + + + 0 + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 260 + 0 + + + + + + + + Qt::Vertical + + + QSizePolicy::Expanding + + + + 0 + 0 + + + + + + + + + 260 + 188 + + + + + 260 + 188 + + + + + 4 + + + + + Qt::NoFocus + + + 3 + + + + Hands + + + + 0 + + + 0 + + + + + Qt::AlignCenter + + + + + + + + Chat + + + + 0 + + + 0 + + + + + Qt::NoFocus + + + true + + + Qt::ScrollBarAlwaysOff + + + + + + + + + + + Kick + + + + 0 + + + 6 + + + 5 + + + + + 0 + + + + + 5 + + + + + Vote started by: + + + + + + + + 0 + 0 + + + + + + + + + + + + + 5 + + + + + Vote Timeout: + + + + + + + + 0 + 0 + + + + + + + + + + + + + + + + 0 + 0 + + + + + + + + + + + + + + 80 + 20 + + + + Yes + + + + + + + + 80 + 20 + + + + No + + + + + + + + + + + + + + + + Qt::Vertical + + + + 20 + 27 + + + + + + + + + Player info + + + + 3 + + + 6 + + + + + Qt::ClickFocus + + + + + + + Qt::NoFocus + + + Save + + + + + + + + + + + + + + + + Qt::Horizontal + + + QSizePolicy::MinimumExpanding + + + + 155 + 0 + + + + + + + + true + + + + 0 + 0 + + + + + 168 + 188 + + + + + 168 + 188 + + + + QGroupBox {border-style:none;} + + + + + + + 0 + + + 1 + + + 0 + + + + + 0 + + + + + + 73 + 0 + + + + QAbstractSpinBox::NoButtons + + + true + + + QAbstractSpinBox::CorrectToNearestValue + + + 99999999 + + + 5 + + + + + + + + 95 + 25 + + + + + 95 + 25 + + + + Qt::NoFocus + + + + + + + + + Qt::NoFocus + + + 9999999 + + + 10 + + + Qt::Horizontal + + + + + + + + 0 + 0 + + + + + 168 + 43 + + + + + 168 + 43 + + + + Qt::NoFocus + + + + + + + + 0 + 0 + + + + + 168 + 43 + + + + + 168 + 43 + + + + Qt::NoFocus + + + + + + + + 0 + 0 + + + + + 168 + 43 + + + + + 168 + 43 + + + + Qt::NoFocus + + + + + + + Qt::Vertical + + + + 20 + 0 + + + + + + + + Qt::Vertical + + + + 20 + 0 + + + + + + + + + + + Qt::Horizontal + + + QSizePolicy::MinimumExpanding + + + + 155 + 0 + + + + + + + + 0 + + + 0 + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 260 + 0 + + + + + + + + Qt::Vertical + + + QSizePolicy::Expanding + + + + 0 + 0 + + + + + + + + + 260 + 188 + + + + + 260 + 188 + + + + + 1 + + + 2 + + + 4 + + + + + Qt::NoFocus + + + 0 + + + + Log + + + + 0 + + + 0 + + + + + Qt::NoFocus + + + true + + + Qt::ScrollBarAlwaysOff + + + + + + + + Away + + + + + + Qt::NoFocus + + + Manual Action (default) + + + true + + + + + + + Qt::NoFocus + + + Auto-Check / Auto-Fold + + + + + + + Qt::NoFocus + + + Auto-Check / Auto-Call-Any + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + Chance + + + + 1 + + + 0 + + + 1 + + + 1 + + + 0 + + + + + + + + + + + + + + + + 6 + + + 0 + + + + + + + + + + 240 + 240 + 240 + + + + + + + 240 + 240 + 240 + + + + + + + + + 240 + 240 + 240 + + + + + + + 240 + 240 + 240 + + + + + + + + + 128 + 128 + 128 + + + + + + + 199 + 199 + 199 + + + + + + + + Speed: + + + + + + + + 18 + 0 + + + + + + + + + 240 + 240 + 240 + + + + + + + 240 + 240 + 240 + + + + + + + + + 240 + 240 + 240 + + + + + + + 240 + 240 + 240 + + + + + + + + + 128 + 128 + 128 + + + + + + + 199 + 199 + 199 + + + + + + + + + + + + + + + + 0 + 0 + + + + Qt::NoFocus + + + 1 + + + 11 + + + 1 + + + Qt::Horizontal + + + + + + + true + + + + 40 + 20 + + + + Qt::NoFocus + + + Shortcut: <Shift> + + + + + + + + + + + + + + + + + + 0 + 0 + 1024 + 26 + + + + + &View + + + + + + + + + + + + &Settings + + + + + + + + + Start Local Game ... + + + Ctrl+N + + + + + Quit + + + Ctrl+Q + + + + + About PokerTH ... + + + + + Settings ... + + + + + Create Network Game ... + + + Ctrl+O + + + + + Join Network Game ... + + + Ctrl+J + + + + + + :/gfx/view-fullscreen.png:/gfx/view-fullscreen.png + + + Fullscreen + + + Ctrl+F + + + + + Show/Hide Chat Window + + + Ctrl+T + + + + + Show/Hide Hands Window + + + Show/Hide Hands Window + + + Show/Hide Hands Window + + + Ctrl+H + + + + + Show/Hide Log Window + + + Ctrl+L + + + + + Internet Game ... + + + Ctrl+I + + + + + Show/Hide Away Window + + + Ctrl+A + + + + + + :/gfx/systemsettings.png:/gfx/systemsettings.png + + + Configure PokerTH ... + + + + + + :/gfx/application_exit.png:/gfx/application_exit.png + + + Close + + + Ctrl+X + + + + + Show/Hide Chance Window + + + Ctrl+C + + + + + + MySetLabel + QLabel +
mysetlabel.h
+
+ + MyLeftTabWidget + QTabWidget +
mylefttabwidget.h
+ 1 +
+ + MyRightTabWidget + QTabWidget +
myrighttabwidget.h
+ 1 +
+ + MyStatusLabel + QLabel +
mystatuslabel.h
+
+ + MyCardsPixmapLabel + QLabel +
mycardspixmaplabel.h
+
+ + MyAvatarLabel + QLabel +
myavatarlabel.h
+
+ + MyChanceLabel + QLabel +
mychancelabel.h
+
+ + MyActionButton + QPushButton +
myactionbutton.h
+
+ + MyMenuBar + QMenuBar +
mymenubar.h
+
+ + MyTimeoutLabel + QLabel +
mytimeoutlabel.h
+
+ + MyNameLabel + QLabel +
mynamelabel.h
+
+ + Slider + QSlider +
myslider.h
+
+ + MyCashLabel + QLabel +
mycashlabel.h
+
+
+ + + + + + horizontalSlider_speed + valueChanged(int) + label_speedValue + setNum(int) + + + 886 + 624 + + + 800 + 638 + + + + +
diff --git a/src/gui/qt/gui_800x480/internetgamelogindialog_800x480.ui b/src/gui/qt/gui_800x480/internetgamelogindialog_800x480.ui new file mode 100644 index 00000000..0c93b085 --- /dev/null +++ b/src/gui/qt/gui_800x480/internetgamelogindialog_800x480.ui @@ -0,0 +1,161 @@ + + + internetGameLoginDialog + + + + 0 + 0 + 292 + 230 + + + + Internet Game Login + + + + + + Registered user + + + true + + + + + + Username: + + + + + + + + + + Password: + + + + + + + QLineEdit::Password + + + + + + + Remember password (not recommended) + + + + + + + + + + Login as guest + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Login + + + + + + + Cancel + + + + + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body> +<table style="-qt-table-type: root; margin-top:4px; margin-bottom:4px; margin-left:4px; margin-right:4px;"> +<tr> +<td style="border: none;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://create-gaming-account.pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">Create new user account</span></a></p></td></tr></table></body></html> + + + true + + + + + + + groupBox_reguser + lineEdit_username + lineEdit_password + checkBox_rememberPassword + checkBox_guest + pushButton_login + pushButton_cancel + + + + + pushButton_login + clicked() + internetGameLoginDialog + accept() + + + 176 + 180 + + + 284 + 216 + + + + + pushButton_cancel + clicked() + internetGameLoginDialog + reject() + + + 244 + 194 + + + 290 + 150 + + + + + diff --git a/src/gui/qt/gui_800x480/joinnetworkgamedialog_800x480.ui b/src/gui/qt/gui_800x480/joinnetworkgamedialog_800x480.ui new file mode 100644 index 00000000..a0739093 --- /dev/null +++ b/src/gui/qt/gui_800x480/joinnetworkgamedialog_800x480.ui @@ -0,0 +1,373 @@ + + + joinNetworkGameDialog + + + + 0 + 0 + 614 + 458 + + + + Join Network Game + + + + 9 + + + 6 + + + + + 6 + + + 0 + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + 198 + 0 + + + + Connect + + + + + + + Close + + + + + + + + + Connect to Network Game + + + + + + + + Profile Name: + + + lineEdit_profileName + + + + + + + myServerProfile1 + + + + + + + + + + + IP Address / Domain Name: + + + lineEdit_ipAddress + + + + + + + + + + Port: + + + spinBox_port + + + + + + + 80 + + + 65535 + + + 7234 + + + + + + + + + 6 + + + 0 + + + + + Use IPv6 + + + + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-weight:400; font-style:normal; text-decoration:none;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <a href="http://en.wikipedia.org/wiki/Ipv6"><span style=" text-decoration: underline; color:#0000ff;">What is this?</span></a></p></body></html> + + + true + + + + + + + Qt::Horizontal + + + + 131 + 20 + + + + + + + + + + 6 + + + 0 + + + + + Use SCTP + + + + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-weight:400; font-style:normal; text-decoration:none;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol"><span style=" text-decoration: underline; color:#0000ff;">What is this?</span></a></p></body></html> + + + true + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + Server Profiles + + + + 9 + + + 6 + + + + + true + + + 15 + + + false + + + true + + + true + + + true + + + + Name + + + + + Address + + + + + Port + + + + + IPv6 + + + + + SCTP + + + + + + + + 6 + + + 0 + + + + + Save + + + + + + + Delete + + + + + + + + + + + + + + + lineEdit_profileName + lineEdit_ipAddress + spinBox_port + checkBox_ipv6 + checkBox_sctp + treeWidget + pushButton_save + pushButton_delete + pushButton_connect + pushButton_close + + + + + pushButton_connect + clicked() + joinNetworkGameDialog + accept() + + + 376 + 447 + + + 33 + 422 + + + + + pushButton_close + clicked() + joinNetworkGameDialog + reject() + + + 548 + 429 + + + 483 + 428 + + + + + treeWidget + itemDoubleClicked(QTreeWidgetItem*,int) + pushButton_connect + click() + + + 113 + 206 + + + 394 + 427 + + + + + diff --git a/src/gui/qt/gui_800x480/manualblindsorderdialog_800x480.ui b/src/gui/qt/gui_800x480/manualblindsorderdialog_800x480.ui new file mode 100644 index 00000000..59ea769a --- /dev/null +++ b/src/gui/qt/gui_800x480/manualblindsorderdialog_800x480.ui @@ -0,0 +1,203 @@ + + + manualBlindsOrderDialog + + + + 0 + 0 + 248 + 362 + + + + Manual Blinds Order + + + + + + 4 + + + + + + + + Delete + + + + + + + Qt::Vertical + + + + 20 + 121 + + + + + + + + $ + + + 1 + + + 20000 + + + 5 + + + + + + + Add + + + + + + + + + Afterwards: + + + + 2 + + + 2 + + + + + Always double blinds + + + true + + + + + + + + + Always raise by: + + + + + + + $ + + + 20000 + + + 5 + + + 5 + + + + + + + + + Keep last blind + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + listWidget_blinds + pushButton_delete + spinBox_input + pushButton_add + radioButton_alwaysDoubleBlinds + radioButton_alwaysRaiseAbout + spinBox_alwaysRaiseValue + radioButton_stayAtLastBlind + buttonBox + + + + + buttonBox + accepted() + manualBlindsOrderDialog + accept() + + + 228 + 394 + + + 157 + 274 + + + + + buttonBox + rejected() + manualBlindsOrderDialog + reject() + + + 270 + 400 + + + 286 + 274 + + + + + radioButton_alwaysRaiseAbout + toggled(bool) + spinBox_alwaysRaiseValue + setEnabled(bool) + + + 109 + 307 + + + 173 + 303 + + + + + diff --git a/src/gui/qt/gui_800x480/mymessagedialog_800x480.ui b/src/gui/qt/gui_800x480/mymessagedialog_800x480.ui new file mode 100644 index 00000000..264cfd40 --- /dev/null +++ b/src/gui/qt/gui_800x480/mymessagedialog_800x480.ui @@ -0,0 +1,130 @@ + + + myMessageDialog + + + + 0 + 0 + 275 + 118 + + + + + 800 + 600 + + + + Dialog + + + + 9 + + + + + + 50 + 50 + + + + + + + + + + MessageText + + + + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 199 + 13 + + + + + + + + Do not show this message again. + + + + + + + Qt::Horizontal + + + QDialogButtonBox::No|QDialogButtonBox::Yes + + + + + + + + + Qt::Vertical + + + + 20 + 81 + + + + + + + + + + buttonBox + accepted() + myMessageDialog + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + myMessageDialog + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/src/gui/qt/gui_800x480/newgamedialog_800x480.ui b/src/gui/qt/gui_800x480/newgamedialog_800x480.ui new file mode 100755 index 00000000..2e547bb8 --- /dev/null +++ b/src/gui/qt/gui_800x480/newgamedialog_800x480.ui @@ -0,0 +1,185 @@ + + + newGameDialog + + + + 0 + 0 + 225 + 271 + + + + Start Local Game + + + + + + Local Game Settings + + + + + + Number of players: + + + spinBox_quantityPlayers + + + + + + + 2 + + + 10 + + + 10 + + + + + + + Start Cash: + + + spinBox_startCash + + + + + + + $ + + + 1000 + + + 1000000 + + + 50 + + + 2000 + + + + + + + Blinds + + + + 0 + + + + + Use saved blinds settings + + + true + + + + + + + Change blinds settings ... + + + + + + + + + + Game Speed: + + + spinBox_gameSpeed + + + + + + + 1 + + + 11 + + + 4 + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + spinBox_quantityPlayers + spinBox_startCash + radioButton_useSavedBlindsSettings + radioButton_changeBlindsSettings + spinBox_gameSpeed + buttonBox + + + + + buttonBox + accepted() + newGameDialog + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + newGameDialog + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/src/gui/qt/gui_800x480/selectavatardialog_800x480.ui b/src/gui/qt/gui_800x480/selectavatardialog_800x480.ui new file mode 100644 index 00000000..dae19753 --- /dev/null +++ b/src/gui/qt/gui_800x480/selectavatardialog_800x480.ui @@ -0,0 +1,222 @@ + + selectAvatarDialog + + + + 0 + 0 + 548 + 500 + + + + + 0 + 0 + + + + + 548 + 500 + + + + + 548 + 500 + + + + Please select an avatar + + + + + + Select an avatar + + + true + + + true + + + + + + + People + + + + + Miscellaneous + + + + + + + + + + + + + + Load avatar from external file + + + true + + + false + + + + 9 + + + 9 + + + 9 + + + 9 + + + 2 + + + 2 + + + + + + 27 + 26 + + + + + 27 + 26 + + + + + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok + + + + + + + groupBox + comboBox_avatarViewCategorie + listWidget + groupBox_2 + lineEdit + pushButton_OpenAvatarFile + buttonBox + + + + + buttonBox + rejected() + selectAvatarDialog + reject() + + + 316 + 488 + + + 286 + 274 + + + + + groupBox + toggled(bool) + listWidget + setEnabled(bool) + + + 47 + 15 + + + 273 + 159 + + + + + groupBox_2 + toggled(bool) + lineEdit + setEnabled(bool) + + + 42 + 395 + + + 268 + 439 + + + + + groupBox_2 + toggled(bool) + pushButton_OpenAvatarFile + setEnabled(bool) + + + 273 + 418 + + + 527 + 440 + + + + + groupBox + toggled(bool) + comboBox_avatarViewCategorie + setEnabled(bool) + + + 80 + 16 + + + 87 + 38 + + + + + diff --git a/src/gui/qt/gui_800x480/serverlistdialog_800x480.ui b/src/gui/qt/gui_800x480/serverlistdialog_800x480.ui new file mode 100644 index 00000000..47af2ce3 --- /dev/null +++ b/src/gui/qt/gui_800x480/serverlistdialog_800x480.ui @@ -0,0 +1,87 @@ + + + ServerListDialog + + + + 0 + 0 + 289 + 241 + + + + Server List + + + + + + true + + + false + + + + Server Name + + + + + Country/Region + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + true + + + + + + + + + buttonBox + accepted() + ServerListDialog + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + ServerListDialog + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/src/gui/qt/gui_800x480/settingsdialog_800x480.ui b/src/gui/qt/gui_800x480/settingsdialog_800x480.ui new file mode 100644 index 00000000..e2cf728a --- /dev/null +++ b/src/gui/qt/gui_800x480/settingsdialog_800x480.ui @@ -0,0 +1,3996 @@ + + + settingsDialog + + + + 0 + 0 + 785 + 530 + + + + + 785 + 530 + + + + Settings + + + + + + + + + 190 + 0 + + + + + 190 + 16777215 + + + + + 32 + 32 + + + + false + + + true + + + + Interface + + + + :/gfx/preferences-desktop.png:/gfx/preferences-desktop.png + + + + + Style + + + + :/gfx/fill-color.png:/gfx/fill-color.png + + + + + Sound + + + + :/gfx/speaker.png:/gfx/speaker.png + + + + + Local Game + + + + :/gfx/swbuttonlocalgame.png:/gfx/swbuttonlocalgame.png + + + + + Network Game + + + + :/gfx/swbuttonjoinnetworkgame.png:/gfx/swbuttonjoinnetworkgame.png + + + + + Internet Game + + + + :/gfx/swbuttoninternetgame.png:/gfx/swbuttoninternetgame.png + + + + + Nicks/Avatars + + + + :/gfx/system_users.png:/gfx/system_users.png + + + + + Log Messages + + + + :/gfx/utilities-log-viewer.png:/gfx/utilities-log-viewer.png + + + + + Factory Settings + + + + :/gfx/document-revert.png:/gfx/document-revert.png + + + + + + + + 0 + + + + + + + QLabel { font-weight: bold; } + + + Interface + + + + + + + Qt::Horizontal + + + + + + + + + Language: + + + comboBox_switchLanguage + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + + Show right toolbox + + + + + + + Show fade-out animation for non-winning cards + + + + + + + Reverse order of F-Keys (F1 - F4) + + + + + + + Show buttons for small blind and big blind + + + + + + + Don't translate poker strings like check, call, raise from game table style + + + + + + + Show cards chance monitor + + + + + + + Show own cards only on mouse click + + + + + + + Show flip-card animation + + + + + + + Show left toolbox + + + + + + + Disable splashscreen on startup + + + + + + + + + Network / Internet Game + + + + + + Switch keyboard focus to bet-input-field if it's your turn + + + + + + + Show country flag in the corner of avatar + + + + + + + + + + Qt::Vertical + + + + 400 + 111 + + + + + + + + + + + + QLabel { font-weight: bold; } + + + Style + + + + + + + Qt::Horizontal + + + + + + + 0 + + + + Game Table + + + + + + + + Add ... + + + + + + + Remove + + + + + + + Qt::Vertical + + + + 20 + 17 + + + + + + + + + + Preview - Information: + + + + + + + 160 + 120 + + + + + 160 + 120 + + + + + + + + + + + + + + Qt::RichText + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://gtstyles.pokerth.net/"><span style=" text-decoration: underline; color:#0000ff;">Get new PokerTH game table styles ...</span></a></p></body></html> + + + true + + + + + + + 5 + + + false + + + false + + + true + + + true + + + 3 + + + false + + + true + + + + Description + + + + + Maintainer + + + + + State + + + + + + + + + Card Deck + + + + + + + + Add ... + + + + + + + Remove + + + + + + + Qt::Vertical + + + + 20 + 17 + + + + + + + + + + Preview - Information: + + + + + + + 160 + 120 + + + + + 160 + 120 + + + + + + + + + + + + + + Qt::RichText + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://cdstyles.pokerth.net/"><span style=" text-decoration: underline; color:#0000ff;">Get new PokerTH card deck styles ...</span></a></p></body></html> + + + true + + + + + + + 5 + + + false + + + false + + + true + + + true + + + true + + + + Description + + + + + Maintainer + + + + + + + + + Card Back + + + + + + Use card back from card style + + + true + + + + + + + 0 + + + 0 + + + + + 2 + + + 0 + + + + + Use custom card back picture: + + + + + + + false + + + + + + + false + + + + 27 + 26 + + + + + 27 + 26 + + + + + :/gfx/document-open-folder.png:/gfx/document-open-folder.png + + + + + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table style="-qt-table-type: root; margin-top:4px; margin-bottom:4px; margin-left:4px; margin-right:4px;"> +<tr> +<td style="border: none;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Note: Best quality with image ratio like </span><span style=" font-weight:600; font-style:italic;">width=48, height=76.</span></p></td></tr></table></body></html> + + + true + + + + + + + + + Qt::Vertical + + + + 20 + 276 + + + + + + + + + + + + + + + + QLabel { font-weight: bold; } + + + Sound + + + + + + + Qt::Horizontal + + + + + + + Play sound effects + + + true + + + true + + + + + + 6 + + + 0 + + + + + Sound Volume: + + + + + + + + 20 + 0 + + + + 10 + + + + + + + 1 + + + 10 + + + 8 + + + Qt::Horizontal + + + + + + + + + Sound Categories + + + + 0 + + + + + Play game actions sounds like "check", "call", "raise" + + + + + + + Play lobby chat notifications + + + + + + + Play network/internet game notifications like "player joined the game" + + + false + + + + + + + + + + + + + Qt::Vertical + + + + 400 + 321 + + + + + + + + + + + + QLabel { font-weight: bold; } + + + Local Game Settings + + + + + + + Qt::Horizontal + + + + + + + + + Number of players: + + + spinBox_quantityPlayers + + + + + + + 2 + + + 10 + + + 10 + + + + + + + + + + + Start Cash: + + + spinBox_startCash + + + + + + + $ + + + 1000 + + + 1000000 + + + 50 + + + + + + + + + + + First small blind: + + + spinBox_firstSmallBlind + + + + + + + $ + + + 5 + + + 20000 + + + + + + + + + + + Raise blinds: + + + + 9 + + + 0 + + + 9 + + + + + Every: + + + true + + + + + + + 1 + + + + + + + + 0 + 0 + + + + hands + + + + + + + Every: + + + + + + + 1 + + + + + + + + 0 + 0 + + + + minutes + + + + + + + Qt::Vertical + + + + 20 + 5 + + + + + + + + + + + + 0 + 0 + + + + Raise mode: + + + + 0 + + + + + Always double blinds + + + true + + + + + + + Manual blinds order: + + + + + + + false + + + Edit ... + + + + + + + + + + + + + + Game Speed: + + + spinBox_gameSpeed + + + + + + + 1 + + + 11 + + + 1 + + + + + + + + + Pause between hands (press "start" button to go on) + + + + + + + Show game settings dialog on every new game + + + + + + + Qt::Vertical + + + + 437 + 285 + + + + + + + + + + + + QLabel { font-weight: bold; } + + + Network Game Settings + + + + + + + Qt::Horizontal + + + + + + + + + Maximum number of players: + + + spinBox_netQuantityPlayers + + + + + + + 2 + + + 10 + + + 10 + + + + + + + + + + + Start Cash: + + + spinBox_netStartCash + + + + + + + $ + + + 1000 + + + 1000000 + + + 50 + + + + + + + + + + + First small blind: + + + spinBox_netFirstSmallBlind + + + + + + + $ + + + 5 + + + 20000 + + + + + + + + + + + + 16777215 + 105 + + + + Raise blinds: + + + + 6 + + + 0 + + + 6 + + + 6 + + + 4 + + + + + Every: + + + true + + + + + + + 1 + + + + + + + + 0 + 0 + + + + hands + + + + + + + Every: + + + + + + + 1 + + + + + + + + 0 + 0 + + + + minutes + + + + + + + Qt::Vertical + + + + 20 + 10 + + + + + + + + + + + + 0 + 0 + + + + + 16777215 + 105 + + + + Raise mode: + + + + 6 + + + 0 + + + 6 + + + 4 + + + 2 + + + + + Always double blinds + + + true + + + + + + + Manual blinds order: + + + + + + + false + + + Edit ... + + + + + + + + + + + + + + Delay between hands: + + + spinBox_netDelayBetweenHands + + + + + + + s + + + 5 + + + 20 + + + 1 + + + 7 + + + + + + + + + + + Timeout for player action: + + + spinBox_netTimeOutPlayerAction + + + + + + + s + + + 5 + + + 60 + + + 20 + + + + + + + + + Network Server Settings + + + + + + + + Server Port: + + + spinBox_serverPort + + + + + + + + 0 + 0 + + + + 80 + + + 65535 + + + 7234 + + + + + + + + + Use IPv6 + + + + + + + <a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a> + + + true + + + + + + + Use SCTP + + + + + + + <a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">What is this?</a> + + + true + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + QLabel { font-weight: bold; } + + + Internet Game Settings + + + + + + + Qt::Horizontal + + + + + + + 0 + + + + Server + + + + + + Automatic Server Configuration URL + + + true + + + + + + Serverlist Address: + + + + + + + + + + + + + + 0 + 116 + + + + Manual Server Configuration + + + true + + + false + + + + + + Server Address: + + + lineEdit_InternetServerAddress + + + + + + + 60 + + + + + + + Server Port: + + + spinBox_InternetServerPort + + + + + + + 80 + + + 65535 + + + 7234 + + + + + + + Avatar Server: + + + + + + + + + + + + Use IPv6 + + + + + + + <a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a> + + + true + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Use SCTP + + + + + + + <a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">What is this?</a> + + + true + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + + + + Game + + + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style="font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Note: Default </span><span style=" font-weight:600; font-style:italic;">Game Settings</span><span style=" font-style:italic;"> like "Maximum number of players", "Start Cash" and "Small Blind" will be used </span><span style=" font-weight:600; font-style:italic;">from Network Game Settings.</span></p></body></html> + + + true + + + + + + + + + Default game name: + + + + + + + + + + + + + + Default game type: + + + + + + + + 0 + 0 + + + + + Standard + + + + :/gfx/player_play.png:/gfx/player_play.png + + + + + Registered players only + + + + :/gfx/registered.png:/gfx/registered.png + + + + + Invited players only + + + + :/gfx/list_add_user.png:/gfx/list_add_user.png + + + + + Ranking game + + + + :/gfx/cup.png:/gfx/cup.png + + + + + + + + + + 0 + + + + + Use password for private game: + + + + :/gfx/lock.png:/gfx/lock.png + + + + + + + false + + + QLineEdit::Password + + + + + + + + + Show lobby chat + + + + + + + Qt::Vertical + + + + 437 + 72 + + + + + + + + Automatically leave the table after the game finished + + + + + + + + Ignored Players + + + + + + true + + + 5 + + + false + + + true + + + + Player + + + + + + + + Remove Player + + + + :/gfx/list-remove.png:/gfx/list-remove.png + + + + + + + + + + + Qt::Vertical + + + + 20 + 121 + + + + + + + + + + 1 + + + 8 + + + + + QLabel { font-weight: bold; } + + + Player Nicks/Avatars + + + + + + + Qt::Horizontal + + + + + + + 0 + + + + + Qt::Horizontal + + + + 0 + 0 + + + + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-weight:400; font-style:normal;"> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Human Player:<br /><span style=" font-style:italic;">(This nick will also be used for the online game login)</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + + 0 + 0 + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + 60 + 60 + + + + + 60 + 60 + + + + + + + + 50 + 50 + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + Qt::Horizontal + + + + 78 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 25 + + + + + 100 + 25 + + + + 12 + + + + + + + Qt::Horizontal + + + + 88 + 20 + + + + + + + + + + Computer Engine + + + + 0 + + + 4 + + + + + + + 0 + + + 0 + + + + + + 0 + 0 + + + + + 100 + 25 + + + + + 100 + 25 + + + + 12 + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + + 100 + 16777215 + + + + Opponent 1: + + + Qt::AlignCenter + + + + + + + 6 + + + 0 + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + 0 + 0 + + + + + 60 + 60 + + + + + 60 + 60 + + + + + 50 + 50 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + + + + 0 + + + 0 + + + + + + 0 + 0 + + + + + 100 + 25 + + + + + 100 + 25 + + + + 12 + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + + 100 + 16777215 + + + + Opponent 2: + + + Qt::AlignCenter + + + + + + + 6 + + + 0 + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + 0 + 0 + + + + + 60 + 60 + + + + + 60 + 60 + + + + + 50 + 50 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + + + + 0 + + + 0 + + + + + + 0 + 0 + + + + + 100 + 0 + + + + + 100 + 16777215 + + + + Opponent 3: + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + 100 + 25 + + + + + 100 + 25 + + + + 12 + + + + + + + 6 + + + 0 + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + 0 + 0 + + + + + 60 + 60 + + + + + 60 + 60 + + + + + 50 + 50 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + + + + 0 + + + 0 + + + + + + 0 + 0 + + + + + 100 + 25 + + + + + 100 + 25 + + + + 12 + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + + 100 + 16777215 + + + + Opponent 4: + + + Qt::AlignCenter + + + + + + + 6 + + + 0 + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + 0 + 0 + + + + + 60 + 60 + + + + + 60 + 60 + + + + + 50 + 50 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + + + + 0 + + + 0 + + + + + + 0 + 0 + + + + + 100 + 0 + + + + + 100 + 16777215 + + + + Opponent 5: + + + Qt::AlignCenter + + + + + + + 6 + + + 0 + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + 0 + 0 + + + + + 60 + 60 + + + + + 60 + 60 + + + + + 50 + 50 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + + + 0 + 0 + + + + + 100 + 25 + + + + + 100 + 25 + + + + 12 + + + + + + + + + + + + + 0 + + + 0 + + + + + 6 + + + 0 + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + 0 + 0 + + + + + 60 + 60 + + + + + 60 + 60 + + + + + 50 + 50 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + + + 0 + 0 + + + + + 100 + 25 + + + + + 100 + 25 + + + + 12 + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + + 100 + 16777215 + + + + Opponent 6: + + + Qt::AlignCenter + + + + + + + + + 0 + + + 0 + + + + + 6 + + + 0 + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + 0 + 0 + + + + + 60 + 60 + + + + + 60 + 60 + + + + + 50 + 50 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + + + 0 + 0 + + + + + 100 + 25 + + + + + 100 + 25 + + + + 12 + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + + 100 + 16777215 + + + + Opponent 7: + + + Qt::AlignCenter + + + + + + + + + 0 + + + 0 + + + + + 6 + + + 0 + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + 0 + 0 + + + + + 60 + 60 + + + + + 60 + 60 + + + + + 50 + 50 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + + + 0 + 0 + + + + + 100 + 25 + + + + + 100 + 25 + + + + 12 + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + + 100 + 16777215 + + + + Opponent 8: + + + Qt::AlignCenter + + + + + + + + + 0 + + + 0 + + + + + 6 + + + 0 + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + 0 + 0 + + + + + 60 + 60 + + + + + 60 + 60 + + + + + 50 + 50 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 3 + 20 + + + + + + + + + + + 0 + 0 + + + + + 100 + 25 + + + + + 100 + 25 + + + + 12 + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + + 100 + 16777215 + + + + Opponent 9: + + + Qt::AlignCenter + + + + + + + + + + + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style="font-weight:400; font-style:normal; text-decoration:none;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Note: Best avatar quality with image ratio like </span><span style=" font-weight:600; font-style:italic;">width=50, height=50.</span></p></body></html> + + + true + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + QLabel { font-weight: bold; } + + + Log Messages + + + + + + + Qt::Horizontal + + + + + + + Enable/Disable Logging + + + true + + + true + + + + + + + 0 + 0 + + + + Store log files for: + + + spinBox_logStoreDuration + + + + + + + + 0 + 0 + + + + Day(s) + + + 1 + + + 7 + + + 2 + + + + + + + + 0 + 0 + + + + Write log after every: + + + false + + + comboBox_logInterval + + + + + + + + 0 + 0 + + + + + action (high frequent disc access) + + + + + hand (medium disc access) + + + + + game (low disc access) + + + + + + + + + 0 + 0 + + + + Log File Directory: + + + lineEdit_logDir + + + + + + + 2 + + + + + + + + + 27 + 26 + + + + + 27 + 26 + + + + + :/gfx/document-open-folder.png:/gfx/document-open-folder.png + + + + + + + + + + + + + + + 0 + 0 + + + + true + + + 5 + + + false + + + true + + + + Log File + + + + + + + + + + Preview: + + + + + + + + 0 + 0 + + + + + + + + + + + + + + Export as HTML + + + + :/gfx/text-html.png:/gfx/text-html.png + + + + + + + Export as txt + + + + :/gfx/text-plain.png:/gfx/text-plain.png + + + + + + + Save as ... + + + + :/gfx/filesave.png:/gfx/filesave.png + + + + + + + Delete + + + + :/gfx/editdelete.png:/gfx/editdelete.png + + + + + + + + + + + + + + 75 + true + + + + Factory Settings + + + + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 269 + 40 + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + 300 + 60 + + + + + 75 + true + + + + Reset all settings to default ... + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + Qt::Vertical + + + + 269 + 292 + + + + + + + + Qt::Horizontal + + + + + + + + true + + + + Note: You can not reset all settings to default during a running game! + + + + + + + + + + + + + Qt::Horizontal + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + + MyHPAvatarButton + QPushButton +
myhpavatarbutton.h
+
+ + MyAvatarButton + QPushButton +
myavatarbutton.h
+
+
+ + listWidget + comboBox_switchLanguage + checkBox_showRightToolbox + checkBox_showLeftToolbox + checkBox_showFadeOutCardsAnimation + checkBox_showFlipCardsAnimation + checkBox_alternateFKeysUserActionMode + checkBox_showBlindButtons + checkBox_cardsChanceMonitor + checkBox_antiPeekMode + checkBox_disableSplashscreen + checkBox_dontTranslatePokerStrings + checkBox_enableBetInputFocusSwitch + tabWidget + treeWidget_gameTableStyles + pushButton_addGameTableStyle + pushButton_removeGameTableStyle + treeWidget_cardDeckStyles + pushButton_addCardDeckStyle + pushButton_removeCardDeckStyle + radioButton_flipsideTux + radioButton_flipsideOwn + lineEdit_OwnFlipsideFilename + pushButton_openFlipsidePicture + groupBox_playSoundEffects + horizontalSlider_soundVolume + checkBox_playGameActions + checkBox_playLobbyChatNotification + checkBox_playNetworkGameNotification + spinBox_quantityPlayers + spinBox_startCash + spinBox_firstSmallBlind + radioButton_raiseBlindsAtHands + spinBox_raiseSmallBlindEveryHands + radioButton_raiseBlindsAtMinutes + spinBox_raiseSmallBlindEveryMinutes + radioButton_alwaysDoubleBlinds + radioButton_manualBlindsOrder + pushButton_editManualBlindsOrder + spinBox_gameSpeed + checkBox_pauseBetweenHands + checkBox_showGameSettingsDialogOnNewGame + spinBox_netQuantityPlayers + spinBox_netStartCash + spinBox_netFirstSmallBlind + radioButton_netRaiseBlindsAtHands + spinBox_netRaiseSmallBlindEveryHands + radioButton_netRaiseBlindsAtMinutes + spinBox_netRaiseSmallBlindEveryMinutes + radioButton_netAlwaysDoubleBlinds + radioButton_netManualBlindsOrder + pushButton_netEditManualBlindsOrder + spinBox_netDelayBetweenHands + spinBox_netTimeOutPlayerAction + spinBox_serverPort + checkBox_useIpv6 + checkBox_useSctp + tabWidget_2 + groupBox_automaticServerConfig + lineEdit_InternetServerListAddress + groupBox_manualServerConfig + lineEdit_InternetServerAddress + spinBox_InternetServerPort + checkBox_useAvatarServer + lineEdit_avatarServerAddress + checkBox_InternetServerUseIpv6 + checkBox_InternetServerUseSctp + lineEdit_internetGameName + comboBox_internetGameType + checkBox_UseInternetGamePassword + lineEdit_InternetGamePassword + checkBox_UseLobbyChat + treeWidget_internetGameIgnoredPlayers + pushButton_internetGameRemoveIgnoredPlayer + pushButton_HumanPlayerAvatar + lineEdit_HumanPlayerName + pushButton_Opponent1Avatar + lineEdit_Opponent1Name + pushButton_Opponent2Avatar + lineEdit_Opponent2Name + pushButton_Opponent3Avatar + lineEdit_Opponent3Name + pushButton_Opponent4Avatar + lineEdit_Opponent4Name + pushButton_Opponent5Avatar + lineEdit_Opponent5Name + pushButton_Opponent6Avatar + lineEdit_Opponent6Name + pushButton_Opponent7Avatar + lineEdit_Opponent7Name + pushButton_Opponent8Avatar + lineEdit_Opponent8Name + pushButton_Opponent9Avatar + lineEdit_Opponent9Name + groupBox_logOnOff + spinBox_logStoreDuration + comboBox_logInterval + lineEdit_logDir + pushButton_openLogDir + pushButton_exportLogHtml + pushButton_exportLogTxt + pushButton_saveLogAs + pushButton_deleteLog + buttonBox + + + + + + + listWidget + currentRowChanged(int) + stackedWidget + setCurrentIndex(int) + + + 127 + 60 + + + 281 + 85 + + + + + buttonBox + rejected() + settingsDialog + reject() + + + 595 + 520 + + + 599 + 497 + + + + + horizontalSlider_soundVolume + valueChanged(int) + label_soundVolume + setNum(int) + + + 765 + 92 + + + 322 + 92 + + + + + radioButton_manualBlindsOrder + toggled(bool) + pushButton_editManualBlindsOrder + setEnabled(bool) + + + 765 + 212 + + + 765 + 242 + + + + + radioButton_netManualBlindsOrder + toggled(bool) + pushButton_netEditManualBlindsOrder + setEnabled(bool) + + + 763 + 212 + + + 763 + 236 + + + + + radioButton_flipsideOwn + toggled(bool) + lineEdit_OwnFlipsideFilename + setEnabled(bool) + + + 296 + 109 + + + 381 + 110 + + + + + radioButton_flipsideOwn + toggled(bool) + pushButton_openFlipsidePicture + setEnabled(bool) + + + 309 + 108 + + + 747 + 103 + + + + +
diff --git a/src/gui/qt/gui_800x480/startnetworkgamedialog_800x480.ui b/src/gui/qt/gui_800x480/startnetworkgamedialog_800x480.ui new file mode 100644 index 00000000..26f1330d --- /dev/null +++ b/src/gui/qt/gui_800x480/startnetworkgamedialog_800x480.ui @@ -0,0 +1,217 @@ + + startNetworkGameDialog + + + + 0 + 0 + 403 + 560 + + + + Start Network Game + + + + + + + Connected Players + + + + + + + + Fill up with computer opponents + + + + + + + 6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + Maximum number of players: + + + + + + + 0 + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Kick Player + + + + + + + + + Chat + + + + 7 + + + 7 + + + 7 + + + 7 + + + 0 + + + 0 + + + + + + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + Qt::Horizontal + + + + 181 + 20 + + + + + + + + Start Game + + + + + + + Cancel + + + + + + + + + treeWidget + checkBox_fillUpWithComputerOpponents + pushButton_Kick + textBrowser_ChatDisplay + lineEdit_ChatInput + pushButton_startGame + pushButton_cancel + + + + + pushButton_startGame + clicked() + startNetworkGameDialog + accept() + + + 140 + 213 + + + 75 + 211 + + + + + pushButton_cancel + clicked() + startNetworkGameDialog + reject() + + + 235 + 220 + + + 276 + 163 + + + + + diff --git a/src/gui/qt/gui_800x480/startwindow_800x480.ui b/src/gui/qt/gui_800x480/startwindow_800x480.ui index da27ee60..34b25b0c 100755 --- a/src/gui/qt/gui_800x480/startwindow_800x480.ui +++ b/src/gui/qt/gui_800x480/startwindow_800x480.ui @@ -6,41 +6,26 @@ 0 0 - 800 - 448 + 450 + 350 - 800 - 448 + 450 + 350 - 800 - 448 + 450 + 350 PokerTH - The Open-Source Texas Holdem Engine - - - - - - 800 - 424 - - - - - 800 - 424 - - @@ -78,32 +63,9 @@ 0 - - - 350 - 80 - - - - - 350 - 80 - - - - - -1 - 75 - false - true - - Qt::NoFocus - - QPushButton { text-align:left; font: bold 20px; padding-left: 3px; padding-bottom: 3px; padding-top: 3px; padding-right: 3px;} - &1 Start Local Game @@ -127,32 +89,9 @@ 0 - - - 350 - 80 - - - - - 350 - 80 - - - - - -1 - 75 - false - true - - Qt::NoFocus - - QPushButton { text-align:left; font: bold 20px; padding-left: 3px; padding-bottom: 3px; padding-top: 3px; padding-right: 3px;} - &2 Internet Game @@ -168,7 +107,7 @@ - + @@ -176,32 +115,9 @@ 0 - - - 350 - 80 - - - - - 350 - 80 - - - - - -1 - 75 - false - true - - Qt::NoFocus - - QPushButton { text-align:left; font: bold 20px; padding-left: 3px; padding-bottom: 3px; padding-top: 3px; padding-right: 3px;} - &3 Create Network Game @@ -217,7 +133,7 @@ - + @@ -225,37 +141,11 @@ 0 - - - 350 - 80 - - - - - 350 - 80 - - - - - -1 - 75 - false - true - - Qt::NoFocus - - Qt::LeftToRight - - - false - - QPushButton { text-align:left; font: bold 20px; padding-left: 3px; padding-bottom: 3px; padding-top: 3px; padding-right: 3px;} + &4 Join Network Game @@ -270,12 +160,6 @@ 32 - - false - - - false - @@ -313,26 +197,28 @@ 0 0 - 800 - 34 + 450 + 20 - - QObject {font-size: 20px} - - - - &PokerTH + + + Network Game + + + + + + + + - - - &Settings @@ -367,20 +253,11 @@ - - false - About PokerTH - - - - - false - :/gfx/systemsettings.png:/gfx/systemsettings.png @@ -388,9 +265,6 @@ Configure PokerTH ... - - - diff --git a/src/gui/qt/internetgamelogindialog/internetgamelogindialogimpl.h b/src/gui/qt/internetgamelogindialog/internetgamelogindialogimpl.h index 71b31b1f..c267c174 100644 --- a/src/gui/qt/internetgamelogindialog/internetgamelogindialogimpl.h +++ b/src/gui/qt/internetgamelogindialog/internetgamelogindialogimpl.h @@ -18,7 +18,11 @@ #ifndef INTERNETGAMELOGINDIALOGIMPL_H #define INTERNETGAMELOGINDIALOGIMPL_H +#ifdef GUI_800x480 +#include "ui_internetgamelogindialog_800x480.h" +#else #include "ui_internetgamelogindialog.h" +#endif class ConfigFile; diff --git a/src/gui/qt/joinnetworkgamedialog/joinnetworkgamedialogimpl.h b/src/gui/qt/joinnetworkgamedialog/joinnetworkgamedialogimpl.h index ac0e8c1a..335bdac3 100644 --- a/src/gui/qt/joinnetworkgamedialog/joinnetworkgamedialogimpl.h +++ b/src/gui/qt/joinnetworkgamedialog/joinnetworkgamedialogimpl.h @@ -18,7 +18,11 @@ #ifndef JOINNETWORKGAMEDIALOGIMPL_H #define JOINNETWORKGAMEDIALOGIMPL_H +#ifdef GUI_800x480 +#include "ui_joinnetworkgamedialog_800x480.h" +#else #include "ui_joinnetworkgamedialog.h" +#endif #include #include "configfile.h" diff --git a/src/gui/qt/mymessagedialog/mymessagedialogimpl.h b/src/gui/qt/mymessagedialog/mymessagedialogimpl.h index bcafb9a5..da99e053 100644 --- a/src/gui/qt/mymessagedialog/mymessagedialogimpl.h +++ b/src/gui/qt/mymessagedialog/mymessagedialogimpl.h @@ -18,7 +18,11 @@ #ifndef MYMESSAGEDIALOGIMPL_H #define MYMESSAGEDIALOGIMPL_H +#ifdef GUI_800x480 +#include "ui_mymessagedialog_800x480.h" +#else #include "ui_mymessagedialog.h" +#endif class ConfigFile; diff --git a/src/gui/qt/newlocalgamedialog/newgamedialogimpl.h b/src/gui/qt/newlocalgamedialog/newgamedialogimpl.h index 2a6e9553..7fe4b0fb 100755 --- a/src/gui/qt/newlocalgamedialog/newgamedialogimpl.h +++ b/src/gui/qt/newlocalgamedialog/newgamedialogimpl.h @@ -18,7 +18,11 @@ #ifndef NEWGAMEDIALOGIMPL_H #define NEWGAMEDIALOGIMPL_H +#ifdef GUI_800x480 +#include "ui_newgamedialog_800x480.h" +#else #include "ui_newgamedialog.h" +#endif #include #include diff --git a/src/gui/qt/serverlistdialog/serverlistdialogimpl.h b/src/gui/qt/serverlistdialog/serverlistdialogimpl.h index 01bc382e..364ff922 100644 --- a/src/gui/qt/serverlistdialog/serverlistdialogimpl.h +++ b/src/gui/qt/serverlistdialog/serverlistdialogimpl.h @@ -18,7 +18,11 @@ #ifndef SERVERLISTDIALOGIMPL_H #define SERVERLISTDIALOGIMPL_H +#ifdef GUI_800x480 +#include "ui_serverlistdialog_800x480.h" +#else #include "ui_serverlistdialog.h" +#endif #include #include diff --git a/src/gui/qt/settingsdialog/manualblindsorderdialog/manualblindsorderdialogimpl.h b/src/gui/qt/settingsdialog/manualblindsorderdialog/manualblindsorderdialogimpl.h index 27d50d81..280e2438 100644 --- a/src/gui/qt/settingsdialog/manualblindsorderdialog/manualblindsorderdialogimpl.h +++ b/src/gui/qt/settingsdialog/manualblindsorderdialog/manualblindsorderdialogimpl.h @@ -18,7 +18,11 @@ #ifndef MANUALBLINDSORDERDIALOGIMPL_H #define MANUALBLINDSORDERDIALOGIMPL_H +#ifdef GUI_800x480 +#include "ui_manualblindsorderdialog_800x480.h" +#else #include "ui_manualblindsorderdialog.h" +#endif #include #include diff --git a/src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.h b/src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.h index 3f4a8c05..207796ea 100644 --- a/src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.h +++ b/src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.h @@ -18,7 +18,11 @@ #ifndef SELECTAVATARDIALOGIMPL_H #define SELECTAVATARDIALOGIMPL_H +#ifdef GUI_800x480 +#include "ui_selectavatardialog_800x480.h" +#else #include "ui_selectavatardialog.h" +#endif #include #include diff --git a/src/gui/qt/settingsdialog/settingsdialogimpl.cpp b/src/gui/qt/settingsdialog/settingsdialogimpl.cpp index b383c36a..deea5e82 100644 --- a/src/gui/qt/settingsdialog/settingsdialogimpl.cpp +++ b/src/gui/qt/settingsdialog/settingsdialogimpl.cpp @@ -899,9 +899,9 @@ void settingsDialogImpl::setLogDir() lineEdit_logDir->setText(dir); refreshLogFileList(); QMessageBox::information(this, tr("Settings Information"), - tr("You have changed the log file directory.\n" - "Please restart PokerTH to use the new directory for the log files!"), - QMessageBox::Ok); + tr("You have changed the log file directory.\n" + "Please restart PokerTH to use the new directory for the log files!"), + QMessageBox::Ok); } else { QMessageBox::warning(this, tr("Settings Error"), tr("The log file directory doesn't exist.\n" @@ -1356,8 +1356,8 @@ void settingsDialogImpl::exportLogToHtml() if(selectedItem) { QFileInfo fi(selectedItem->text(0)); QString fileName = QFileDialog::getSaveFileName(this, tr("Export PokerTH log file to HTML"), - QDir::homePath()+"/"+fi.baseName()+".html", - tr("PokerTH HTML log (*.html)")); + QDir::homePath()+"/"+fi.baseName()+".html", + tr("PokerTH HTML log (*.html)")); if(!fileName.isEmpty()) { myGuiLog->exportLogPdbToHtml(selectedItem->data(0, Qt::UserRole).toString(),fileName); diff --git a/src/gui/qt/settingsdialog/settingsdialogimpl.h b/src/gui/qt/settingsdialog/settingsdialogimpl.h index 29daa7d3..c9fbe233 100644 --- a/src/gui/qt/settingsdialog/settingsdialogimpl.h +++ b/src/gui/qt/settingsdialog/settingsdialogimpl.h @@ -18,7 +18,11 @@ #ifndef SETTINGSDIALOGIMPL_H #define SETTINGSDIALOGIMPL_H +#ifdef GUI_800x480 +#include "ui_settingsdialog_800x480.h" +#else #include "ui_settingsdialog.h" +#endif #include "selectavatardialogimpl.h" #include "manualblindsorderdialogimpl.h" diff --git a/src/gui/qt/startnetworkgamedialog/startnetworkgamedialogimpl.h b/src/gui/qt/startnetworkgamedialog/startnetworkgamedialogimpl.h index 81755643..6fe65c17 100644 --- a/src/gui/qt/startnetworkgamedialog/startnetworkgamedialogimpl.h +++ b/src/gui/qt/startnetworkgamedialog/startnetworkgamedialogimpl.h @@ -18,7 +18,11 @@ #ifndef STARTNETWORKGAMEDIALOGIMPL_H #define STARTNETWORKGAMEDIALOGIMPL_H +#ifdef GUI_800x480 +#include "ui_startnetworkgamedialog_800x480.h" +#else #include "ui_startnetworkgamedialog.h" +#endif #include #include diff --git a/src/gui/qt/startwindow.ui b/src/gui/qt/startwindow.ui index be86f5f6..34b25b0c 100644 --- a/src/gui/qt/startwindow.ui +++ b/src/gui/qt/startwindow.ui @@ -23,7 +23,7 @@ - PokerTH 0.6.3 - The Open-Source Texas Holdem Engine + PokerTH - The Open-Source Texas Holdem Engine @@ -198,7 +198,7 @@ 0 0 450 - 26 + 20