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
|
2019-09-13 09:30:50 +00:00
|
|
|
namespace Slic3r {
|
|
|
|
namespace GUI {
|
|
|
|
|
|
|
|
enum class SLAGizmoEventType : unsigned char {
|
2019-03-20 12:51:25 +00:00
|
|
|
LeftDown = 1,
|
|
|
|
LeftUp,
|
|
|
|
RightDown,
|
|
|
|
Dragging,
|
|
|
|
Delete,
|
|
|
|
SelectAll,
|
|
|
|
ShiftUp,
|
2019-04-08 13:34:42 +00:00
|
|
|
AltUp,
|
2019-03-20 12:51:25 +00:00
|
|
|
ApplyChanges,
|
|
|
|
DiscardChanges,
|
|
|
|
AutomaticGeneration,
|
2019-04-17 08:16:39 +00:00
|
|
|
ManualEditing,
|
|
|
|
MouseWheelUp,
|
2019-04-17 10:24:46 +00:00
|
|
|
MouseWheelDown,
|
|
|
|
ResetClippingPlane
|
2019-03-20 12:51:25 +00:00
|
|
|
};
|
|
|
|
|
2019-09-13 09:30:50 +00:00
|
|
|
} // namespace GUI
|
|
|
|
} // namespace Slic3r
|
|
|
|
|
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"
|
2019-11-04 16:01:26 +00:00
|
|
|
#include "slic3r/GUI/Gizmos/GLGizmoHollow.hpp"
|
2019-03-15 11:53:15 +00:00
|
|
|
|
|
|
|
#endif //slic3r_GLGizmos_hpp_
|