Fix Android packages for 1.1 final #243
This commit is contained in:
@@ -71,6 +71,7 @@ aboutPokerthImpl::aboutPokerthImpl(QWidget *parent, ConfigFile *c)
|
|||||||
|
|
||||||
#ifdef ANDROID
|
#ifdef ANDROID
|
||||||
int api = -2;
|
int api = -2;
|
||||||
|
this->setWindowState(Qt::WindowFullScreen);
|
||||||
#ifndef ANDROID_TEST
|
#ifndef ANDROID_TEST
|
||||||
JavaVM *currVM = (JavaVM *)QApplication::platformNativeInterface()->nativeResourceForIntegration("JavaVM");
|
JavaVM *currVM = (JavaVM *)QApplication::platformNativeInterface()->nativeResourceForIntegration("JavaVM");
|
||||||
JNIEnv* env;
|
JNIEnv* env;
|
||||||
|
|||||||
@@ -43,11 +43,13 @@ changeCompleteBlindsDialogImpl::changeCompleteBlindsDialogImpl(QWidget *parent,
|
|||||||
#endif
|
#endif
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
this->installEventFilter(this);
|
this->installEventFilter(this);
|
||||||
|
#ifdef ANDROID
|
||||||
|
this->setWindowState(Qt::WindowFullScreen);
|
||||||
|
#endif
|
||||||
|
|
||||||
connect( pushButton_add, SIGNAL( clicked() ), this, SLOT( addBlindValueToList() ) );
|
connect( pushButton_add, SIGNAL( clicked() ), this, SLOT( addBlindValueToList() ) );
|
||||||
connect( pushButton_delete, SIGNAL( clicked() ), this, SLOT( removeBlindFromList() ) );
|
connect( pushButton_delete, SIGNAL( clicked() ), this, SLOT( removeBlindFromList() ) );
|
||||||
connect( spinBox_firstSmallBlind, SIGNAL( valueChanged(int) ), this, SLOT( updateSpinBoxInputMinimum(int) ) );
|
connect( spinBox_firstSmallBlind, SIGNAL( valueChanged(int) ), this, SLOT( updateSpinBoxInputMinimum(int) ) );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int changeCompleteBlindsDialogImpl::exec()
|
int changeCompleteBlindsDialogImpl::exec()
|
||||||
|
|||||||
@@ -43,6 +43,9 @@ changeContentDialogImpl::changeContentDialogImpl(QWidget *parent, ConfigFile *co
|
|||||||
#endif
|
#endif
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
this->installEventFilter(this);
|
this->installEventFilter(this);
|
||||||
|
#ifdef ANDROID
|
||||||
|
this->setWindowState(Qt::WindowFullScreen);
|
||||||
|
#endif
|
||||||
|
|
||||||
switch (myType) {
|
switch (myType) {
|
||||||
case CHANGE_HUMAN_PLAYER_NAME: {
|
case CHANGE_HUMAN_PLAYER_NAME: {
|
||||||
@@ -86,7 +89,6 @@ changeContentDialogImpl::changeContentDialogImpl(QWidget *parent, ConfigFile *co
|
|||||||
}
|
}
|
||||||
|
|
||||||
connect(this, SIGNAL(accepted ()), this, SLOT(saveContent()));
|
connect(this, SIGNAL(accepted ()), this, SLOT(saveContent()));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void changeContentDialogImpl::saveContent()
|
void changeContentDialogImpl::saveContent()
|
||||||
|
|||||||
@@ -39,6 +39,9 @@ connectToServerDialogImpl::connectToServerDialogImpl(QWidget *parent)
|
|||||||
setWindowFlags(Qt::WindowSystemMenuHint | Qt::CustomizeWindowHint | Qt::Dialog);
|
setWindowFlags(Qt::WindowSystemMenuHint | Qt::CustomizeWindowHint | Qt::Dialog);
|
||||||
#endif
|
#endif
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
|
#ifdef ANDROID
|
||||||
|
this->setWindowState(Qt::WindowFullScreen);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
int connectToServerDialogImpl::exec()
|
int connectToServerDialogImpl::exec()
|
||||||
|
|||||||
@@ -44,16 +44,16 @@ createInternetGameDialogImpl::createInternetGameDialogImpl(QWidget *parent, Conf
|
|||||||
#endif
|
#endif
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
this->installEventFilter(this);
|
this->installEventFilter(this);
|
||||||
|
#ifdef ANDROID
|
||||||
|
this->setWindowState(Qt::WindowFullScreen);
|
||||||
|
#endif
|
||||||
spinBox_netDelayBetweenHands->installEventFilter(this);
|
spinBox_netDelayBetweenHands->installEventFilter(this);
|
||||||
spinBox_netTimeOutPlayerAction->installEventFilter(this);
|
spinBox_netTimeOutPlayerAction->installEventFilter(this);
|
||||||
|
|
||||||
comboBox_gameType->setItemData(0, GAME_TYPE_NORMAL, Qt::UserRole);
|
comboBox_gameType->setItemData(0, GAME_TYPE_NORMAL, Qt::UserRole);
|
||||||
comboBox_gameType->setItemData(1, GAME_TYPE_REGISTERED_ONLY, Qt::UserRole);
|
comboBox_gameType->setItemData(1, GAME_TYPE_REGISTERED_ONLY, Qt::UserRole);
|
||||||
comboBox_gameType->setItemData(2, GAME_TYPE_INVITE_ONLY, Qt::UserRole);
|
comboBox_gameType->setItemData(2, GAME_TYPE_INVITE_ONLY, Qt::UserRole);
|
||||||
comboBox_gameType->setItemData(3, GAME_TYPE_RANKING, Qt::UserRole);
|
comboBox_gameType->setItemData(3, GAME_TYPE_RANKING, Qt::UserRole);
|
||||||
|
|
||||||
myChangeCompleteBlindsDialog = new changeCompleteBlindsDialogImpl;
|
myChangeCompleteBlindsDialog = new changeCompleteBlindsDialogImpl;
|
||||||
|
|
||||||
startBlind = new QLabel(tr("<i>First small blind: $%1</i>").arg(RANKING_GAME_START_SBLIND));
|
startBlind = new QLabel(tr("<i>First small blind: $%1</i>").arg(RANKING_GAME_START_SBLIND));
|
||||||
raiseMode = new QLabel(tr("<i>Double blinds every %1'th hand</i>").arg(RANKING_GAME_RAISE_EVERY_HAND));
|
raiseMode = new QLabel(tr("<i>Double blinds every %1'th hand</i>").arg(RANKING_GAME_RAISE_EVERY_HAND));
|
||||||
startBlind->hide();
|
startBlind->hide();
|
||||||
@@ -68,7 +68,6 @@ createInternetGameDialogImpl::createInternetGameDialogImpl(QWidget *parent, Conf
|
|||||||
connect( pushButton_createGame, SIGNAL( clicked() ), this, SLOT( createGame() ) );
|
connect( pushButton_createGame, SIGNAL( clicked() ), this, SLOT( createGame() ) );
|
||||||
connect( checkBox_Password, SIGNAL( toggled(bool) ), this, SLOT( clearGamePassword(bool)) );
|
connect( checkBox_Password, SIGNAL( toggled(bool) ), this, SLOT( clearGamePassword(bool)) );
|
||||||
connect( comboBox_gameType, SIGNAL(currentIndexChanged(int)), this, SLOT( gameTypeChanged() ) );
|
connect( comboBox_gameType, SIGNAL(currentIndexChanged(int)), this, SLOT( gameTypeChanged() ) );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -42,9 +42,10 @@ createNetworkGameDialogImpl::createNetworkGameDialogImpl(QWidget *parent, Config
|
|||||||
#endif
|
#endif
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
this->installEventFilter(this);
|
this->installEventFilter(this);
|
||||||
|
#ifdef ANDROID
|
||||||
|
this->setWindowState(Qt::WindowFullScreen);
|
||||||
|
#endif
|
||||||
myChangeCompleteBlindsDialog = new changeCompleteBlindsDialogImpl;
|
myChangeCompleteBlindsDialog = new changeCompleteBlindsDialogImpl;
|
||||||
|
|
||||||
fillFormular();
|
fillFormular();
|
||||||
|
|
||||||
connect( radioButton_changeBlindsSettings, SIGNAL( clicked(bool) ), this, SLOT( callChangeBlindsDialog(bool) ) );
|
connect( radioButton_changeBlindsSettings, SIGNAL( clicked(bool) ), this, SLOT( callChangeBlindsDialog(bool) ) );
|
||||||
@@ -52,7 +53,6 @@ createNetworkGameDialogImpl::createNetworkGameDialogImpl(QWidget *parent, Config
|
|||||||
connect( pushButton_cancel, SIGNAL( clicked() ), this, SLOT( cancel() ) );
|
connect( pushButton_cancel, SIGNAL( clicked() ), this, SLOT( cancel() ) );
|
||||||
#endif
|
#endif
|
||||||
connect( pushButton_createGame, SIGNAL( clicked() ), this, SLOT( createGame() ) );
|
connect( pushButton_createGame, SIGNAL( clicked() ), this, SLOT( createGame() ) );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -55,10 +55,11 @@ gameLobbyDialogImpl::gameLobbyDialogImpl(startWindowImpl *parent, ConfigFile *c)
|
|||||||
#elif _WIN32
|
#elif _WIN32
|
||||||
// setWindowFlags(Qt::Dialog | Qt::WindowMinimizeButtonHint);
|
// setWindowFlags(Qt::Dialog | Qt::WindowMinimizeButtonHint);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
myAppDataPath = QString::fromUtf8(myConfig->readConfigString("AppDataDir").c_str());
|
myAppDataPath = QString::fromUtf8(myConfig->readConfigString("AppDataDir").c_str());
|
||||||
|
#ifdef ANDROID
|
||||||
|
this->setWindowState(Qt::WindowFullScreen);
|
||||||
|
#endif
|
||||||
//wait start game message
|
//wait start game message
|
||||||
waitStartGameMsgBox = new MyMessageBox(this);
|
waitStartGameMsgBox = new MyMessageBox(this);
|
||||||
waitStartGameMsgBox->setText(tr("Starting game. Please wait ..."));
|
waitStartGameMsgBox->setText(tr("Starting game. Please wait ..."));
|
||||||
@@ -130,7 +131,6 @@ gameLobbyDialogImpl::gameLobbyDialogImpl(startWindowImpl *parent, ConfigFile *c)
|
|||||||
myGameListSortFilterProxyModel->setSourceModel(myGameListModel);
|
myGameListSortFilterProxyModel->setSourceModel(myGameListModel);
|
||||||
myGameListSortFilterProxyModel->setDynamicSortFilter(true);
|
myGameListSortFilterProxyModel->setDynamicSortFilter(true);
|
||||||
treeView_GameList->setModel(myGameListSortFilterProxyModel);
|
treeView_GameList->setModel(myGameListSortFilterProxyModel);
|
||||||
|
|
||||||
myGameListSelectionModel = treeView_GameList->selectionModel();
|
myGameListSelectionModel = treeView_GameList->selectionModel();
|
||||||
|
|
||||||
QStringList headerList;
|
QStringList headerList;
|
||||||
@@ -252,9 +252,7 @@ gameLobbyDialogImpl::gameLobbyDialogImpl(startWindowImpl *parent, ConfigFile *c)
|
|||||||
lineEdit_searchForPlayers->installEventFilter(this);
|
lineEdit_searchForPlayers->installEventFilter(this);
|
||||||
lineEdit_ChatInput->installEventFilter(this);
|
lineEdit_ChatInput->installEventFilter(this);
|
||||||
this->installEventFilter(this);
|
this->installEventFilter(this);
|
||||||
|
|
||||||
clearDialog();
|
clearDialog();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int gameLobbyDialogImpl::exec()
|
int gameLobbyDialogImpl::exec()
|
||||||
|
|||||||
@@ -108,6 +108,7 @@ gameTableImpl::gameTableImpl(ConfigFile *c, QMainWindow *parent)
|
|||||||
textLabel_handLabel->hide();
|
textLabel_handLabel->hide();
|
||||||
#ifdef ANDROID
|
#ifdef ANDROID
|
||||||
tabsDiag->setStyleSheet("QObject { font: 26px; } QDialog { background-image: url(:/android/android-data/gfx/gui/table/default_800x480/table_dark.png); background-position: bottom center; background-origin: content; background-repeat: no-repeat;}");
|
tabsDiag->setStyleSheet("QObject { font: 26px; } QDialog { background-image: url(:/android/android-data/gfx/gui/table/default_800x480/table_dark.png); background-position: bottom center; background-origin: content; background-repeat: no-repeat;}");
|
||||||
|
this->setWindowState(Qt::WindowFullScreen);
|
||||||
#endif
|
#endif
|
||||||
tabs.label_chance->setMyStyle(myGameTableStyle);
|
tabs.label_chance->setMyStyle(myGameTableStyle);
|
||||||
#else
|
#else
|
||||||
@@ -4293,9 +4294,6 @@ void gameTableImpl::saveGameTableGeometry()
|
|||||||
|
|
||||||
void gameTableImpl::restoreGameTableGeometry()
|
void gameTableImpl::restoreGameTableGeometry()
|
||||||
{
|
{
|
||||||
#ifdef ANDROID
|
|
||||||
this->showFullScreen();
|
|
||||||
#else
|
|
||||||
if(myConfig->readConfigInt("GameTableFullScreenSave")) {
|
if(myConfig->readConfigInt("GameTableFullScreenSave")) {
|
||||||
#ifndef GUI_800x480
|
#ifndef GUI_800x480
|
||||||
if(actionFullScreen->isEnabled()) this->showFullScreen();
|
if(actionFullScreen->isEnabled()) this->showFullScreen();
|
||||||
@@ -4307,7 +4305,6 @@ void gameTableImpl::restoreGameTableGeometry()
|
|||||||
this->resize(myConfig->readConfigInt("GameTableWidthSave"), myConfig->readConfigInt("GameTableHeightSave"));
|
this->resize(myConfig->readConfigInt("GameTableWidthSave"), myConfig->readConfigInt("GameTableHeightSave"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void gameTableImpl::netClientPlayerLeft(unsigned /*playerId*/)
|
void gameTableImpl::netClientPlayerLeft(unsigned /*playerId*/)
|
||||||
|
|||||||
@@ -39,7 +39,9 @@ internetGameLoginDialogImpl::internetGameLoginDialogImpl(QWidget *parent, Config
|
|||||||
{
|
{
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
this->installEventFilter(this);
|
this->installEventFilter(this);
|
||||||
|
#ifdef ANDROID
|
||||||
|
this->setWindowState(Qt::WindowFullScreen);
|
||||||
|
#endif
|
||||||
//html stuff
|
//html stuff
|
||||||
QString createAccount(QString("<a href='http://create-gaming-account.pokerth.net'>%1</a>").arg(tr("Create new user account")));
|
QString createAccount(QString("<a href='http://create-gaming-account.pokerth.net'>%1</a>").arg(tr("Create new user account")));
|
||||||
label_createAnAccount->setText(createAccount);
|
label_createAnAccount->setText(createAccount);
|
||||||
|
|||||||
@@ -45,7 +45,9 @@ joinNetworkGameDialogImpl::joinNetworkGameDialogImpl(QWidget *parent, ConfigFile
|
|||||||
setWindowFlags(Qt::WindowSystemMenuHint | Qt::CustomizeWindowHint | Qt::Dialog);
|
setWindowFlags(Qt::WindowSystemMenuHint | Qt::CustomizeWindowHint | Qt::Dialog);
|
||||||
#endif
|
#endif
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
|
#ifdef ANDROID
|
||||||
|
this->setWindowState(Qt::WindowFullScreen);
|
||||||
|
#endif
|
||||||
// QShortcut *connectKey = new QShortcut(QKeySequence(Qt::Key_Enter), this);
|
// QShortcut *connectKey = new QShortcut(QKeySequence(Qt::Key_Enter), this);
|
||||||
// connect( connectKey, SIGNAL(activated() ), pushButton_connect, SLOT( click() ) );
|
// connect( connectKey, SIGNAL(activated() ), pushButton_connect, SLOT( click() ) );
|
||||||
|
|
||||||
@@ -305,12 +307,14 @@ void joinNetworkGameDialogImpl::deleteServerProfile()
|
|||||||
|
|
||||||
void joinNetworkGameDialogImpl::keyPressEvent ( QKeyEvent * event )
|
void joinNetworkGameDialogImpl::keyPressEvent ( QKeyEvent * event )
|
||||||
{
|
{
|
||||||
|
|
||||||
#ifndef ANDROID
|
#ifndef ANDROID
|
||||||
if (event->key() == 16777220) {
|
if (event->key() == 16777220) {
|
||||||
pushButton_connect->click(); //ENTER
|
pushButton_connect->click(); //ENTER
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
QDialog::keyPressEvent(event);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void joinNetworkGameDialogImpl::checkIp()
|
void joinNetworkGameDialogImpl::checkIp()
|
||||||
|
|||||||
@@ -48,10 +48,11 @@ LogFileDialog::LogFileDialog(QWidget *parent, ConfigFile *c) :
|
|||||||
ui(new Ui::LogFileDialog)
|
ui(new Ui::LogFileDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
ui->label_animation->setMaximumWidth(0);
|
ui->label_animation->setMaximumWidth(0);
|
||||||
ui->horizontalLayout_animation->setSpacing(0);
|
ui->horizontalLayout_animation->setSpacing(0);
|
||||||
|
#ifdef ANDROID
|
||||||
|
this->setWindowState(Qt::WindowFullScreen);
|
||||||
|
#endif
|
||||||
connect( ui->pushButton_deleteLog, SIGNAL(clicked()), this, SLOT (deleteLogFile()));
|
connect( ui->pushButton_deleteLog, SIGNAL(clicked()), this, SLOT (deleteLogFile()));
|
||||||
connect( ui->pushButton_exportLogHtml, SIGNAL(clicked()), this, SLOT (exportLogToHtml()));
|
connect( ui->pushButton_exportLogHtml, SIGNAL(clicked()), this, SLOT (exportLogToHtml()));
|
||||||
connect( ui->pushButton_exportLogTxt, SIGNAL(clicked()), this, SLOT (exportLogToTxt()));
|
connect( ui->pushButton_exportLogTxt, SIGNAL(clicked()), this, SLOT (exportLogToTxt()));
|
||||||
|
|||||||
@@ -79,6 +79,9 @@ int newGameDialogImpl::exec()
|
|||||||
myChangeCompleteBlindsDialog->spinBox_afterThisAlwaysRaiseValue->setValue(myConfig->readConfigInt("AfterMBAlwaysRaiseValue"));
|
myChangeCompleteBlindsDialog->spinBox_afterThisAlwaysRaiseValue->setValue(myConfig->readConfigInt("AfterMBAlwaysRaiseValue"));
|
||||||
myChangeCompleteBlindsDialog->radioButton_afterThisStayAtLastBlind->setChecked(myConfig->readConfigInt("AfterMBStayAtLastBlind"));
|
myChangeCompleteBlindsDialog->radioButton_afterThisStayAtLastBlind->setChecked(myConfig->readConfigInt("AfterMBStayAtLastBlind"));
|
||||||
|
|
||||||
|
#ifdef ANDROID
|
||||||
|
this->showFullScreen();
|
||||||
|
#endif
|
||||||
return QDialog::exec();
|
return QDialog::exec();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -43,7 +43,9 @@ serverListDialogImpl::serverListDialogImpl(startWindowImpl *sw, QMainWindow *par
|
|||||||
setWindowFlags(Qt::WindowSystemMenuHint | Qt::CustomizeWindowHint | Qt::Dialog);
|
setWindowFlags(Qt::WindowSystemMenuHint | Qt::CustomizeWindowHint | Qt::Dialog);
|
||||||
#endif
|
#endif
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
|
#ifdef ANDROID
|
||||||
|
this->setWindowState(Qt::WindowFullScreen);
|
||||||
|
#endif
|
||||||
connect( treeWidget_serverList, SIGNAL( itemDoubleClicked ( QTreeWidgetItem*, int) ), this, SLOT( connectToServer() ));
|
connect( treeWidget_serverList, SIGNAL( itemDoubleClicked ( QTreeWidgetItem*, int) ), this, SLOT( connectToServer() ));
|
||||||
connect( buttonBox, SIGNAL( accepted() ), this, SLOT( connectToServer() ));
|
connect( buttonBox, SIGNAL( accepted() ), this, SLOT( connectToServer() ));
|
||||||
connect( buttonBox, SIGNAL( rejected() ), this, SLOT( closeNetworkClient() ));
|
connect( buttonBox, SIGNAL( rejected() ), this, SLOT( closeNetworkClient() ));
|
||||||
|
|||||||
@@ -42,7 +42,9 @@ manualBlindsOrderDialogImpl::manualBlindsOrderDialogImpl(QWidget *parent, Config
|
|||||||
setWindowFlags(Qt::WindowSystemMenuHint | Qt::CustomizeWindowHint | Qt::Dialog);
|
setWindowFlags(Qt::WindowSystemMenuHint | Qt::CustomizeWindowHint | Qt::Dialog);
|
||||||
#endif
|
#endif
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
|
#ifdef ANDROID
|
||||||
|
this->setWindowState(Qt::WindowFullScreen);
|
||||||
|
#endif
|
||||||
connect( pushButton_add, SIGNAL( clicked() ), this, SLOT( addBlindValueToList() ) );
|
connect( pushButton_add, SIGNAL( clicked() ), this, SLOT( addBlindValueToList() ) );
|
||||||
connect( pushButton_delete, SIGNAL( clicked() ), this, SLOT( removeBlindFromList() ) );
|
connect( pushButton_delete, SIGNAL( clicked() ), this, SLOT( removeBlindFromList() ) );
|
||||||
|
|
||||||
|
|||||||
@@ -43,7 +43,9 @@ selectAvatarDialogImpl::selectAvatarDialogImpl(QWidget *parent, ConfigFile *c)
|
|||||||
setWindowFlags(Qt::WindowSystemMenuHint | Qt::CustomizeWindowHint | Qt::Dialog);
|
setWindowFlags(Qt::WindowSystemMenuHint | Qt::CustomizeWindowHint | Qt::Dialog);
|
||||||
#endif
|
#endif
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
|
#ifdef ANDROID
|
||||||
|
this->setWindowState(Qt::WindowFullScreen);
|
||||||
|
#endif
|
||||||
myAppDataPath = QString::fromUtf8(myConfig->readConfigString("AppDataDir").c_str());
|
myAppDataPath = QString::fromUtf8(myConfig->readConfigString("AppDataDir").c_str());
|
||||||
|
|
||||||
pushButton_OpenAvatarFile->setIcon(QIcon(QPixmap(myAppDataPath+"gfx/gui/misc/fileopen16.png")));
|
pushButton_OpenAvatarFile->setIcon(QIcon(QPixmap(myAppDataPath+"gfx/gui/misc/fileopen16.png")));
|
||||||
|
|||||||
@@ -55,6 +55,7 @@ settingsDialogImpl::settingsDialogImpl(QWidget *parent, ConfigFile *c, selectAva
|
|||||||
label_soundvol->hide();
|
label_soundvol->hide();
|
||||||
label_soundVolume->hide();
|
label_soundVolume->hide();
|
||||||
horizontalSlider_soundVolume->hide();
|
horizontalSlider_soundVolume->hide();
|
||||||
|
this->setWindowState(Qt::WindowFullScreen);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
myManualBlindsOrderDialog = new manualBlindsOrderDialogImpl;
|
myManualBlindsOrderDialog = new manualBlindsOrderDialogImpl;
|
||||||
|
|||||||
@@ -44,7 +44,9 @@ startNetworkGameDialogImpl::startNetworkGameDialogImpl(startWindowImpl *parent,
|
|||||||
setWindowFlags(Qt::WindowSystemMenuHint | Qt::CustomizeWindowHint | Qt::Dialog);
|
setWindowFlags(Qt::WindowSystemMenuHint | Qt::CustomizeWindowHint | Qt::Dialog);
|
||||||
#endif
|
#endif
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
|
#ifdef ANDROID
|
||||||
|
this->setWindowState(Qt::WindowFullScreen);
|
||||||
|
#endif
|
||||||
myChat = new ChatTools(lineEdit_ChatInput, myConfig, LAN_LOBBY_CHAT, textBrowser_ChatDisplay);
|
myChat = new ChatTools(lineEdit_ChatInput, myConfig, LAN_LOBBY_CHAT, textBrowser_ChatDisplay);
|
||||||
|
|
||||||
lineEdit_ChatInput->installEventFilter(this);
|
lineEdit_ChatInput->installEventFilter(this);
|
||||||
|
|||||||
Reference in New Issue
Block a user