QTfrontend/ui/page/pagenetgame.cpp
changeset 7015 08642c7da4a3
parent 6952 7f70f37bbf08
child 7720 8e6b79a020f8
--- a/QTfrontend/ui/page/pagenetgame.cpp	Thu May 03 12:33:08 2012 +0200
+++ b/QTfrontend/ui/page/pagenetgame.cpp	Thu May 03 13:25:40 2012 +0200
@@ -63,6 +63,9 @@
 {
     QHBoxLayout * bottomLayout = new QHBoxLayout;
 
+    btnDLC = addButton(tr("DLC"), bottomLayout, 0);
+    btnDLC->setWhatsThis(tr("Downloadable Content"));
+
     leRoomName = new HistoryLineEdit(this,10);
     leRoomName->setMaxLength(60);
     leRoomName->setMinimumWidth(200);
@@ -77,21 +80,23 @@
     BtnGo->setMinimumHeight(50);
 
     bottomLayout->addWidget(leRoomName);
-    BtnUpdate = addButton(QAction::tr("Update"), bottomLayout, 1);
+    BtnUpdate = addButton(QAction::tr("Update"), bottomLayout, 2);
 
     bottomLayout->addStretch();
     bottomLayout->addWidget(BtnGo);
 
-    BtnMaster = addButton(tr("Control"), bottomLayout, 3);
+    BtnMaster = addButton(tr("Control"), bottomLayout, 4);
     bottomLayout->insertStretch(3, 100);
 
-    BtnStart = addButton(QAction::tr("Start"), bottomLayout, 3);
+    BtnStart = addButton(QAction::tr("Start"), bottomLayout, 4);
 
     return bottomLayout;
 }
 
 void PageNetGame::connectSignals()
 {
+    connect(btnDLC, SIGNAL(clicked()), this, SIGNAL(DLCClicked()));
+
     connect(btnSetup, SIGNAL(clicked()), this, SIGNAL(SetupClicked()));
 
     connect(BtnUpdate, SIGNAL(clicked()), this, SLOT(onUpdateClick()));