mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-16 15:32:15 -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>
35 lines
621 B
C++
35 lines
621 B
C++
/**
|
|
* @file tab_home.h
|
|
* @ingroup Tabs
|
|
* @brief TODO: Document this.
|
|
*/
|
|
|
|
#ifndef TAB_HOME_H
|
|
#define TAB_HOME_H
|
|
|
|
#include "../interface/widgets/general/home_widget.h"
|
|
#include "../server/abstract_client.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
|