Salome HOME
Access to 'Invalid value' of altitude from Bathymetry is added.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Tool.cxx
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 #include "HYDROGUI_Tool.h"
24
25 #include "HYDROGUI_DataModel.h"
26 #include "HYDROGUI_Module.h"
27 #include "HYDROGUI_Prs.h"
28
29 #include <HYDROData_Document.h>
30 #include <HYDROData_Iterator.h>
31
32 #include <GraphicsView_Viewer.h>
33
34 #include <LightApp_Application.h>
35 #include <LightApp_DataOwner.h>
36 #include <LightApp_SelectionMgr.h>
37
38 #include <QtxWorkstack.h>
39
40 #include <STD_TabDesktop.h>
41
42 #include <SUIT_Study.h>
43 #include <SUIT_ViewManager.h>
44 #include <SUIT_ViewWindow.h>
45
46 #include <QTextCodec>
47
48 // Definition of this id allows to use 'latin1' (Qt alias for 'ISO-8859-1')
49 // encoding instead of default 'System'
50 #define USE_LATIN1_ENCODING
51
52 QString HYDROGUI_Tool::ToQString( const TCollection_AsciiString& src )
53 {
54 #ifdef USE_LATIN1_ENCODING
55   QTextCodec* codec = QTextCodec::codecForName( "latin1" ); // alias for ISO-8859-1
56 #else
57   QTextCodec* codec = QTextCodec::codecForLocale();
58 #endif
59   QString res;
60   if ( !src.IsEmpty() )
61     res = codec ? codec->toUnicode( (char*)src.ToCString(), src.Length() ) :
62       QString( (char*)src.ToCString() );
63   return res;
64 }
65
66 QString HYDROGUI_Tool::ToQString( const TCollection_ExtendedString& src )
67 {
68   return QString( (QChar*)src.ToExtString(), src.Length() );
69 }
70
71 QString HYDROGUI_Tool::ToQString( const Handle(TCollection_HAsciiString)& src )
72 {
73   if( src.IsNull() )
74     return QString();
75   else
76     return ToQString( src->String() );
77 }
78
79 QString HYDROGUI_Tool::ToQString( const Handle(TCollection_HExtendedString)& src )
80 {
81   if( src.IsNull() )
82     return QString();
83   return ToQString( src->String() );
84 }
85
86 TCollection_AsciiString HYDROGUI_Tool::ToAsciiString( const QString& src )
87 {
88   TCollection_AsciiString res;
89   if( !src.isNull() )
90   {
91 #ifdef USE_LATIN1_ENCODING
92     QTextCodec* codec = QTextCodec::codecForName( "latin1" ); // alias for ISO-8859-1
93 #else
94     QTextCodec* codec = QTextCodec::codecForLocale();
95 #endif
96     if( codec )
97     {
98       QByteArray str = codec->fromUnicode( src );
99       res = TCollection_AsciiString( (Standard_CString)str.constData() );
100     }
101     else
102       res = TCollection_AsciiString( src.toLatin1().data() );
103   }
104   return res;
105 }
106
107 TCollection_ExtendedString HYDROGUI_Tool::ToExtString( const QString& src )
108 {
109   if( src.isEmpty() )
110     return TCollection_ExtendedString();
111
112   Standard_Integer len = src.length();
113   Standard_ExtString extStr = new Standard_ExtCharacter[ ( len + 1 ) * 2 ];
114   memcpy( (void*)extStr, src.unicode(), len * 2 );
115   ((short*)extStr)[ len ] = 0;
116
117   TCollection_ExtendedString trg( extStr );
118   delete [] extStr;
119   return trg;
120 }
121
122 Handle(TCollection_HAsciiString) HYDROGUI_Tool::ToHAsciiString( const QString& src )
123 {
124   return new TCollection_HAsciiString( ToAsciiString( src ) );
125 }
126
127 Handle(TCollection_HExtendedString) HYDROGUI_Tool::ToHExtString( const QString& src )
128 {
129   return new TCollection_HExtendedString( ToExtString( src ) );
130 }
131
132 void HYDROGUI_Tool::LambertToDouble( const int theDegrees,
133                                      const int theMinutes,
134                                      const double theSeconds,
135                                      double& theCoord )
136 {
137   // ouv: check the case of negative degrees
138   theCoord = theDegrees * 3600 + theMinutes * 60 + theSeconds;
139 }
140
141 void HYDROGUI_Tool::DoubleToLambert( const double theCoord,
142                                      int& theDegrees,
143                                      int& theMinutes,
144                                      double& theSeconds )
145 {
146   // ouv: check the case of negative degrees
147   theDegrees = int( theCoord / 3600 );
148
149   double aRemainder = theCoord - theDegrees * 3600;
150   theMinutes = int( aRemainder / 60 );
151
152   theSeconds = aRemainder - theMinutes * 60;
153 }
154
155 void HYDROGUI_Tool::SetActiveViewManager( HYDROGUI_Module* theModule,
156                                           SUIT_ViewManager* theViewManager )
157 {
158   if( theViewManager )
159     if( SUIT_ViewWindow* aViewWindow = theViewManager->getActiveView() )
160       if( STD_TabDesktop* aTabDesktop = dynamic_cast<STD_TabDesktop*>( theModule->getApp()->desktop() ) )
161         if( QtxWorkstack* aWorkstack = aTabDesktop->workstack() )
162           aWorkstack->setActiveWindow( aViewWindow );
163 }
164
165 void HYDROGUI_Tool::GetPrsSubObjects( HYDROGUI_Module* theModule,
166                                       HYDROData_SequenceOfObjects& theSeq )
167 {
168   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
169   if( aDocument.IsNull() )
170     return;
171
172   HYDROData_Iterator anIterator( aDocument, KIND_IMAGE );
173   for( ; anIterator.More(); anIterator.Next() )
174   {
175     Handle(HYDROData_Object) anObject = anIterator.Current();
176     if( !anObject.IsNull() )
177       theSeq.Append( anObject );
178   }
179
180   anIterator = HYDROData_Iterator( aDocument, KIND_POLYLINE );
181   for( ; anIterator.More(); anIterator.Next() )
182   {
183     Handle(HYDROData_Object) anObject = anIterator.Current();
184     if( !anObject.IsNull() )
185       theSeq.Append( anObject );
186   }
187 }
188
189 HYDROGUI_Prs* HYDROGUI_Tool::GetPresentation( const Handle(HYDROData_Object)& theObj,
190                                               const GraphicsView_ObjectList& theObjects )
191 {
192   if( !theObj.IsNull() )
193   {
194     GraphicsView_ObjectListIterator anIter( theObjects );
195     while( anIter.hasNext() )
196     {
197       if( HYDROGUI_Prs* aPrs = dynamic_cast<HYDROGUI_Prs*>( anIter.next() ) )
198       {
199         Handle(HYDROData_Object) anObj = aPrs->getObject();
200         if( !anObj.IsNull() && anObj->Label() == theObj->Label() )
201           return aPrs;
202       }
203     }
204   }
205   return NULL;
206 }
207
208 GraphicsView_ObjectList HYDROGUI_Tool::GetPrsList( GraphicsView_ViewPort* theViewPort )
209 {
210   GraphicsView_ObjectList aList;
211   if( theViewPort )
212   {
213     GraphicsView_ObjectListIterator anIter( theViewPort->getObjects() );
214     while( anIter.hasNext() )
215       if( HYDROGUI_Prs* aPrs = dynamic_cast<HYDROGUI_Prs*>( anIter.next() ) )
216         aList.append( aPrs );
217   }
218   return aList;
219 }
220
221 HYDROData_SequenceOfObjects HYDROGUI_Tool::GetSelectedObjects( HYDROGUI_Module* theModule )
222 {
223   HYDROData_SequenceOfObjects aSeq;
224
225   HYDROGUI_DataModel* aModel = theModule->getDataModel();
226
227   SUIT_SelectionMgr* aSelectionMgr = theModule->getApp()->selectionMgr();
228   SUIT_DataOwnerPtrList anOwners;
229   aSelectionMgr->selected( anOwners );
230
231   foreach( SUIT_DataOwner* aSUITOwner, anOwners )
232   {
233     if( LightApp_DataOwner* anOwner = dynamic_cast<LightApp_DataOwner*>( aSUITOwner ) )
234     {
235       Handle(HYDROData_Object) anObject = aModel->objectByEntry( anOwner->entry(), KIND_UNKNOWN );
236       if( !anObject.IsNull() )
237         aSeq.Append( anObject );
238     }
239   }
240   return aSeq;
241 }
242
243 Handle(HYDROData_Object) HYDROGUI_Tool::GetSelectedObject( HYDROGUI_Module* theModule )
244 {
245   HYDROData_SequenceOfObjects aSeq = GetSelectedObjects( theModule );
246   if( !aSeq.IsEmpty() )
247     return aSeq.First();
248   return NULL;
249 }
250
251 Handle(HYDROData_Object) HYDROGUI_Tool::FindObjectByName( HYDROGUI_Module* theModule,
252                                                           const QString& theName,
253                                                           const ObjectKind theObjectKind )
254 {
255   Handle(HYDROData_Object) anObject;
256
257   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
258   if( aDocument.IsNull() )
259     return anObject;
260
261   HYDROData_Iterator anIter( aDocument, theObjectKind );
262   for( ; anIter.More(); anIter.Next() )
263   {
264     Handle(HYDROData_Object) anObjectRef = anIter.Current();
265     if( !anObjectRef.IsNull() && anObjectRef->GetName() == theName )
266     {
267       anObject = anObjectRef;
268       break;
269     }
270   }
271   return anObject;
272 }
273
274 QString HYDROGUI_Tool::GenerateObjectName( HYDROGUI_Module* theModule,
275                                            const QString& thePrefix )
276 {
277   QString aName;
278   int anId = 1;
279   while( anId < 100 )
280   {
281     aName = QString( "%1_%2" ).arg( thePrefix ).arg( QString::number( anId++ ) );
282
283     // check that there are no other objects with the same name in the document
284     Handle(HYDROData_Object) anObject = FindObjectByName( theModule, aName, KIND_UNKNOWN );
285     if( anObject.IsNull() )
286       break;
287   }
288   return aName;
289 }
290
291 size_t HYDROGUI_Tool::GetActiveGraphicsViewId( HYDROGUI_Module* theModule )
292 {
293   size_t aViewId = 0;
294   SUIT_ViewManager* aViewMgr = theModule->getApp()->activeViewManager();
295   if( !aViewMgr || aViewMgr->getType() != GraphicsView_Viewer::Type() )
296     return aViewId;
297
298   if( SUIT_ViewModel* aViewer = aViewMgr->getViewModel() )
299     aViewId = (size_t)aViewer;
300   return aViewId;
301 }
302
303 QList<size_t> HYDROGUI_Tool::GetGraphicsViewIdList( HYDROGUI_Module* theModule )
304 {
305   QList<size_t> aList;
306   ViewManagerList aViewMgrs;
307   theModule->getApp()->viewManagers( GraphicsView_Viewer::Type(), aViewMgrs );
308   QListIterator<SUIT_ViewManager*> anIter( aViewMgrs );
309   while( anIter.hasNext() )
310   {
311     if( SUIT_ViewManager* aViewMgr = anIter.next() )
312     {
313       if( SUIT_ViewModel* aViewer = aViewMgr->getViewModel() )
314         aList.append( (size_t)aViewer );
315     }
316   }
317   return aList;
318 }