Salome HOME
Image positioning by two points.
[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_DataObject.h"
27 #include "HYDROGUI_Module.h"
28 #include "HYDROGUI_Prs.h"
29
30 #include <HYDROData_Document.h>
31 #include <HYDROData_Iterator.h>
32 #include <HYDROData_ImmersibleZone.h>
33 #include <HYDROData_Tool.h>
34
35 #include <GraphicsView_Viewer.h>
36
37 #include <LightApp_Application.h>
38 #include <LightApp_DataOwner.h>
39 #include <LightApp_SelectionMgr.h>
40
41 #include <OCCViewer_ViewModel.h>
42
43 #include <QtxWorkstack.h>
44
45 #include <STD_TabDesktop.h>
46
47 #include <SUIT_Session.h>
48 #include <SUIT_Study.h>
49 #include <SUIT_ViewManager.h>
50 #include <SUIT_ViewWindow.h>
51
52 #include <QDir>
53 #include <QFileInfo>
54 #include <QDockWidget>
55 #include <QTextCodec>
56
57 // Definition of this id allows to use 'latin1' (Qt alias for 'ISO-8859-1')
58 // encoding instead of default 'System'
59 #define USE_LATIN1_ENCODING
60
61 QString HYDROGUI_Tool::ToQString( const TCollection_AsciiString& src )
62 {
63 #ifdef USE_LATIN1_ENCODING
64   QTextCodec* codec = QTextCodec::codecForName( "latin1" ); // alias for ISO-8859-1
65 #else
66   QTextCodec* codec = QTextCodec::codecForLocale();
67 #endif
68   QString res;
69   if ( !src.IsEmpty() )
70     res = codec ? codec->toUnicode( (char*)src.ToCString(), src.Length() ) :
71       QString( (char*)src.ToCString() );
72   return res;
73 }
74
75 QString HYDROGUI_Tool::ToQString( const TCollection_ExtendedString& src )
76 {
77   return QString( (QChar*)src.ToExtString(), src.Length() );
78 }
79
80 QString HYDROGUI_Tool::ToQString( const Handle(TCollection_HAsciiString)& src )
81 {
82   if( src.IsNull() )
83     return QString();
84   else
85     return ToQString( src->String() );
86 }
87
88 QString HYDROGUI_Tool::ToQString( const Handle(TCollection_HExtendedString)& src )
89 {
90   if( src.IsNull() )
91     return QString();
92   return ToQString( src->String() );
93 }
94
95 TCollection_AsciiString HYDROGUI_Tool::ToAsciiString( const QString& src )
96 {
97   TCollection_AsciiString res;
98   if( !src.isNull() )
99   {
100 #ifdef USE_LATIN1_ENCODING
101     QTextCodec* codec = QTextCodec::codecForName( "latin1" ); // alias for ISO-8859-1
102 #else
103     QTextCodec* codec = QTextCodec::codecForLocale();
104 #endif
105     if( codec )
106     {
107       QByteArray str = codec->fromUnicode( src );
108       res = TCollection_AsciiString( (Standard_CString)str.constData() );
109     }
110     else
111       res = TCollection_AsciiString( src.toLatin1().data() );
112   }
113   return res;
114 }
115
116 TCollection_ExtendedString HYDROGUI_Tool::ToExtString( const QString& src )
117 {
118   if( src.isEmpty() )
119     return TCollection_ExtendedString();
120
121   Standard_Integer len = src.length();
122   Standard_ExtString extStr = new Standard_ExtCharacter[ ( len + 1 ) * 2 ];
123   memcpy( (void*)extStr, src.unicode(), len * 2 );
124   ((short*)extStr)[ len ] = 0;
125
126   TCollection_ExtendedString trg( extStr );
127   delete [] extStr;
128   return trg;
129 }
130
131 Handle(TCollection_HAsciiString) HYDROGUI_Tool::ToHAsciiString( const QString& src )
132 {
133   return new TCollection_HAsciiString( ToAsciiString( src ) );
134 }
135
136 Handle(TCollection_HExtendedString) HYDROGUI_Tool::ToHExtString( const QString& src )
137 {
138   return new TCollection_HExtendedString( ToExtString( src ) );
139 }
140
141 int HYDROGUI_Tool::GetActiveStudyId()
142 {
143   if( SUIT_Session* aSession = SUIT_Session::session() )
144     if( SUIT_Application* anApp = aSession->activeApplication() )
145       if( SUIT_Study* aStudy = anApp->activeStudy() )
146         return aStudy->id();
147   return 0;
148 }
149
150 QString HYDROGUI_Tool::GetTempDir( const bool theToCreate )
151 {
152   QString aRes;
153
154   char* tmpdir = getenv ( "HYDRO_TMP_DIR" );
155   if ( tmpdir )
156   {
157     // try to create folder if it does not exist
158     QFileInfo fi( tmpdir );
159     if ( !fi.exists() && theToCreate )
160     {
161       if ( QDir().mkdir( tmpdir ) )
162         QFile::setPermissions( tmpdir, (QFile::Permissions)0x4FFFF );
163        QFileInfo fi( tmpdir );
164        if ( !fi.exists() || !fi.isWritable() )
165          tmpdir = 0;
166     }
167   }
168   if ( !tmpdir )
169     tmpdir = getenv ( "TEMP" );
170   if ( !tmpdir )
171     tmpdir = getenv ( "TMP" );
172   if ( !tmpdir )
173   {
174 #ifdef WNT
175     tmpdir = "C:\\";
176 #else
177     tmpdir = "/tmp";
178 #endif
179   }
180   aRes = tmpdir;
181   
182   QFileInfo fi( aRes );
183   if ( !fi.exists() || !fi.isWritable() )
184     aRes = QString::null;
185
186   return aRes;
187 }
188
189 void HYDROGUI_Tool::SetActiveViewManager( HYDROGUI_Module* theModule,
190                                           SUIT_ViewManager* theViewManager )
191 {
192   if( theViewManager )
193     if( SUIT_ViewWindow* aViewWindow = theViewManager->getActiveView() )
194       if( STD_TabDesktop* aTabDesktop = dynamic_cast<STD_TabDesktop*>( theModule->getApp()->desktop() ) )
195         if( QtxWorkstack* aWorkstack = aTabDesktop->workstack() )
196           aWorkstack->setActiveWindow( aViewWindow );
197 }
198
199 void HYDROGUI_Tool::GetPrsSubObjects( HYDROGUI_Module* theModule,
200                                       HYDROData_SequenceOfObjects& theSeq )
201 {
202   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
203   if( aDocument.IsNull() )
204     return;
205
206   HYDROData_Iterator anIterator( aDocument, KIND_IMAGE );
207   for( ; anIterator.More(); anIterator.Next() )
208   {
209     Handle(HYDROData_Entity) anObject = anIterator.Current();
210     if( !anObject.IsNull() )
211       theSeq.Append( anObject );
212   }
213
214   anIterator = HYDROData_Iterator( aDocument, KIND_POLYLINE );
215   for( ; anIterator.More(); anIterator.Next() )
216   {
217     Handle(HYDROData_Entity) anObject = anIterator.Current();
218     if( !anObject.IsNull() )
219       theSeq.Append( anObject );
220   }
221
222   anIterator = HYDROData_Iterator( aDocument, KIND_IMMERSIBLE_ZONE );
223   for( ; anIterator.More(); anIterator.Next() )
224   {
225     Handle(HYDROData_Entity) anObject = anIterator.Current();
226     if( !anObject.IsNull() )
227       theSeq.Append( anObject );
228   }
229 }
230
231 HYDROGUI_Prs* HYDROGUI_Tool::GetPresentation( const Handle(HYDROData_Entity)& theObj,
232                                               const GraphicsView_ObjectList& theObjects )
233 {
234   if( !theObj.IsNull() )
235   {
236     GraphicsView_ObjectListIterator anIter( theObjects );
237     while( anIter.hasNext() )
238     {
239       if( HYDROGUI_Prs* aPrs = dynamic_cast<HYDROGUI_Prs*>( anIter.next() ) )
240       {
241         Handle(HYDROData_Entity) anObj = aPrs->getObject();
242         if( IsEqual( anObj, theObj ) )
243           return aPrs;
244       }
245     }
246   }
247   return NULL;
248 }
249
250 GraphicsView_ObjectList HYDROGUI_Tool::GetPrsList( GraphicsView_ViewPort* theViewPort )
251 {
252   GraphicsView_ObjectList aList;
253   if( theViewPort )
254   {
255     GraphicsView_ObjectListIterator anIter( theViewPort->getObjects() );
256     while( anIter.hasNext() )
257       if( HYDROGUI_Prs* aPrs = dynamic_cast<HYDROGUI_Prs*>( anIter.next() ) )
258         aList.append( aPrs );
259   }
260   return aList;
261 }
262
263 HYDROData_SequenceOfObjects HYDROGUI_Tool::GetSelectedObjects( HYDROGUI_Module* theModule )
264 {
265   HYDROData_SequenceOfObjects aSeq;
266
267   HYDROGUI_DataModel* aModel = theModule->getDataModel();
268
269   SUIT_SelectionMgr* aSelectionMgr = theModule->getApp()->selectionMgr();
270   SUIT_DataOwnerPtrList anOwners;
271   aSelectionMgr->selected( anOwners );
272
273   QStringList aCollectedNameList; // to avoid duplication
274   foreach( SUIT_DataOwner* aSUITOwner, anOwners )
275   {
276     if( LightApp_DataOwner* anOwner = dynamic_cast<LightApp_DataOwner*>( aSUITOwner ) )
277     {
278       Handle(HYDROData_Entity) anObject = aModel->objectByEntry( anOwner->entry() );
279       if( !anObject.IsNull() )
280       {
281         QString aName = anObject->GetName();
282         if( !aCollectedNameList.contains( aName ) )
283         {
284           aSeq.Append( anObject );
285           aCollectedNameList.append( aName );
286         }
287       }
288     }
289   }
290   return aSeq;
291 }
292
293 Handle(HYDROData_Entity) HYDROGUI_Tool::GetSelectedObject( HYDROGUI_Module* theModule )
294 {
295   HYDROData_SequenceOfObjects aSeq = GetSelectedObjects( theModule );
296   if( !aSeq.IsEmpty() )
297     return aSeq.First();
298   return NULL;
299 }
300
301 ObjectKind HYDROGUI_Tool::GetSelectedPartition( HYDROGUI_Module* theModule )
302 {
303   HYDROGUI_DataModel* aModel = theModule->getDataModel();
304
305   SUIT_SelectionMgr* aSelectionMgr = theModule->getApp()->selectionMgr();
306   SUIT_DataOwnerPtrList anOwners;
307   aSelectionMgr->selected( anOwners );
308
309   if( anOwners.size() != 1 )
310     return KIND_UNKNOWN;
311
312   if( LightApp_DataOwner* anOwner = dynamic_cast<LightApp_DataOwner*>( anOwners.first().operator->() ) )
313   {
314     QString anEntry = anOwner->entry();
315     QString aPrefix = HYDROGUI_DataObject::entryPrefix();
316     if( anEntry.left( aPrefix.length() ) == aPrefix )
317     {
318       anEntry.remove( aPrefix );
319       for( ObjectKind anObjectKind = KIND_UNKNOWN + 1; anObjectKind <= KIND_LAST; anObjectKind++ )
320         if( HYDROGUI_DataModel::partitionName( anObjectKind ) == anEntry )
321           return anObjectKind;
322     }
323   }
324   return KIND_UNKNOWN;
325 }
326
327 Handle(HYDROData_Entity) HYDROGUI_Tool::FindObjectByName( HYDROGUI_Module* theModule,
328                                                           const QString&   theName,
329                                                           const ObjectKind theObjectKind )
330 {
331   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
332   return HYDROData_Tool::FindObjectByName( aDocument, theName, theObjectKind );
333 }
334
335 HYDROData_SequenceOfObjects HYDROGUI_Tool::FindObjectsByNames( HYDROGUI_Module*   theModule,
336                                                                const QStringList& theNames,
337                                                                const ObjectKind   theObjectKind )
338 {
339   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
340   return HYDROData_Tool::FindObjectsByNames( aDocument, theNames, theObjectKind );
341 }
342
343 QString HYDROGUI_Tool::GenerateObjectName( HYDROGUI_Module*   theModule,
344                                            const QString&     thePrefix,
345                                            const QStringList& theUsedNames )
346 {
347   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
348   return HYDROData_Tool::GenerateObjectName( aDocument, thePrefix, theUsedNames );
349 }
350
351 size_t HYDROGUI_Tool::GetActiveViewId( HYDROGUI_Module* theModule,
352                                        const QString&   theViewId )
353 {
354   size_t aViewId = 0;
355   SUIT_ViewManager* aViewMgr = theModule->getApp()->activeViewManager();
356   if( !aViewMgr || ( !theViewId.isEmpty() && aViewMgr->getType() != theViewId ) )
357     return aViewId;
358
359   if( SUIT_ViewModel* aViewer = aViewMgr->getViewModel() )
360     aViewId = (size_t)aViewer;
361   return aViewId;
362 }
363
364 size_t HYDROGUI_Tool::GetActiveGraphicsViewId( HYDROGUI_Module* theModule )
365 {
366   return GetActiveViewId( theModule, GraphicsView_Viewer::Type() );
367 }
368
369 size_t HYDROGUI_Tool::GetActiveOCCViewId( HYDROGUI_Module* theModule )
370 {
371   return GetActiveViewId( theModule, OCCViewer_Viewer::Type() );
372 }
373
374 QList<size_t> getViewIdList( HYDROGUI_Module* theModule,
375                              const QString&   theViewId )
376 {
377   QList<size_t> aList;
378   ViewManagerList aViewMgrs;
379   theModule->getApp()->viewManagers( theViewId, aViewMgrs );
380   QListIterator<SUIT_ViewManager*> anIter( aViewMgrs );
381   while( anIter.hasNext() )
382   {
383     if( SUIT_ViewManager* aViewMgr = anIter.next() )
384     {
385       if( SUIT_ViewModel* aViewer = aViewMgr->getViewModel() )
386         aList.append( (size_t)aViewer );
387     }
388   }
389   return aList;
390 }
391
392 QList<size_t> HYDROGUI_Tool::GetGraphicsViewIdList( HYDROGUI_Module* theModule )
393 {
394   return getViewIdList( theModule, GraphicsView_Viewer::Type() );
395 }
396
397 QList<size_t> HYDROGUI_Tool::GetOCCViewIdList( HYDROGUI_Module* theModule )
398 {
399   return getViewIdList( theModule, OCCViewer_Viewer::Type() );
400 }
401
402 void HYDROGUI_Tool::GetObjectReferences( const Handle(HYDROData_Image)& theImage,
403                                          HYDROData_SequenceOfObjects& theRefObjects,
404                                          QStringList& theRefNames )
405 {
406   if( theImage.IsNull() )
407     return;
408
409   for( int anIndex = 0, aNbRef = theImage->NbReferences(); anIndex < aNbRef; anIndex++ )
410   {
411     Handle(HYDROData_Entity) aRefObj = theImage->Reference( anIndex );
412     if( !aRefObj.IsNull() && !aRefObj->IsRemoved() )
413     {
414       QString aName = aRefObj->GetName();
415       if( !theRefNames.contains( aName ) )
416       {
417         theRefObjects.Append( aRefObj );
418         theRefNames.append( aRefObj->GetName() );
419         if( aRefObj->GetKind() == KIND_IMAGE )
420         {
421           Handle(HYDROData_Image) aRefImage = Handle(HYDROData_Image)::DownCast( aRefObj );
422           if( !aRefImage.IsNull() )
423             GetObjectReferences( aRefImage, theRefObjects, theRefNames );
424         }
425       }
426     }
427   }
428 }
429
430 void HYDROGUI_Tool::GetObjectBackReferences( HYDROGUI_Module* theModule,
431                                              const Handle(HYDROData_Entity)& theObj,
432                                              HYDROData_SequenceOfObjects& theBackRefObjects,
433                                              QStringList& theBackRefNames )
434 {
435   if( theObj.IsNull() )
436     return;
437
438   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
439   if( aDocument.IsNull() )
440     return;
441
442   QString aName = theObj->GetName();
443
444   HYDROData_Iterator anIterator( aDocument, KIND_IMAGE );
445   for( ; anIterator.More(); anIterator.Next() )
446   {
447     Handle(HYDROData_Image) anImage = Handle(HYDROData_Image)::DownCast( anIterator.Current() );
448     if( !anImage.IsNull() )
449     {
450       HYDROData_SequenceOfObjects aRefObjects;
451       QStringList aRefNames;
452       GetObjectReferences( anImage, aRefObjects, aRefNames );
453       if( aRefNames.contains( aName ) )
454       {
455         theBackRefObjects.Append( anImage );
456         theBackRefNames.append( anImage->GetName() );
457       }
458     }
459   }
460 }
461
462
463 QDockWidget* HYDROGUI_Tool::WindowDock( QWidget* wid )
464 {
465   if ( !wid )
466     return 0;
467
468   QDockWidget* dock = 0;
469   QWidget* w = wid->parentWidget();
470   while ( w && !dock )
471   {
472     dock = ::qobject_cast<QDockWidget*>( w );
473     w = w->parentWidget();
474   }
475   return dock;
476 }
477
478 QColor HYDROGUI_Tool::GenerateFillingColor( HYDROGUI_Module*   theModule,
479                                             const QStringList& theZoneNames )
480 {
481   Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
482   return GenerateFillingColor( aDocument, theZoneNames );
483 }
484
485 QColor HYDROGUI_Tool::GenerateFillingColor( const Handle(HYDROData_Document)& theDoc,
486                                             const QStringList&                theZoneNames )
487 {
488   QColor aFillingColor( HYDROData_ImmersibleZone::DefaultFillingColor() );
489
490   int aCounter = 0;
491   int aR = 0, aG = 0, aB = 0;
492   QStringListIterator aZoneNameIter( theZoneNames );
493   while( aZoneNameIter.hasNext() )
494   {
495     const QString& aZoneName = aZoneNameIter.next();
496     Handle(HYDROData_ImmersibleZone) aRefZone = 
497       Handle(HYDROData_ImmersibleZone)::DownCast(
498         HYDROData_Tool::FindObjectByName( theDoc, aZoneName, KIND_IMMERSIBLE_ZONE ) );
499     if( !aRefZone.IsNull() )
500     {
501       QColor aRefColor = aRefZone->GetFillingColor();
502       aR += aRefColor.red();
503       aG += aRefColor.green();
504       aB += aRefColor.blue();
505       aCounter++;
506     }
507   }
508   
509   if( aCounter > 0 )
510   {
511     aFillingColor = QColor( aR / aCounter, aG / aCounter, aB / aCounter );
512   }
513
514   return aFillingColor;
515 }
516