QTfrontend/ui/page/pageeditteam.h
changeset 6060 fdfc01419815
parent 6042 8b5345758f62
child 6165 6fe3e922246e
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 #ifndef PAGE_EDITTEAM_H
       
    20 #define PAGE_EDITTEAM_H
       
    21 
       
    22 #include "AbstractPage.h"
       
    23 #include "binds.h"
       
    24 #include "hwconsts.h"
       
    25 #include "namegen.h"
       
    26 #include "SDLs.h"
       
    27 
       
    28 #include "team.h"
       
    29 
       
    30 class SquareLabel;
       
    31 
       
    32 class PageEditTeam : public AbstractPage
       
    33 {
       
    34     Q_OBJECT
       
    35 
       
    36 public:
       
    37     PageEditTeam(QWidget* parent, SDLInteraction * sdli);
       
    38 
       
    39     void createTeam(const QString & name, const QString & playerHash);
       
    40     void editTeam(const QString & name, const QString & playerHash);
       
    41     void deleteTeam(const QString & name);
       
    42 
       
    43 signals:
       
    44     void teamEdited();
       
    45 
       
    46 public slots:
       
    47     void CBFort_activated(const QString & gravename);
       
    48 
       
    49 private:
       
    50     QSignalMapper* signalMapper1;
       
    51     QSignalMapper* signalMapper2;
       
    52     QGroupBox *GBoxHedgehogs;
       
    53     QGroupBox *GBoxTeam;
       
    54     QGroupBox *GBoxFort;
       
    55     QComboBox *CBFort;
       
    56     SquareLabel *FortPreview;
       
    57     QComboBox *CBGrave;
       
    58     QComboBox *CBFlag;
       
    59     QComboBox *CBTeamLvl;
       
    60     QComboBox *CBVoicepack;
       
    61     QGroupBox *GBoxBinds;
       
    62     QToolBox *BindsBox;
       
    63     QLineEdit * TeamNameEdit;
       
    64     QLineEdit * HHNameEdit[HEDGEHOGS_PER_TEAM];
       
    65     QComboBox * HHHats[HEDGEHOGS_PER_TEAM];
       
    66     QComboBox * CBBind[BINDS_NUMBER];
       
    67     SDLInteraction * mySdli;
       
    68     HWTeam data();
       
    69     QString m_playerHash;
       
    70 
       
    71     QLayout * bodyLayoutDefinition();
       
    72     QLayout * footerLayoutDefinition();
       
    73     void connectSignals();
       
    74 
       
    75     void loadTeam(const HWTeam & team);
       
    76 
       
    77     // page 1
       
    78     QPushButton * btnRandomHogName[HEDGEHOGS_PER_TEAM];
       
    79     QPushButton * btnRandomTeam;
       
    80     QPushButton * btnTestSound;
       
    81 
       
    82     // footer
       
    83     QPushButton * btnSave;
       
    84 
       
    85 private slots:
       
    86     void saveTeam();
       
    87     void setRandomNames();
       
    88     void setRandomName(int hh_index);
       
    89     void testSound();
       
    90     void fixHHname(int idx);
       
    91 };
       
    92 
       
    93 #endif
       
    94