Cockatrice 2025-11-30-Development-2.11.0-beta.38
A cross-platform virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
tab_home.h
Go to the documentation of this file.
1
6
7#ifndef TAB_HOME_H
8#define TAB_HOME_H
9
10#include "../interface/widgets/general/home_widget.h"
11#include "tab.h"
12
14
15class AbstractClient;
16
17class TabHome : public Tab
18{
19 Q_OBJECT
20private:
23
24public:
25 TabHome(TabSupervisor *_tabSupervisor, AbstractClient *_client);
26 void retranslateUi() override;
27 [[nodiscard]] QString getTabText() const override
28 {
29 return tr("Home");
30 }
31};
32
33#endif // TAB_HOME_H
TODO: Document this.
Definition abstract_client.h:51
Definition home_widget.h:19
TabHome(TabSupervisor *_tabSupervisor, AbstractClient *_client)
Definition tab_home.cpp:3
HomeWidget * homeWidget
Definition tab_home.h:22
QString getTabText() const override
Definition tab_home.h:27
AbstractClient * client
Definition tab_home.h:21
void retranslateUi() override
Definition tab_home.cpp:9
Definition tab_supervisor.h:83
Tab(TabSupervisor *_tabSupervisor)
Definition tab.cpp:11
TODO: Document this.