mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-27 00:53:55 -07:00
29 lines
540 B
C++
29 lines
540 B
C++
#ifndef TAB_HOME_H
|
|
#define TAB_HOME_H
|
|
|
|
#include "../../server/abstract_client.h"
|
|
#include "../ui/widgets/general/home_widget.h"
|
|
#include "tab.h"
|
|
|
|
#include <QHBoxLayout>
|
|
#include <qgroupbox.h>
|
|
|
|
class AbstractClient;
|
|
|
|
class TabHome : public Tab
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
AbstractClient *client;
|
|
HomeWidget *homeWidget;
|
|
|
|
public:
|
|
TabHome(TabSupervisor *_tabSupervisor, AbstractClient *_client);
|
|
void retranslateUi() override;
|
|
QString getTabText() const override
|
|
{
|
|
return tr("Home");
|
|
}
|
|
};
|
|
|
|
#endif // TAB_HOME_H
|