mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-11 16:44:48 -07:00
* Sort *every* file into a doxygen group. Took 7 hours 9 minutes Took 18 seconds Took 2 minutes * Lint some ingroup definitions. Took 10 minutes Took 2 seconds * Just include the groups in the Doxyfile in this commit. Took 3 minutes * Update some group comments so they link! Took 14 minutes --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
29 lines
705 B
C++
29 lines
705 B
C++
/**
|
|
* @file tabbed_deck_view_container.h
|
|
* @ingroup Lobby
|
|
* @brief TODO: Document this.
|
|
*/
|
|
|
|
#ifndef TABBED_DECK_VIEW_CONTAINER_H
|
|
#define TABBED_DECK_VIEW_CONTAINER_H
|
|
#include "deck_view_container.h"
|
|
|
|
#include <QTabWidget>
|
|
|
|
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<int, DeckView *> opponentDeckViews;
|
|
};
|
|
|
|
#endif // TABBED_DECK_VIEW_CONTAINER_H
|