Salome HOME
840a64df6f031a5bc90e4f8ccb2399b11ee8bb4d
[modules/shaper.git] / src / PartSet / PartSet_OperationSketchBase.cpp
1 // File:        PartSet_OperationSketchBase.cpp
2 // Created:     20 Apr 2014
3 // Author:      Natalia ERMOLAEVA
4
5 #include <PartSet_OperationSketchBase.h>
6
7 #include <SketchPlugin_Feature.h>
8 #include <SketchPlugin_ConstraintLength.h>
9
10 #include <V3d_View.hxx>
11 #include <AIS_Shape.hxx>
12 #include <AIS_DimensionSelectionMode.hxx>
13
14 #include <QKeyEvent>
15
16 #ifdef _DEBUG
17 #include <QDebug>
18 #endif
19
20 using namespace std;
21
22 PartSet_OperationSketchBase::PartSet_OperationSketchBase(const QString& theId,
23                                                              QObject* theParent)
24 : ModuleBase_Operation(theId, theParent)
25 {
26 }
27
28 PartSet_OperationSketchBase::~PartSet_OperationSketchBase()
29 {
30 }
31
32 boost::shared_ptr<GeomAPI_Shape> PartSet_OperationSketchBase::preview(
33                                       FeaturePtr theFeature)
34 {
35   boost::shared_ptr<SketchPlugin_Feature> aFeature = 
36                               boost::dynamic_pointer_cast<SketchPlugin_Feature>(theFeature);
37   if (!aFeature)
38     return boost::shared_ptr<GeomAPI_Shape>();
39   return aFeature->preview();
40 }
41
42 std::map<FeaturePtr, boost::shared_ptr<GeomAPI_Shape> >
43                                                      PartSet_OperationSketchBase::subPreview() const
44 {
45   return std::map<FeaturePtr, boost::shared_ptr<GeomAPI_Shape> >();
46 }
47
48 std::list<int> PartSet_OperationSketchBase::getSelectionModes(FeaturePtr theFeature) const
49 {
50   std::list<int> aModes;
51   if (theFeature->getKind() == SKETCH_CONSTRAINT_LENGTH_KIND) {
52       aModes.clear();
53       aModes.push_back(AIS_DSM_Text);
54       aModes.push_back(AIS_DSM_Line);
55   }
56   else {
57     aModes.push_back(AIS_Shape::SelectionMode((TopAbs_ShapeEnum)TopAbs_VERTEX));
58     aModes.push_back(AIS_Shape::SelectionMode((TopAbs_ShapeEnum)TopAbs_EDGE));
59   }
60   return aModes;
61 }
62 FeaturePtr PartSet_OperationSketchBase::createFeature(const bool theFlushMessage)
63 {
64   FeaturePtr aFeature = ModuleBase_Operation::createFeature(theFlushMessage);
65   if (aFeature)
66     emit featureConstructed(aFeature, FM_Activation);
67   return aFeature;
68 }
69
70
71 void PartSet_OperationSketchBase::mousePressed(QMouseEvent* theEvent, Handle_V3d_View theView,
72                                                const std::list<XGUI_ViewerPrs>& theSelected,
73                                                const std::list<XGUI_ViewerPrs>& theHighlighted)
74 {
75 }
76 void PartSet_OperationSketchBase::mouseReleased(QMouseEvent* theEvent, Handle_V3d_View theView,
77                                                 const std::list<XGUI_ViewerPrs>& theSelected,
78                                                 const std::list<XGUI_ViewerPrs>& theHighlighted)
79 {
80 }
81 void PartSet_OperationSketchBase::mouseMoved(QMouseEvent* theEvent, Handle(V3d_View) theView)
82 {
83 }
84 void PartSet_OperationSketchBase::mouseDoubleClick(QMouseEvent* theEvent, Handle_V3d_View theView,
85                                                    const std::list<XGUI_ViewerPrs>& theSelected,
86                                                    const std::list<XGUI_ViewerPrs>& theHighlighted)
87 {
88 }
89
90 void PartSet_OperationSketchBase::keyReleased(const int theKey)
91 {
92   switch (theKey) {
93     case Qt::Key_Escape: {
94       abort();
95     }
96     break;
97     default:
98     break;
99   }
100 }
101
102 void PartSet_OperationSketchBase::keyReleased(std::string theName, QKeyEvent* theEvent)
103 {
104   keyReleased(theEvent->key());
105 }
106
107 void PartSet_OperationSketchBase::restartOperation(const std::string& theType,
108                                                    FeaturePtr theFeature)
109 {
110   emit launchOperation(theType, theFeature);
111 }