QTfrontend/teamselect.h
author koda
Thu, 13 Jan 2011 02:56:25 +0100
branch0.9.15
changeset 4733 45b5a16c01fb
parent 4410 f9e38ce1e813
child 4976 088d40d8aba2
permissions -rw-r--r--
Added tag 0.9.15 for changeset bd74fd83929a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
153
dc10da2a73f9 license and copyright info added
displacer
parents: 152
diff changeset
     1
/*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 535
diff changeset
     2
 * Hedgewars, a free turn based strategy game
486
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 471
diff changeset
     3
 * Copyright (c) 2006, 2007 Ulyanov Igor <iulyanov@gmail.com>
153
dc10da2a73f9 license and copyright info added
displacer
parents: 152
diff changeset
     4
 *
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
153
dc10da2a73f9 license and copyright info added
displacer
parents: 152
diff changeset
     8
 *
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
    12
 * GNU General Public License for more details.
153
dc10da2a73f9 license and copyright info added
displacer
parents: 152
diff changeset
    13
 *
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
    14
 * You should have received a copy of the GNU General Public License
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
    15
 * along with this program; if not, write to the Free Software
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 153
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
153
dc10da2a73f9 license and copyright info added
displacer
parents: 152
diff changeset
    17
 */
dc10da2a73f9 license and copyright info added
displacer
parents: 152
diff changeset
    18
50
9ab4067dabec TeamSelect widget alpha added
displacer
parents:
diff changeset
    19
#ifndef _TEAM_SELECT_INCLUDED
9ab4067dabec TeamSelect widget alpha added
displacer
parents:
diff changeset
    20
#define _TEAM_SELECT_INCLUDED
9ab4067dabec TeamSelect widget alpha added
displacer
parents:
diff changeset
    21
240
c7f0a4f7a54a Better-looking multiplayer page
unc0rr
parents: 231
diff changeset
    22
#include <QGroupBox>
50
9ab4067dabec TeamSelect widget alpha added
displacer
parents:
diff changeset
    23
#include <QVBoxLayout>
382
e7220e48ead1 colors changing config fully working (still need disabling in slaves)
displacer
parents: 373
diff changeset
    24
#include <QColor>
471
e1eb64ba5e9c Small cleanup, faster compilation as a result
unc0rr
parents: 382
diff changeset
    25
#include <QMultiMap>
50
9ab4067dabec TeamSelect widget alpha added
displacer
parents:
diff changeset
    26
117
d21a48200772 HWTeam integration in team select widget
displacer
parents: 63
diff changeset
    27
#include "team.h"
d21a48200772 HWTeam integration in team select widget
displacer
parents: 63
diff changeset
    28
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents: 61
diff changeset
    29
class TeamSelWidget;
27e2b5bb6d4b Scroll added to team control widget
displacer
parents: 61
diff changeset
    30
class FrameTeams;
311
b8905423f19f - Limit list of teams in game with 200 px
unc0rr
parents: 240
diff changeset
    31
class QFrame;
b8905423f19f - Limit list of teams in game with 200 px
unc0rr
parents: 240
diff changeset
    32
class QPushButton;
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents: 61
diff changeset
    33
50
9ab4067dabec TeamSelect widget alpha added
displacer
parents:
diff changeset
    34
using namespace std;
9ab4067dabec TeamSelect widget alpha added
displacer
parents:
diff changeset
    35
240
c7f0a4f7a54a Better-looking multiplayer page
unc0rr
parents: 231
diff changeset
    36
