QTfrontend/ui/page/pagecampaign.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 25 Apr 2019 23:01:05 +0200
changeset 14844 e239378a9400
parent 13816 e3fee73c51a0
permissions -rw-r--r--
Prevent entering “/”, “\” and “:” in team and scheme names. The name of teams and schems is saved in the file name itself, so these characters would cause trouble as they are used in path names in Linux and Windows.

/*
 * Hedgewars, a free turn based strategy game
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include <QGridLayout>
#include <QPushButton>
#include <QComboBox>
#include <QLabel>

#include "pagecampaign.h"

QLayout * PageCampaign::bodyLayoutDefinition()
{
    QGridLayout * pageLayout = new QGridLayout();
    pageLayout->setColumnStretch(0, 5);
    pageLayout->setColumnStretch(1, 1);
    pageLayout->setColumnStretch(2, 9);
    pageLayout->setColumnStretch(3, 5);
    pageLayout->setRowStretch(0, 1);
    pageLayout->setRowStretch(3, 1);

    QWidget * infoWidget = new QWidget();
    infoWidget->setObjectName("campaignInfo");
    QGridLayout * infoLayout = new QGridLayout();
    infoWidget->setLayout(infoLayout);
    infoLayout->setColumnStretch(0, 1);
    infoLayout->setColumnStretch(1, 1);
    infoLayout->setColumnStretch(2, 1);
    infoLayout->setColumnStretch(3, 1);
    infoLayout->setColumnStretch(4, 1);
    infoLayout->setRowStretch(0, 1);
    infoLayout->setRowStretch(1, 1);

    // set this as default image first time page is created, this will change in hwform.cpp
    btnPreview = formattedButton("physfs://Graphics/Missions/Campaign/A_Classic_Fairytale/first_blood@2x.png", true);
    btnPreview->setWhatsThis(tr("Start fighting"));
    infoLayout->setAlignment(btnPreview, Qt::AlignHCenter | Qt::AlignVCenter);

    lbldescription = new QLabel(this);
    lbldescription->setAlignment(Qt::AlignHCenter| Qt::AlignTop);
    lbldescription->setWordWrap(true);

    lbltitle = new QLabel();
    lbltitle->setAlignment(Qt::AlignHCenter | Qt::AlignBottom);

    QLabel* lblteam = new QLabel(tr("Team"));
    QLabel* lblcampaign = new QLabel(tr("Campaign"));
    QLabel* lblmission = new QLabel(tr("Mission"));

    CBTeam = new QComboBox(this);
    CBMission = new QComboBox(this);
    CBCampaign = new QComboBox(this);
    CBTeam->setMaxVisibleItems(30);
    CBMission->setMaxVisibleItems(30);
    CBCampaign->setMaxVisibleItems(30);

    infoLayout->addWidget(btnPreview,0,1,2,1);
    infoLayout->addWidget(lbltitle,0,2,1,2);
    infoLayout->addWidget(lbldescription,1,2,1,2);

    pageLayout->addWidget(infoWidget, 0, 0, 2, 4);
    pageLayout->addWidget(lblteam, 2, 1);
    pageLayout->addWidget(lblcampaign, 3, 1);
    pageLayout->addWidget(lblmission, 4, 1);
    pageLayout->addWidget(CBTeam, 2, 2);
    pageLayout->addWidget(CBCampaign, 3, 2);
    pageLayout->addWidget(CBMission, 4, 2);


    return pageLayout;
}

QLayout * PageCampaign::footerLayoutDefinition()
{
    QHBoxLayout * footerLayout = new QHBoxLayout();

    const QIcon& lp = QIcon(":/res/Start.png");
    QSize sz = lp.actualSize(QSize(65535, 65535));
    BtnStartCampaign = new QPushButton();
    BtnStartCampaign->setWhatsThis(tr("Start fighting"));
    BtnStartCampaign->setStyleSheet("padding: 5px 10px");
    BtnStartCampaign->setText(QPushButton::tr("Start"));
    BtnStartCampaign->setMinimumWidth(sz.width() + 60);
    BtnStartCampaign->setIcon(lp);
    BtnStartCampaign->setFixedHeight(50);
    BtnStartCampaign->setIconSize(sz);
    BtnStartCampaign->setFlat(true);
    BtnStartCampaign->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);

    footerLayout->addStretch();
    footerLayout->addWidget(BtnStartCampaign);

    return footerLayout;
}

PageCampaign::PageCampaign(QWidget* parent) : AbstractPage(parent)
{
    initPage();
}