mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
655 B
C++
45 lines
655 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 QString& icon);
|
|
|
|
QWidget* createButtons();
|
|
|
|
QWidget* createTools();
|
|
|
|
public:
|
|
StartupDialogue();
|
|
|
|
signals:
|
|
|
|
void createGame();
|
|
|
|
void createAddon();
|
|
|
|
void loadDocument();
|
|
|
|
void editConfig();
|
|
};
|
|
}
|
|
|
|
#endif
|