Salome HOME
refs #80 - Sketch base GUI: create/draw point, circle and arc
[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
9 #include <V3d_View.hxx>
10 #include <AIS_Shape.hxx>
11
12 #include <QKeyEvent>
13
14 #ifdef _DEBUG
15 #include <QDebug>
16 #endif
17
18 using namespace std;
19
20 PartSet_OperationSketchBase::PartSet_OperationSketchBase(const QString& theId,
21                                                              QObject* theParent)
22 : ModuleBase_Operation(theId, theParent)
23 {
24 }
25
26 PartSet_OperationSketchBase::~PartSet_OperationSketchBase()
27 {
28 }
29
30 boost::shared_ptr<GeomAPI_Shape> PartSet_OperationSketchBase::preview(
31                                       FeaturePtr theFeature)
32 {
33   boost::shared_ptr<SketchPlugin_Feature> aFeature = 
34                               boost::dynamic_pointer_cast<SketchPlugin_Feature>(theFeature);
35   if (!aFeature)
36     return boost::shared_ptr<GeomAPI_Shape>();
37   return aFeature->preview();
38 }
39
40 std::map<FeaturePtr, boost::shared_ptr<GeomAPI_Shape> >
41                                                      PartSet_OperationSketchBase::subPreview() const
42 {
43   return std::map<FeaturePtr, boost::shared_ptr<GeomAPI_Shape> >();
44 }
45
46 #include <AIS_DimensionSelectionMode.hxx>
47 #include <SketchPlugin_ConstraintLength.h>
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 }