mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
33 lines
491 B
C++
33 lines
491 B
C++
#pragma once
|
|
|
|
#include "lc_model.h"
|
|
|
|
struct lcPropertiesDialogOptions
|
|
{
|
|
lcModelProperties Properties;
|
|
lcPartsList PartsList;
|
|
lcBoundingBox BoundingBox;
|
|
};
|
|
|
|
namespace Ui
|
|
{
|
|
class lcQPropertiesDialog;
|
|
}
|
|
|
|
class lcQPropertiesDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
lcQPropertiesDialog(QWidget* Parent, lcPropertiesDialogOptions* Options);
|
|
~lcQPropertiesDialog();
|
|
|
|
lcPropertiesDialogOptions* mOptions;
|
|
|
|
public slots:
|
|
void accept() override;
|
|
|
|
private:
|
|
Ui::lcQPropertiesDialog* ui;
|
|
};
|
|
|