2017-07-19 23:20:32 +02:00
|
|
|
#pragma once
|
2013-08-09 06:57:18 +02:00
|
|
|
|
2020-12-24 03:07:12 +01:00
|
|
|
#include "lc_model.h"
|
2013-08-09 06:57:18 +02:00
|
|
|
|
2020-12-24 03:07:12 +01:00
|
|
|
struct lcPropertiesDialogOptions
|
|
|
|
{
|
|
|
|
lcModelProperties Properties;
|
|
|
|
|
|
|
|
lcPartsList PartsList;
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
2013-08-09 06:57:18 +02:00
|
|
|
class lcQPropertiesDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class lcQPropertiesDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-12-24 03:07:12 +01:00
|
|
|
lcQPropertiesDialog(QWidget* Parent, lcPropertiesDialogOptions* Options);
|
2013-08-09 06:57:18 +02:00
|
|
|
~lcQPropertiesDialog();
|
|
|
|
|
2020-12-24 03:07:12 +01:00
|
|
|
lcPropertiesDialogOptions* mOptions;
|
2013-08-09 06:57:18 +02:00
|
|
|
|
|
|
|
public slots:
|
2020-03-22 23:44:41 +01:00
|
|
|
void accept() override;
|
2013-08-09 06:57:18 +02:00
|
|
|
|
|
|
|
private:
|
2020-12-24 03:07:12 +01:00
|
|
|
Ui::lcQPropertiesDialog* ui;
|
2013-08-09 06:57:18 +02:00
|
|
|
};
|
|
|
|
|