QTfrontend/ui_hwform.cpp
author displacer
Tue, 26 Sep 2006 19:59:10 +0000
changeset 170 ef1031ba44fc
parent 128 223522298250
child 183 57c2ef19f719
permissions -rw-r--r--
busy variable removed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
128
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
     1
/*
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
     2
 * Hedgewars, a worms-like game
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
     3
 * Copyright (c) 2006 Andrey Korotaev <unC0Rr@gmail.com>
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
     4
 *
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
     5
 * Distributed under the terms of the BSD-modified licence:
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
     6
 *
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
     7
 * Permission is hereby granted, free of charge, to any person obtaining a copy
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
     8
 * of this software and associated documentation files (the "Software"), to deal
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
     9
 * with the Software without restriction, including without limitation the
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    10
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    11
 * sell copies of the Software, and to permit persons to whom the Software is
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    12
 * furnished to do so, subject to the following conditions:
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    13
 *
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    14
 * 1. Redistributions of source code must retain the above copyright notice,
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    15
 *    this list of conditions and the following disclaimer.
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    16
 * 2. Redistributions in binary form must reproduce the above copyright notice,
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    17
 *    this list of conditions and the following disclaimer in the documentation
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    18
 *    and/or other materials provided with the distribution.
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    19
 * 3. The name of the author may not be used to endorse or promote products
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    20
 *    derived from this software without specific prior written permission.
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    21
 *
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    22
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    23
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    24
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    25
 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    26
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    27
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    28
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    29
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    30
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    31
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    32
 */
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 87
diff changeset
    33
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    34
#include <QVBoxLayout>
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    35
#include <QGridLayout>
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    36
#include "ui_hwform.h"
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    37
#include "pages.h"
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    38
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    39
void Ui_HWForm::setupUi(QMainWindow *HWForm)
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    40
{
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    41
	SetupFonts();
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    42
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    43
	HWForm->setObjectName(QString::fromUtf8("HWForm"));
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    44
	HWForm->resize(QSize(620, 430).expandedTo(HWForm->minimumSizeHint()));
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    45
	HWForm->setMinimumSize(QSize(620, 430));
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    46
	HWForm->setWindowTitle(QMainWindow::tr("-= by unC0Rr =-"));
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    47
	centralWidget = new QWidget(HWForm);
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    48
	centralWidget->setObjectName(QString::fromUtf8("centralWidget"));
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    49
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    50
	centralWidget = new QWidget(HWForm);
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    51
	centralWidget->setObjectName(QString::fromUtf8("centralWidget"));
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    52
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    53
	SetupPages(centralWidget);
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    54
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    55
	HWForm->setCentralWidget(centralWidget);
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    56
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    57
	Pages->setCurrentIndex(0);
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    58
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    59
	QMetaObject::connectSlotsByName(HWForm);
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    60
}
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    61
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    62
void Ui_HWForm::SetupFonts()
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    63
{
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    64
	font14 = new QFont("MS Shell Dlg", 14);
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    65
}
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    66
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    67
void Ui_HWForm::SetupPages(QWidget *Parent)
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    68
{
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    69
	Pages =	new QStackedLayout(Parent);
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    70
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    71
	pageLocalGame = new PageLocalGame();
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    72
	Pages->addWidget(pageLocalGame);
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    73
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    74
	pageEditTeam = new PageEditTeam();
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    75
	Pages->addWidget(pageEditTeam);
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    76
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    77
	pageOptions = new PageOptions();
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    78
	Pages->addWidget(pageOptions);
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    79
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    80
	pageMultiplayer = new PageMultiplayer();
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    81
	Pages->addWidget(pageMultiplayer);
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    82
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    83
	pagePlayDemo =	new PagePlayDemo();
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    84
	Pages->addWidget(pagePlayDemo);
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    85
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    86
	pageNet = new PageNet();
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    87
	Pages->addWidget(pageNet);
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    88
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    89
	pageNetChat	= new PageNetChat();
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    90
	Pages->addWidget(pageNetChat);
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    91
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    92
	pageNetGame	= new PageNetGame();
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    93
	Pages->addWidget(pageNetGame);
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    94
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    95
	pageMain = new PageMain();
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    96
	Pages->addWidget(pageMain);
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    97
}