init
This commit is contained in:
38
ui/forms/lc_dlgsplinepoints.h
Normal file
38
ui/forms/lc_dlgsplinepoints.h
Normal file
@@ -0,0 +1,38 @@
|
||||
#ifndef LC_DLGSPLINEPOINTS_H
|
||||
#define LC_DLGSPLINEPOINTS_H
|
||||
|
||||
#include<memory>
|
||||
#include <QDialog>
|
||||
|
||||
class LC_SplinePoints;
|
||||
|
||||
namespace Ui {
|
||||
class DlgSplinePoints;
|
||||
}
|
||||
|
||||
class LC_DlgSplinePoints : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
LC_DlgSplinePoints(QWidget* parent = 0, bool modal = false, Qt::WindowFlags fl = 0);
|
||||
virtual ~LC_DlgSplinePoints();
|
||||
|
||||
public slots:
|
||||
virtual void setSpline(LC_SplinePoints& b);
|
||||
virtual void updateSpline();
|
||||
void updatePoints();
|
||||
|
||||
protected slots:
|
||||
virtual void languageChange();
|
||||
|
||||
private:
|
||||
LC_DlgSplinePoints(LC_DlgSplinePoints const&) = delete;
|
||||
LC_DlgSplinePoints& operator = (LC_DlgSplinePoints const&) = delete;
|
||||
LC_DlgSplinePoints(LC_DlgSplinePoints &&) = delete;
|
||||
LC_DlgSplinePoints& operator = (LC_DlgSplinePoints &&) = delete;
|
||||
|
||||
LC_SplinePoints* bezier;
|
||||
std::unique_ptr<Ui::DlgSplinePoints> ui;
|
||||
};
|
||||
|
||||
#endif // LC_DLGSPLINEPOINTS_H
|
||||
Reference in New Issue
Block a user