mirror of
https://github.com/leozide/leocad
synced 2024-12-26 21:58:44 +01:00
26 lines
375 B
C++
26 lines
375 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
struct lcPropertiesDialogOptions;
|
|
|
|
namespace Ui {
|
|
class lcQPropertiesDialog;
|
|
}
|
|
|
|
class lcQPropertiesDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
lcQPropertiesDialog(QWidget* Parent, void* Data);
|
|
~lcQPropertiesDialog();
|
|
|
|
lcPropertiesDialogOptions *options;
|
|
|
|
public slots:
|
|
void accept() override;
|
|
|
|
private:
|
|
Ui::lcQPropertiesDialog *ui;
|
|
};
|
|
|