mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 23:21:47 +08:00
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
///|/ Copyright (c) Prusa Research 2019 - 2021 Lukáš Hejl @hejllukas, Lukáš Matěna @lukasmatena, Enrico Turri @enricoturri1966
|
|
///|/
|
|
///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher
|
|
///|/
|
|
#ifndef slic3r_GLGizmos_hpp_
|
|
#define slic3r_GLGizmos_hpp_
|
|
|
|
// this describes events being passed from GLCanvas3D to SlaSupport gizmo
|
|
namespace Slic3r {
|
|
namespace GUI {
|
|
|
|
enum class SLAGizmoEventType : unsigned char {
|
|
LeftDown = 1,
|
|
LeftUp,
|
|
RightDown,
|
|
Dragging,
|
|
Delete,
|
|
SelectAll,
|
|
ShiftUp,
|
|
AltUp,
|
|
ApplyChanges,
|
|
DiscardChanges,
|
|
AutomaticGeneration,
|
|
ManualEditing,
|
|
MouseWheelUp,
|
|
MouseWheelDown,
|
|
ResetClippingPlane
|
|
};
|
|
|
|
} // namespace GUI
|
|
} // namespace Slic3r
|
|
|
|
// BBS
|
|
#include "slic3r/GUI/Gizmos/GLGizmoMoveScale.hpp"
|
|
#include "slic3r/GUI/Gizmos/GLGizmoRotate.hpp"
|
|
#include "slic3r/GUI/Gizmos/GLGizmoFlatten.hpp"
|
|
#include "slic3r/GUI/Gizmos/GLGizmoSlaSupports.hpp"
|
|
#include "slic3r/GUI/Gizmos/GLGizmoFdmSupports.hpp"
|
|
#include "slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.hpp"
|
|
// BBS
|
|
#include "slic3r/GUI/Gizmos/GLGizmoAdvancedCut.hpp"
|
|
#include "slic3r/GUI/Gizmos/GLGizmoHollow.hpp"
|
|
|
|
#endif //slic3r_GLGizmos_hpp_
|