18 lines
358 B
C
18 lines
358 B
C
|
#ifndef DUST3D_PREFERENCES_WIDGET_H
|
||
|
#define DUST3D_PREFERENCES_WIDGET_H
|
||
|
#include <QDialog>
|
||
|
#include "document.h"
|
||
|
|
||
|
class PreferencesWidget : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
signals:
|
||
|
void enableWeld(bool enabled);
|
||
|
public:
|
||
|
PreferencesWidget(const Document *document, QWidget *parent=nullptr);
|
||
|
private:
|
||
|
const Document *m_document = nullptr;
|
||
|
};
|
||
|
|
||
|
#endif
|