QTfrontend/pagenetserver.cpp
changeset 6060 fdfc01419815
parent 6059 ddf020d0941a
child 6061 15b4b485a1c5
equal deleted inserted replaced
6059:ddf020d0941a 6060:fdfc01419815
     1 /*
       
     2  * Hedgewars, a free turn based strategy game
       
     3  * Copyright (c) 2006-2011 Andrey Korotaev <unC0Rr@gmail.com>
       
     4  *
       
     5  * This program is free software; you can redistribute it and/or modify
       
     6  * it under the terms of the GNU General Public License as published by
       
     7  * the Free Software Foundation; version 2 of the License
       
     8  *
       
     9  * This program is distributed in the hope that it will be useful,
       
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
       
    12  * GNU General Public License for more details.
       
    13  *
       
    14  * You should have received a copy of the GNU General Public License
       
    15  * along with this program; if not, write to the Free Software
       
    16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
       
    17  */
       
    18 
       
    19 #include <QGridLayout>
       
    20 #include <QHBoxLayout>
       
    21 #include <QVBoxLayout>
       
    22 #include <QPushButton>
       
    23 #include <QGroupBox>
       
    24 #include <QLabel>
       
    25 #include <QLineEdit>
       
    26 #include <QSpinBox>
       
    27 
       
    28 #include "pagenetserver.h"
       
    29 
       
    30 QLayout * PageNetServer::bodyLayoutDefinition()
       
    31 {
       
    32     QVBoxLayout * pageLayout = new QVBoxLayout();
       
    33 
       
    34     QWidget * wg = new QWidget(this);
       
    35     pageLayout->addWidget(wg);
       
    36 
       
    37     QGridLayout * wgLayout = new QGridLayout(wg);
       
    38     wgLayout->setColumnStretch(0, 1);
       
    39     wgLayout->setColumnStretch(1, 3);
       
    40     wgLayout->setColumnStretch(2, 1);
       
    41 
       
    42     wgLayout->setRowStretch(0, 0);
       
    43     wgLayout->setRowStretch(1, 1);
       
    44 
       
    45     QGroupBox * gb = new QGroupBox(wg);
       
    46     wgLayout->addWidget(gb, 0, 1);
       
    47 
       
    48     QGridLayout * gbLayout = new QGridLayout(gb);
       
    49 
       
    50     labelSD = new QLabel(gb);
       
    51     labelSD->setText(QLabel::tr("Server name:"));
       
    52     gbLayout->addWidget(labelSD, 0, 0);
       
    53 
       
    54     leServerDescr = new QLineEdit(gb);
       
    55     gbLayout->addWidget(leServerDescr, 0, 1);
       
    56 
       
    57     labelPort = new QLabel(gb);
       
    58     labelPort->setText(QLabel::tr("Server port:"));
       
    59     gbLayout->addWidget(labelPort, 1, 0);
       
    60 
       
    61     sbPort = new QSpinBox(gb);
       
    62     sbPort->setMinimum(0);
       
    63     sbPort->setMaximum(65535);
       
    64     gbLayout->addWidget(sbPort, 1, 1);
       
    65 
       
    66     BtnDefault = new QPushButton(gb);
       
    67     BtnDefault->setText(QPushButton::tr("default"));
       
    68     gbLayout->addWidget(BtnDefault, 1, 2);
       
    69 
       
    70     return pageLayout;
       
    71 }
       
    72 
       
    73 QLayout * PageNetServer::footerLayoutDefinition()
       
    74 {
       
    75     QHBoxLayout * bottomLayout = new QHBoxLayout();
       
    76 
       
    77     BtnStart = new QPushButton(this);
       
    78     BtnStart->setFont(*font14);
       
    79     BtnStart->setText(QPushButton::tr("Start"));
       
    80 
       
    81     bottomLayout->addStretch();
       
    82     bottomLayout->addWidget(BtnStart);
       
    83 
       
    84     return bottomLayout;
       
    85 }
       
    86 
       
    87 void PageNetServer::connectSignals()
       
    88 {
       
    89     connect(BtnDefault, SIGNAL(clicked()), this, SLOT(setDefaultPort()));
       
    90 }
       
    91 
       
    92 PageNetServer::PageNetServer(QWidget* parent) : AbstractPage(parent)
       
    93 {
       
    94     initPage();
       
    95 }
       
    96 
       
    97 void PageNetServer::setDefaultPort()
       
    98 {
       
    99     sbPort->setValue(46631);
       
   100 }