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