1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-19 22:53:53 +00:00
openmw/apps/opencs/view/doc/startup.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
655 B
C++
Raw Normal View History

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