2013-02-02 15:14:58 +00:00
|
|
|
#ifndef CSV_DOC_STARTUP_H
|
|
|
|
#define CSV_DOC_STARTUP_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
2013-09-08 07:15:26 +00:00
|
|
|
class QGridLayout;
|
|
|
|
class QString;
|
|
|
|
class QPushButton;
|
|
|
|
class QWidget;
|
|
|
|
class QIcon;
|
|
|
|
|
2013-02-02 15:14:58 +00:00
|
|
|
namespace CSVDoc
|
|
|
|
{
|
|
|
|
class StartupDialogue : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2013-09-08 07:15:26 +00:00
|
|
|
private:
|
|
|
|
int mWidth;
|
|
|
|
int mColumn;
|
|
|
|
QGridLayout* mLayout;
|
|
|
|
|
2024-04-21 16:56:06 +00:00
|
|
|
QPushButton* addButton(const QString& label, const QString& icon);
|
2013-09-08 07:15:26 +00:00
|
|
|
|
|
|
|
QWidget* createButtons();
|
|
|
|
|
|
|
|
QWidget* createTools();
|
|
|
|
|
2022-09-22 18:26:05 +00:00
|
|
|
public:
|
2013-09-08 07:15:26 +00:00
|
|
|
StartupDialogue();
|
|
|
|
|
2013-02-02 15:14:58 +00:00
|
|
|
signals:
|
|
|
|
|
|
|
|
void createGame();
|
|
|
|
|
2013-09-08 07:15:26 +00:00
|
|
|
void createAddon();
|
2013-02-02 15:14:58 +00:00
|
|
|
|
2013-09-08 07:15:26 +00:00
|
|
|
void loadDocument();
|
|
|
|
|
|
|
|
void editConfig();
|
2013-02-02 15:14:58 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|