/** * @file tabbed_deck_view_container.h * @ingroup Lobby */ //! \todo Document this file. #ifndef TABBED_DECK_VIEW_CONTAINER_H #define TABBED_DECK_VIEW_CONTAINER_H #include "deck_view_container.h" #include class TabbedDeckViewContainer : public QTabWidget { Q_OBJECT public: explicit TabbedDeckViewContainer(int _playerId, TabGame *parent); void closeTab(int index); void updateTabBarVisibility(); void addOpponentDeckView(const DeckList &opponentDeck, int opponentId, QString opponentName); int playerId; TabGame *parentGame; DeckViewContainer *playerDeckView; QMap opponentDeckViews; }; #endif // TABBED_DECK_VIEW_CONTAINER_H