mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-15 19:47:46 -07:00
game menu
This commit is contained in:
parent
77015c9ebf
commit
122f8ea916
15 changed files with 75 additions and 35 deletions
18
cockatrice/src/tab.h
Normal file
18
cockatrice/src/tab.h
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#ifndef TAB_H
|
||||
#define TAB_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
class QMenu;
|
||||
|
||||
class Tab : public QWidget {
|
||||
Q_OBJECT
|
||||
protected:
|
||||
QMenu *tabMenu;
|
||||
public:
|
||||
Tab(QWidget *parent = 0)
|
||||
: QWidget(parent), tabMenu(0) { }
|
||||
QMenu *getTabMenu() const { return tabMenu; }
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue