Salome HOME
refs #430: incorrect coordinates in dump polyline
[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                                            QStringList& theBrowseObjectsEntries );
54   bool                       isReferenceCorrect() const;
55
56 protected slots:
57   virtual void               onApply();
58
59   void                       onCreatePreview( QImage );
60   void                       onActivatePointSelection( int );
61   void                       onPointCoordChanged( bool, int, bool, int );
62   void                       onModeActivated( int );
63   void                       onRefImageActivated( const QString& );
64   void                       onSetCIsUsed( bool theCIsUsed );
65
66   void                       onLastViewClosed( SUIT_ViewManager* );
67
68   void                       onPointSelected();
69   void                       onRefPointSelected();
70   void                       onPointSelected( bool theIsRefImage );
71
72 private:
73   void                       closePreview();
74   void                       closeView( GraphicsView_ViewManager* &aViewMgr );
75
76   bool                       checkPoints( const QPointF& thePointA,
77                                           const QPointF& thePointB,
78                                           const QPointF& thePointC,
79                                           const bool     theIsByTwoPoints,
80                                           const QString& theLineErrMsg,
81                                           const QString& thePoinErrMsg,
82                                           QString&       theErrorMsg,
83                                           const bool     theIsToCheckInvertibles ) const;
84
85   /**
86    * Build the local-global points mapping.
87    */
88   void                       computeTrsfData( HYDROData_Image::TransformationMode theTrsfMode,
89                                               bool theIsByTwoPoints,
90                                               const QPoint& theLocalPointA,
91                                               const QPoint& theLocalPointB,
92                                               const QPoint& theLocalPointC,
93                                               const QPointF& theGlobalPointA,
94                                               const QPointF& theGlobalPointB,
95                                               const QPointF& theGlobalPointC,
96                                               HYDROGUI_ImportImageDlg::TransformationDataMap& theDataMap ) const;
97
98   /**
99    * Set transformation points A,B,C to the image presentation.
100    */
101   void                       setPresentationTrsfPoints( HYDROGUI_PrsImage* thePrs, 
102                                                         bool theIsByTwoPoints,
103                                                         const QPoint theLocalPointA, 
104                                                         const QPoint theLocalPointB, 
105                                                         const QPoint theLocalPointC );
106
107   /*
108    * Initialize the combobox in the dialog with the list of available reference images
109    */
110   void                       getReferenceDataList(
111                                  HYDROGUI_ImportImageDlg::PrsPointDataList& theList ) const;
112
113 private:
114   bool                       myIsEdit;
115   Handle(HYDROData_Image)    myEditedObject;
116
117   SUIT_ViewManager*          myActiveViewManager;  //!< The previous view to come back to after the operation
118
119   GraphicsView_ViewManager*  myPreviewViewManager; //!< The operation preview window
120   GraphicsView_ViewManager*  myRefViewManager;     //!< The reference image view window
121   HYDROGUI_PrsImage*         myPreviewPrs;         //!< The loaded image preview presentation
122   HYDROGUI_PrsImage*         myRefPreviewPrs;      //!< The reference image presentation
123
124   QImage                     myImage;              //!< The loaded image to import
125
126   int                        myPointType;
127 };
128
129 #endif