src/ui/multiplyfactordialog.h

changeset 81
62373840e33a
child 206
654661eab7f3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/ui/multiplyfactordialog.h	Tue Mar 17 23:13:29 2020 +0200
@@ -0,0 +1,23 @@
+#pragma once
+#include <QDialog>
+#include "../main.h"
+#include "../widgets/vec3editor.h"
+
+namespace Ui
+{
+	class MultiplyFactorDialog;
+}
+
+class MultiplyFactorDialog : public QDialog
+{
+	Q_OBJECT
+public:
+	explicit MultiplyFactorDialog(const glm::vec3& baseVector = glm::vec3{}, QWidget *parent = nullptr);
+	~MultiplyFactorDialog();
+	glm::vec3 value() const;
+private:
+	Q_SLOT void updatePreview();
+	std::unique_ptr<Ui::MultiplyFactorDialog> ui;
+	const glm::vec3 baseVector;
+	Vec3Editor preview;
+};

mercurial