next startwindow steps

This commit is contained in:
doitux
2008-06-08 10:50:08 +00:00
parent 0c98902905
commit 0cf73d2bc9
7 changed files with 38 additions and 291 deletions
+13 -13
View File
@@ -111,9 +111,9 @@ gameTableImpl::gameTableImpl(ConfigFile *c, QMainWindow *parent)
}
//Intro abspielen?
if (myConfig->readConfigInt("ShowIntro")) {
// label_logo->hide();
QTimer::singleShot(100, this, SLOT( paintStartSplash() )); }
// if (myConfig->readConfigInt("ShowIntro")) {
// // label_logo->hide();
// QTimer::singleShot(100, this, SLOT( paintStartSplash() )); }
// userWidgetsArray init
userWidgetsArray[0] = pushButton_BetRaise;
@@ -3045,16 +3045,16 @@ void gameTableImpl::breakButtonClicked() {
void gameTableImpl::paintStartSplash() {
StartSplash *mySplash = new StartSplash(this, myConfig);
#ifdef __APPLE__
int offset = 305;
#else
int offset = 237;
#endif
mySplash->setGeometry(this->pos().x()+offset,this->pos().y()+210,400,250);
// mySplash->setWindowFlags(Qt::SplashScreen);
mySplash->show();
// StartSplash *mySplash = new StartSplash(this, myConfig);
//
// #ifdef __APPLE__
// int offset = 305;
// #else
// int offset = 237;
// #endif
// mySplash->setGeometry(this->pos().x()+offset,this->pos().y()+210,400,250);
// // mySplash->setWindowFlags(Qt::SplashScreen);
// mySplash->show();
}