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