adds F5 key indikator for show-my-cards-button

This commit is contained in:
doitux
2010-07-10 18:31:14 +00:00
parent f6472e6e94
commit f2dc22324e
3 changed files with 29 additions and 19 deletions
+11 -4
View File
@@ -2645,9 +2645,11 @@ void gameTableImpl::keyPressEvent ( QKeyEvent * event ) {
pushButton_Fold->click();
}
}
if (event->key() == Qt::Key_F5) { radioButton_manualAction->click(); }
if (event->key() == Qt::Key_F6) { radioButton_autoCheckFold->click(); }
if (event->key() == Qt::Key_F7) { radioButton_autoCheckCallAny->click(); }
if (event->key() == Qt::Key_F5) { pushButton_showMyCards->click(); }
if (event->key() == Qt::Key_F6) { radioButton_manualAction->click(); }
if (event->key() == Qt::Key_F7) { radioButton_autoCheckFold->click(); }
if (event->key() == Qt::Key_F8) { radioButton_autoCheckCallAny->click(); }
if (event->key() == Qt::Key_Shift) {
if(myStartWindow->getSession()->getGameType() == Session::GAME_TYPE_LOCAL) {
pushButton_break->click();
@@ -3261,6 +3263,7 @@ void gameTableImpl::refreshCardsChance(GameState bero)
void gameTableImpl::refreshActionButtonFKeyIndicator(bool clear)
{
if(clear) {
pushButton_showMyCards->setFKeyText("");
pushButton_AllIn->setFKeyText("");
pushButton_BetRaise->setFKeyText("");
pushButton_CallCheck->setFKeyText("");
@@ -3279,6 +3282,7 @@ void gameTableImpl::refreshActionButtonFKeyIndicator(bool clear)
if(!pushButton_CallCheck->text().isEmpty()) pushButton_CallCheck->setFKeyText("F3");
if(!pushButton_Fold->text().isEmpty()) pushButton_Fold->setFKeyText("F4");
}
if(!pushButton_showMyCards->text().isEmpty()) pushButton_showMyCards->setFKeyText("F5");
}
}
@@ -3453,5 +3457,8 @@ void gameTableImpl::showShowMyCardsButton()
void gameTableImpl::sendShowMyCardsSignal()
{
pushButton_showMyCards->hide();
if(pushButton_showMyCards->isVisible()) {
qDebug() << "show!";
pushButton_showMyCards->hide();
}
}