mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-24 15:43:54 -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
512 B
C++
29 lines
512 B
C++
/**
|
|
* @file sideboard_menu.h
|
|
* @ingroup GameMenusZones
|
|
* @brief TODO: Document this.
|
|
*/
|
|
|
|
#ifndef COCKATRICE_SIDEBOARD_MENU_H
|
|
#define COCKATRICE_SIDEBOARD_MENU_H
|
|
|
|
#include <QMenu>
|
|
|
|
class Player;
|
|
class SideboardMenu : public QMenu
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SideboardMenu(Player *player, QMenu *playerMenu);
|
|
void retranslateUi();
|
|
void setShortcutsActive();
|
|
void setShortcutsInactive();
|
|
|
|
private:
|
|
Player *player;
|
|
|
|
QAction *aViewSideboard;
|
|
};
|
|
|
|
#endif // COCKATRICE_SIDEBOARD_MENU_H
|