Salome HOME
0acdd0bc9b7aa8ab8ffb01817f67747708ca3302
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ImportImageOp.h
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef HYDROGUI_IMPORTIMAGEOP_H
24 #define HYDROGUI_IMPORTIMAGEOP_H
25
26 #include "HYDROGUI_Operation.h"
27 #include "HYDROGUI_ImportImageDlg.h"
28
29 #include <HYDROData_Image.h>
30
31 #include <QImage>
32
33 class GraphicsView_ViewManager;
34 class SUIT_ViewManager;
35 class HYDROGUI_PrsImage;
36
37 class HYDROGUI_ImportImageOp : public HYDROGUI_Operation
38 {
39   Q_OBJECT
40
41 public:
42   HYDROGUI_ImportImageOp( HYDROGUI_Module* theModule, const bool theIsEdit );
43   virtual ~HYDROGUI_ImportImageOp();
44
45 protected:
46   virtual void               startOperation();
47   virtual void               abortOperation();
48   virtual void               commitOperation();
49
50   virtual HYDROGUI_InputPanel* createInputPanel() const;
51
52   virtual bool               processApply( int& theUpdateFlags, QString& theErrorMsg );
53   bool                       isReferenceCorrect() const;
54
55 protected slots:
56   virtual void               onApply();
57
58   void                       onCreatePreview( QImage );
59   void                       onActivatePointSelection( int );
60   void                       onPointCoordChanged( bool, int, bool, int );
61   void                       onModeActivated( int );
62   void                       onRefImageActivated( const QString& );
63   void                       onSetCIsUsed( bool theCIsUsed );
64
65   void                       onLastViewClosed( SUIT_ViewManager* );
66
67   void                       onPointSelected();
68   void                       onRefPointSelected();
69   void                       onPointSelected( bool theIsRefImage );
70
71 private:
72   void                       closePreview();
73   void                       closeView( GraphicsView_ViewManager* &aViewMgr );
74
75   bool                       checkPoints( const QPointF& thePointA,
76                                           const QPointF& thePointB,
77                                           const QPointF& thePointC,
78                                           const bool     theIsByTwoPoints,
79                                           const QString& theLineErrMsg,
80                                           const QString& thePoinErrMsg,
81                                           QString&       theErrorMsg,
82                                           const bool     theIsToCheckInvertibles ) const;
83
84   /**
85    * Build the local-global points mapping.
86    */
87   void                       computeTrsfData( HYDROData_Image::TransformationMode theTrsfMode,
88                                               bool theIsByTwoPoints,
89                                               const QPoint& theLocalPointA,
90                                               const QPoint& theLocalPointB,
91                                               const QPoint& theLocalPointC,
92                                               const QPointF& theGlobalPointA,
93                                               const QPointF& theGlobalPointB,
94                                               const QPointF& theGlobalPointC,
95                                               HYDROGUI_ImportImageDlg::TransformationDataMap& theDataMap ) const;
96
97   /**
98    * Set transformation points A,B,C to the image presentation.
99    */
100   void                       setPresentationTrsfPoints( HYDROGUI_PrsImage* thePrs, 
101                                                         bool theIsByTwoPoints,
102                                                         const QPoint theLocalPointA, 
103                                                         const QPoint theLocalPointB, 
104                                                         const QPoint theLocalPointC );
105
106   /*
107    * Initialize the combobox in the dialog with the list of available reference images
108    */
109   void                       getReferenceDataList(
110                                  HYDROGUI_ImportImageDlg::PrsPointDataList& theList ) const;
111
112 private:
113   bool                       myIsEdit;
114   Handle(HYDROData_Image)    myEditedObject;
115
116   SUIT_ViewManager*          myActiveViewManager;  //!< The previous view to come back to after the operation
117
118   GraphicsView_ViewManager*  myPreviewViewManager; //!< The operation preview window
119   GraphicsView_ViewManager*  myRefViewManager;     //!< The reference image view window
120   HYDROGUI_PrsImage*         myPreviewPrs;         //!< The loaded image preview presentation
121   HYDROGUI_PrsImage*         myRefPreviewPrs;      //!< The reference image presentation
122
123   QImage                     myImage;              //!< The loaded image to import
124
125   int                        myPointType;
126 };
127
128 #endif