class TeamSelWidget : public QGroupBox
50
9ab4067dabec TeamSelect widget alpha added
displacer
parents:
diff changeset
    37
{
9ab4067dabec TeamSelect widget alpha added
displacer
parents:
diff changeset
    38
  Q_OBJECT
240
c7f0a4f7a54a Better-looking multiplayer page
unc0rr
parents: 231
diff changeset
    39
50
9ab4067dabec TeamSelect widget alpha added
displacer
parents:
diff changeset
    40
 public:
373
df912aab6b7e network team add can be denied by server
displacer
parents: 372
diff changeset
    41
  TeamSelWidget(QWidget* parent);
df912aab6b7e network team add can be denied by server
displacer
parents: 372
diff changeset
    42
  void setAcceptOuter(bool acceptOuter);
347
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
    43
  void removeNetTeam(const HWTeam& team);
231
c77b16e48273 bots power icons added
displacer
parents: 207
diff changeset
    44
  void resetPlayingTeams(const QList<HWTeam>& teamslist);
152
c558957ef644 teams moving order fixed
displacer
parents: 151
diff changeset
    45
  bool isPlaying(HWTeam team) const;
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 347
diff changeset
    46
  QList<HWTeam> getPlayingTeams() const;
535
a14eaf35cf4b "Setup" button instead of "New team", exclude playing teams from setup
displacer
parents: 492
diff changeset
    47
  QList<HWTeam> getDontPlayingTeams() const;
1475
bab5650fc894 - Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents: 1066
diff changeset
    48
  void setInteractivity(bool interactive);
50
9ab4067dabec TeamSelect widget alpha added
displacer
parents:
diff changeset
    49
322
e7175ae57945 first new widgets added to net game
displacer
parents: 311
diff changeset
    50
 public slots:
339
7535ab6c3820 Run game message added, team and config info provided for net game
displacer
parents: 322
diff changeset
    51
  void addTeam(HWTeam team);
347
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
    52
  void netTeamStatusChanged(const HWTeam& team);
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 347
diff changeset
    53
  void changeHHNum(const HWTeam&);
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
    54
  void changeTeamColor(const HWTeam&);
373
df912aab6b7e network team add can be denied by server
displacer
parents: 372
diff changeset
    55
  void changeTeamStatus(HWTeam team);
471
e1eb64ba5e9c Small cleanup, faster compilation as a result
unc0rr
parents: 382
diff changeset
    56
322
e7175ae57945 first new widgets added to net game
displacer
parents: 311
diff changeset
    57
 signals:
492
78e80f899b59 disable start game button with teams num < 2
displacer
parents: 486
diff changeset
    58
  void setEnabledGameStart(bool);
322
e7175ae57945 first new widgets added to net game
displacer
parents: 311
diff changeset
    59
  void teamWillPlay(HWTeam team);
347
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
    60
  void teamNotPlaying(const HWTeam& team);
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 347
diff changeset
    61
  void hhogsNumChanged(const HWTeam&);
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
    62
  void teamColorChanged(const HWTeam&);
373
df912aab6b7e network team add can be denied by server
displacer
parents: 372
diff changeset
    63
  void acceptRequested(HWTeam team);
471
e1eb64ba5e9c Small cleanup, faster compilation as a result
unc0rr
parents: 382
diff changeset
    64
322
e7175ae57945 first new widgets added to net game
displacer
parents: 311
diff changeset
    65
 private slots:
373
df912aab6b7e network team add can be denied by server
displacer
parents: 372
diff changeset
    66
  void pre_changeTeamStatus(HWTeam);
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 347
diff changeset
    67
  void hhNumChanged(const HWTeam& team);
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
    68
  void proxyTeamColorChanged(const HWTeam& team);
50
9ab4067dabec TeamSelect widget alpha added
displacer
parents:
diff changeset
    69
9ab4067dabec TeamSelect widget alpha added
displacer
parents:
diff changeset
    70
 private:
311
b8905423f19f - Limit list of teams in game with 200 px
unc0rr
parents: 240
diff changeset
    71
  void addScrArea(FrameTeams* pfteams, QColor color, int maxHeight);
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents: 61
diff changeset
    72
  FrameTeams* frameDontPlaying;
27e2b5bb6d4b Scroll added to team control widget
displacer
parents: 61
diff changeset
    73
  FrameTeams* framePlaying;
61
505691a09dee colors added to teamselwidget
displacer
parents: 50
diff changeset
    74
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents: 61
diff changeset
    75
  QVBoxLayout mainLayout;
373
df912aab6b7e network team add can be denied by server
displacer
parents: 372
diff changeset
    76
  bool m_acceptOuter;
50
9ab4067dabec TeamSelect widget alpha added
displacer
parents:
diff changeset
    77
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 347
diff changeset
    78
  QList<HWTeam> curPlayingTeams;
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 347
diff changeset
    79
  QList<HWTeam> curDontPlayingTeams;
50
9ab4067dabec TeamSelect widget alpha added
displacer
parents:
diff changeset
    80
};
9ab4067dabec TeamSelect widget alpha added
displacer
parents:
diff changeset
    81
9ab4067dabec TeamSelect widget alpha added
displacer
parents:
diff changeset
    82
#endif // _TEAM_SELECT_INCLUDED