2019-03-15 11:53:15 +00:00
|
|
|
#ifndef slic3r_GLGizmos_hpp_
|
|
|
|
#define slic3r_GLGizmos_hpp_
|
|
|
|
|
2019-03-20 12:51:25 +00:00
|
|
|
// this describes events being passed from GLCanvas3D to SlaSupport gizmo
|
|
|
|
enum class SLAGizmoEventType {
|
|
|
|
LeftDown = 1,
|
|
|
|
LeftUp,
|
|
|
|
RightDown,
|
|
|
|
Dragging,
|
|
|
|
Delete,
|
|
|
|
SelectAll,
|
|
|
|
ShiftUp,
|
|
|
|
ApplyChanges,
|
|
|
|
DiscardChanges,
|
|
|
|
AutomaticGeneration,
|
|
|
|
ManualEditing
|
|
|
|
};
|
|
|
|
|
2019-03-15 11:53:15 +00:00
|
|
|
#include "slic3r/GUI/Gizmos/GLGizmoMove.hpp"
|
|
|
|
#include "slic3r/GUI/Gizmos/GLGizmoScale.hpp"
|
|
|
|
#include "slic3r/GUI/Gizmos/GLGizmoRotate.hpp"
|
|
|
|
#include "slic3r/GUI/Gizmos/GLGizmoFlatten.hpp"
|
|
|
|
#include "slic3r/GUI/Gizmos/GLGizmoSlaSupports.hpp"
|
|
|
|
#include "slic3r/GUI/Gizmos/GLGizmoCut.hpp"
|
|
|
|
|
|
|
|
#endif //slic3r_GLGizmos_hpp_
|