Index: src/gui/qt/mainwindow.ui
===================================================================
--- src/gui/qt/mainwindow.ui	(Revision 238)
+++ src/gui/qt/mainwindow.ui	(Arbeitskopie)
@@ -23,12 +23,6 @@
     <height>670</height>
    </size>
   </property>
-  <property name="maximumSize" >
-   <size>
-    <width>874</width>
-    <height>670</height>
-   </size>
-  </property>
   <property name="palette" >
    <palette>
     <active>
@@ -4191,6 +4185,12 @@
      <height>30</height>
     </rect>
    </property>
+   <widget class="QMenu" name="menuView" >
+    <property name="title" >
+     <string>View</string>
+    </property>
+    <addaction name="actionFullScreen" />
+   </widget>
    <widget class="QMenu" name="menuSpiel" >
     <property name="title" >
      <string>Game</string>
@@ -4203,6 +4203,7 @@
     <addaction name="actionQuit" />
    </widget>
    <addaction name="menuSpiel" />
+   <addaction name="menuView" />
   </widget>
   <widget class="QStatusBar" name="statusbar" />
   <action name="actionNewGame" >
@@ -4238,6 +4239,14 @@
     <string>Join Network Game ...</string>
    </property>
   </action>
+  <action name="actionFullScreen" >
+   <property name="text" >
+    <string>Fullscreen</string>
+   </property>
+   <property name="shortcut" >
+    <string>F</string>
+   </property>
+  </action>
  </widget>
  <tabstops>
   <tabstop>pushButton_raise</tabstop>
Index: src/gui/qt/mainwindow/mainwindowimpl.cpp
===================================================================
--- src/gui/qt/mainwindow/mainwindowimpl.cpp	(Revision 238)
+++ src/gui/qt/mainwindow/mainwindowimpl.cpp	(Arbeitskopie)
@@ -417,10 +417,10 @@
 	statusBar()->showMessage(tr("Ctrl+N to start a new Game"));
 
 	//Dialoge 
-	myJoinNetworkGameDialog = new joinNetworkGameDialogImpl();
-	myConnectToServerDialog = new connectToServerDialogImpl();
-	myStartNetworkGameDialog = new startNetworkGameDialogImpl();
-	myCreateNetworkGameDialog = new createNetworkGameDialogImpl();
+	myJoinNetworkGameDialog = new joinNetworkGameDialogImpl(this);
+	myConnectToServerDialog = new connectToServerDialogImpl(this);
+	myStartNetworkGameDialog = new startNetworkGameDialogImpl(this);
+	myCreateNetworkGameDialog = new createNetworkGameDialogImpl(this);
 
 	//Connects
 	connect(dealFlopCards0Timer, SIGNAL(timeout()), this, SLOT( dealFlopCards1() ));
@@ -461,6 +461,7 @@
 	connect( actionJoin_network_Game, SIGNAL( triggered() ), this, SLOT( callJoinNetworkGameDialog() ) );
 	connect( actionCreate_network_Game, SIGNAL( triggered() ), this, SLOT( callCreateNetworkGameDialog() ) );
 	connect( actionQuit, SIGNAL( triggered() ), qApp, SLOT( quit() ) );
+	connect( actionFullScreen, SIGNAL( triggered() ), this, SLOT( switchFullscreen() ) );
 
 	connect( pushButton_raise, SIGNAL( clicked() ), this, SLOT( myRaise() ) );
 	connect( pushButton_call, SIGNAL( clicked() ), this, SLOT( myCall() ) );
@@ -492,7 +493,7 @@
 
 	if(myConfig->readConfigInt("ShowGameSettingsDialogOnNewGame")){
 
-		newGameDialogImpl *v = new newGameDialogImpl();
+		newGameDialogImpl *v = new newGameDialogImpl(this);
 		v->exec();
 	
 		if (v->result() == QDialog::Accepted ) {
@@ -573,7 +574,7 @@
 
 void mainWindowImpl::callAboutPokerthDialog() {
 
-	aboutPokerthImpl *v = new aboutPokerthImpl();
+	aboutPokerthImpl *v = new aboutPokerthImpl(this);
 	v->exec();
 }
 
@@ -635,7 +636,7 @@
 
 void mainWindowImpl::callSettingsDialog() {
 
-	settingsDialogImpl *v = new settingsDialogImpl();
+	settingsDialogImpl *v = new settingsDialogImpl(this);
 	v->exec();
 		
 	if (v->getSettingsCorrect()) {
@@ -1969,6 +1970,7 @@
 	if (event->key() == 16777220) { if(spinBox_set->hasFocus()) pushButton_set->click(); } //ENTER 
 	if (event->key() == 16777265) { switchLeftToolBox(); } //F2	
 	if (event->key() == 16777266) { switchRightToolBox(); } //F3
+	if (event->key() == Qt::Key_F) { switchFullscreen(); } //f
 	if (event->key() == 16777249) { 
 		pushButton_break->click(); 
 		ctrlPressed = TRUE;
@@ -2009,3 +2011,13 @@
 
 }
 
+void mainWindowImpl::switchFullscreen() {
+
+	if (this->isFullScreen()) {
+		this->showNormal();
+	}
+	else {
+		this->showFullScreen();
+	}
+
+}
Index: src/gui/qt/mainwindow/mainwindowimpl.h
===================================================================
--- src/gui/qt/mainwindow/mainwindowimpl.h	(Revision 238)
+++ src/gui/qt/mainwindow/mainwindowimpl.h	(Arbeitskopie)
@@ -173,6 +173,7 @@
 	void keyPressEvent ( QKeyEvent * event );
 	void switchLeftToolBox();
 	void switchRightToolBox();
+	void switchFullscreen();
 
 	void paintStartSplash();
 

