QTfrontend/ui/page/pageeditteam.h
author sheepluva
Fri, 21 Oct 2011 07:00:49 +0200
changeset 6165 6fe3e922246e
parent 6060 fdfc01419815
child 6196 c16e84558f71
permissions -rw-r--r--
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5204
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     1
/*
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     2
 * Hedgewars, a free turn based strategy game
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     3
 * Copyright (c) 2006-2011 Andrey Korotaev <unC0Rr@gmail.com>
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     4
 *
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     8
 *
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    12
 * GNU General Public License for more details.
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    13
 *
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    17
 */
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    18
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    19
#ifndef PAGE_EDITTEAM_H
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    20
#define PAGE_EDITTEAM_H
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    21
5205
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
    22
#include "AbstractPage.h"
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
    23
#include "binds.h"
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    24
#include "hwconsts.h"
6165
6fe3e922246e moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents: 6060
diff changeset
    25
#include "HWDataManager.h"
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    26
#include "namegen.h"
6165
6fe3e922246e moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents: 6060
diff changeset
    27
#include "SDLInteraction.h"
5204
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    28
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    29
#include "team.h"
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    30
5204
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    31
class SquareLabel;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    32
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    33
class PageEditTeam : public AbstractPage
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    34
{
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    35
    Q_OBJECT
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    36
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    37
public:
6165
6fe3e922246e moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents: 6060
diff changeset
    38
    PageEditTeam(QWidget* parent);
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    39
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    40
    void createTeam(const QString & name, const QString & playerHash);
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    41
    void editTeam(const QString & name, const QString & playerHash);
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    42
    void deleteTeam(const QString & name);
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    43
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    44
signals:
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    45
    void teamEdited();
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    46
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    47
public slots:
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    48
    void CBFort_activated(const QString & gravename);
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    49
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    50
private:
5907
64ccc6be0ec5 team edit: restore default hedgehog name if name is empty- since empty names are not supported and will lead to errors; also lupdate
sheepluva
parents: 5205
diff changeset
    51
    QSignalMapper* signalMapper1;
64ccc6be0ec5 team edit: restore default hedgehog name if name is empty- since empty names are not supported and will lead to errors; also lupdate
sheepluva
parents: 5205
diff changeset
    52
    QSignalMapper* signalMapper2;
5204
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    53
    QGroupBox *GBoxHedgehogs;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    54
    QGroupBox *GBoxTeam;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    55
    QGroupBox *GBoxFort;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    56
    QComboBox *CBFort;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    57
    SquareLabel *FortPreview;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    58
    QComboBox *CBGrave;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    59
    QComboBox *CBFlag;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    60
    QComboBox *CBTeamLvl;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    61
    QComboBox *CBVoicepack;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    62
    QGroupBox *GBoxBinds;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    63
    QToolBox *BindsBox;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    64
    QLineEdit * TeamNameEdit;
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    65
    QLineEdit * HHNameEdit[HEDGEHOGS_PER_TEAM];
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    66
    QComboBox * HHHats[HEDGEHOGS_PER_TEAM];
5204
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    67
    QComboBox * CBBind[BINDS_NUMBER];
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    68
    HWTeam data();
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    69
    QString m_playerHash;
5204
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    70
6042
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6024
diff changeset
    71
    QLayout * bodyLayoutDefinition();
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6024
diff changeset
    72
    QLayout * footerLayoutDefinition();
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6024
diff changeset
    73
    void connectSignals();
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6024
diff changeset
    74
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    75
    void loadTeam(const HWTeam & team);
5204
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    76
6042
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6024
diff changeset
    77
    // page 1
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6024
diff changeset
    78
    QPushButton * btnRandomHogName[HEDGEHOGS_PER_TEAM];
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6024
diff changeset
    79
    QPushButton * btnRandomTeam;
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6024
diff changeset
    80
    QPushButton * btnTestSound;
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6024
diff changeset
    81
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6024
diff changeset
    82
    // footer
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6024
diff changeset
    83
    QPushButton * btnSave;
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6024
diff changeset
    84
5204
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    85
private slots:
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    86
    void saveTeam();
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    87
    void setRandomNames();
6165
6fe3e922246e moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents: 6060
diff changeset
    88
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 5907
diff changeset
    89
    void setRandomName(int hh_index);
6165
6fe3e922246e moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents: 6060
diff changeset
    90
    
6fe3e922246e moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents: 6060
diff changeset
    91
    /// Plays a random voice sound of the currently edited team.
5204
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    92
    void testSound();
6165
6fe3e922246e moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents: 6060
diff changeset
    93
5907
64ccc6be0ec5 team edit: restore default hedgehog name if name is empty- since empty names are not supported and will lead to errors; also lupdate
sheepluva
parents: 5205
diff changeset
    94
    void fixHHname(int idx);
5204
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    95
};
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    96
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    97
#endif
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    98