mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
45 lines
653 B
C++
45 lines
653 B
C++
#ifndef CSV_DOC_STARTUP_H
|
|
#define CSV_DOC_STARTUP_H
|
|
|
|
#include <QWidget>
|
|
|
|
class QGridLayout;
|
|
class QString;
|
|
class QPushButton;
|
|
class QWidget;
|
|
class QIcon;
|
|
|
|
namespace CSVDoc
|
|
{
|
|
class StartupDialogue : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
int mWidth;
|
|
int mColumn;
|
|
QGridLayout* mLayout;
|
|
|
|
QPushButton* addButton(const QString& label, const QIcon& icon);
|
|
|
|
QWidget* createButtons();
|
|
|
|
QWidget* createTools();
|
|
|
|
public:
|
|
StartupDialogue();
|
|
|
|
signals:
|
|
|
|
void createGame();
|
|
|
|
void createAddon();
|
|
|
|
void loadDocument();
|
|
|
|
void editConfig();
|
|
};
|
|
}
|
|
|
|
#endif
|