1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-28 08:48:48 +02:00
vcmi/launcher/aboutProject/aboutproject_moc.h
Alexander Wilms f01ec55d21 Use the "nullptr" literal.
"nullptr" should be used to denote the null pointer
2023-10-27 18:18:59 +00:00

55 lines
903 B
C++

/*
* aboutproject_moc.h, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#pragma once
#include "../StdInc.h"
namespace Ui
{
class AboutProjectView;
}
class CModListView;
class AboutProjectView : public QWidget
{
Q_OBJECT
void changeEvent(QEvent *event) override;
public:
explicit AboutProjectView(QWidget * parent = nullptr);
public slots:
private slots:
void on_updatesButton_clicked();
void on_openGameDataDir_clicked();
void on_openUserDataDir_clicked();
void on_openTempDir_clicked();
void on_pushButtonDiscord_clicked();
void on_pushButtonSlack_clicked();
void on_pushButtonGithub_clicked();
void on_pushButtonHomepage_clicked();
void on_pushButtonBugreport_clicked();
private:
Ui::AboutProjectView * ui;
};