1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-29 09:32:45 +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 16:14:58 +01: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 16:14:58 +01:00
namespace CSVDoc
{
class StartupDialogue : public QWidget
{
Q_OBJECT
private:
int mWidth;
int mColumn;
QGridLayout* mLayout;
2024-04-21 20:56:06 +04:00
QPushButton* addButton(const QString& label, const QString& icon);
QWidget* createButtons();
QWidget* createTools();
2022-09-22 21:26:05 +03:00
public:
StartupDialogue();
2013-02-02 16:14:58 +01:00
signals:
void createGame();
void createAddon();
2013-02-02 16:14:58 +01:00
void loadDocument();
void editConfig();
2013-02-02 16:14:58 +01:00
};
}
#endif