equal
deleted
inserted
replaced
43 void setAcceptOuter(bool acceptOuter); |
43 void setAcceptOuter(bool acceptOuter); |
44 void removeNetTeam(const HWTeam& team); |
44 void removeNetTeam(const HWTeam& team); |
45 void resetPlayingTeams(const QList<HWTeam>& teamslist); |
45 void resetPlayingTeams(const QList<HWTeam>& teamslist); |
46 bool isPlaying(HWTeam team) const; |
46 bool isPlaying(HWTeam team) const; |
47 QList<HWTeam> getPlayingTeams() const; |
47 QList<HWTeam> getPlayingTeams() const; |
48 QList<HWTeam> getDontPlayingTeams() const; |
48 QList<HWTeam> getNotPlayingTeams() const; |
49 void setInteractivity(bool interactive); |
49 void setInteractivity(bool interactive); |
50 |
50 |
51 public slots: |
51 public slots: |
52 void addTeam(HWTeam team); |
52 void addTeam(HWTeam team); |
53 void netTeamStatusChanged(const HWTeam& team); |
53 void netTeamStatusChanged(const HWTeam& team); |
75 |
75 |
76 QVBoxLayout mainLayout; |
76 QVBoxLayout mainLayout; |
77 bool m_acceptOuter; |
77 bool m_acceptOuter; |
78 |
78 |
79 QList<HWTeam> curPlayingTeams; |
79 QList<HWTeam> curPlayingTeams; |
80 QList<HWTeam> curDontPlayingTeams; |
80 QList<HWTeam> m_curNotPlayingTeams; |
81 }; |
81 }; |
82 |
82 |
83 #endif // _TEAM_SELECT_INCLUDED |
83 #endif // _TEAM_SELECT_INCLUDED |