Salome HOME
Feature #102: Display of Lambert coordinates.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_GeoreferencementDlg.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_GEOREFERENCEMENT_H
24 #define HYDROGUI_GEOREFERENCEMENT_H
25
26 #include "HYDROGUI_InputPanel.h"
27
28 class SUIT_ViewWindow;
29
30 class QGroupBox;
31 class QButtonGroup;
32 class QTableWidget;
33 class QPushButton;
34
35 class HYDROGUI_GeoreferencementDlg : public HYDROGUI_InputPanel
36 {
37   Q_OBJECT
38
39   class Delegate;
40
41 public:
42   enum ProfilesMode { AllProfiles, SelectedProfiles };
43
44   struct ProfileGeoData
45   {
46     double Xg;
47     double Yg;
48     double Xd;
49     double Yd;
50
51     bool isIncomplete, isEmpty;
52
53     ProfileGeoData() :
54       isEmpty( true ), isIncomplete( false ) {}
55
56     ProfileGeoData( const QString& theXg, const QString& theYg, 
57                     const QString& theXd, const QString& theYd );
58
59     ProfileGeoData( double theXg, double theYg, 
60                     double theXd, double theYd )
61       : Xg( theXg ), Yg( theYg ), Xd( theXd ), Yd( theYd ),
62       isIncomplete(false), isEmpty(false) {}
63   };
64   typedef QMap< QString, ProfileGeoData > ProfilesGeoDataMap;
65
66 public:
67   HYDROGUI_GeoreferencementDlg( HYDROGUI_Module* theModule, const QString& theTitle );
68   virtual ~HYDROGUI_GeoreferencementDlg();
69
70   void                       reset();
71
72   void                       setMode( const int theMode );
73
74   void                       setData( const ProfilesGeoDataMap& theMap );
75   void                       getData( ProfilesGeoDataMap& theMap );
76
77   bool                       isModified() const;
78
79 public slots:
80   void                       onMousePress( SUIT_ViewWindow*, QMouseEvent* );
81
82 protected slots:
83   void                       onModeActivated( int );
84   void                       onDataChanged();
85
86 signals:
87   void                       modeActivated( int );
88   void                       updateSelection();
89
90 private:
91   QButtonGroup* myModeButtons;
92   QPushButton* myUpdateSelBtn;
93   QTableWidget* myTable;
94
95   bool myIsModified;
96 };
97
98 #endif