Home tab to replace generic deck editor on startup (#6114)

This commit is contained in:
BruebachL 2025-09-11 21:36:34 +02:00 committed by GitHub
parent 22c8268f02
commit 93c15c8151
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
26 changed files with 751 additions and 8 deletions

View file

@ -0,0 +1,29 @@
#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