Salome HOME
dc4511f9506db39eb2f354fa127d52f9fdfebd08
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_SubShapeSelectorWdg.cxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // File   : StdMeshersGUI_SubShapeSelectorWdg.cxx
21 // Author : Open CASCADE S.A.S. (dmv)
22 // SMESH includes
23 //
24 #include "StdMeshersGUI_SubShapeSelectorWdg.h"
25
26 // SMESH Includes
27 #include "SMESHGUI_Utils.h"
28 #include "SMESHGUI_VTKUtils.h"
29 #include "SMESH_Actor.h"
30 #include "SMESH_Gen_i.hxx"
31 #include "SMESH_LogicalFilter.hxx"
32 #include "SMESH_PreviewActorsCollection.h"
33 #include "SMESH_Type.h"
34
35 // SALOME GUI includes
36 #include <LightApp_SelectionMgr.h>
37 #include <SALOME_ListIO.hxx>
38 #include <SUIT_OverrideCursor.h>
39 #include <SUIT_ResourceMgr.h>
40 #include <SVTK_Selector.h>
41 #include <SVTK_ViewModel.h>
42 #include <SVTK_ViewWindow.h>
43
44 // GEOM Includes
45 #include <GEOMBase.h>
46 #include <GEOM_TypeFilter.h>
47 #include <GEOM_CompoundFilter.h>
48
49 // Qt includes
50 #include <QPushButton>
51 #include <QGridLayout>
52 #include <QListWidget>
53 #include <QCheckBox>
54 #include <QLineEdit>
55
56 // OCCT includes
57 #include <TColStd_MapOfInteger.hxx>
58 #include <TopoDS_Shape.hxx>
59 #include <TopExp.hxx>
60 #include <TopExp_Explorer.hxx>
61
62
63 #define SPACING 6
64 #define MARGIN 0
65
66 //================================================================================
67 /*!
68  *  Constructor
69  */
70 //================================================================================
71
72 StdMeshersGUI_SubShapeSelectorWdg
73 ::StdMeshersGUI_SubShapeSelectorWdg( QWidget * parent, TopAbs_ShapeEnum aSubShType ): 
74   QWidget( parent ),
75   myPreviewActor( 0 ),
76   myMaxSize( -1 )
77 {
78   QPixmap image0( SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap( "SMESH", tr( "ICON_SELECT" ) ) );
79
80   QGridLayout* edgesLayout = new QGridLayout( this );
81   edgesLayout->setMargin( MARGIN );
82   edgesLayout->setSpacing( SPACING );
83   
84   myListWidget   = new QListWidget( this );
85   myAddButton    = new QPushButton( tr( "SMESH_BUT_ADD" ),    this );
86   myRemoveButton = new QPushButton( tr( "SMESH_BUT_REMOVE" ), this );
87   myInfoLabel    = new QLabel( this );
88   myPrevButton   = new QPushButton( "<<", this );
89   myNextButton   = new QPushButton( ">>", this );
90   myListWidget->setSelectionMode( QListWidget::ExtendedSelection );
91
92   edgesLayout->addWidget(myListWidget,   0, 0, 3, 3);
93   edgesLayout->addWidget(myAddButton,    0, 3);
94   edgesLayout->addWidget(myRemoveButton, 1, 3);
95   edgesLayout->addWidget(myInfoLabel,    3, 0, 1, 3);
96   edgesLayout->addWidget(myPrevButton,   4, 0);
97   edgesLayout->addWidget(myNextButton,   4, 2);
98
99   edgesLayout->setRowStretch(2, 5);
100   edgesLayout->setColumnStretch(1, 5);
101
102   myListWidget->setMinimumWidth(300);
103   myInfoLabel->setMinimumWidth(300);
104   myInfoLabel->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed);
105   myInfoLabel->setAlignment(Qt::AlignCenter);
106
107   mySubShType = aSubShType;
108
109   init();
110 }
111
112 //================================================================================
113 /*!
114  *  Destructor
115  */
116 //================================================================================
117
118 StdMeshersGUI_SubShapeSelectorWdg::~StdMeshersGUI_SubShapeSelectorWdg()
119 {
120   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI )) {
121     if ( myPreviewActor ) {
122       myPreviewActor->RemoveFromRender( myRenderer );
123       aViewWindow->Repaint();
124
125       delete myPreviewActor;
126       myPreviewActor = 0;
127     }
128   }
129   myEntry = "";
130   myParamValue = "";
131   myMainShape.Nullify();
132
133   if ( mySelectionMgr && myFilter )
134     mySelectionMgr->removeFilter( myFilter );
135   delete myFilter; myFilter=0;
136
137   mySelectionMgr->clearSelected();
138
139   SUIT_SelectionFilter* filter;
140   foreach( filter, myGeomFilters )
141     delete filter;
142 }
143
144 //================================================================================
145 /*!
146  *  Create a layout, initialize fields
147  */
148 //================================================================================
149
150 void StdMeshersGUI_SubShapeSelectorWdg::init()
151 {
152   myParamValue = "";
153   myIsNotCorrected = true; // to dont call the GetCorrectedValue method twice
154   myListOfIDs.clear();
155   mySelectedIDs.clear();
156
157   myAddButton->setEnabled( false );
158   myRemoveButton->setEnabled( false );
159
160   mySMESHGUI     = SMESHGUI::GetSMESHGUI();
161   mySelectionMgr = SMESH::GetSelectionMgr( mySMESHGUI );
162   mySelector = (SMESH::GetViewWindow( mySMESHGUI ))->GetSelector();
163
164   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
165     aViewWindow->SetSelectionMode( ActorSelection );
166
167   myFilter=0;
168   //setFilter();
169
170   connect( myAddButton,    SIGNAL(clicked()), SLOT(onAdd()));
171   connect( myRemoveButton, SIGNAL(clicked()), SLOT(onRemove()));
172   connect( myPrevButton,   SIGNAL(clicked()), SLOT(onPrevious()));
173   connect( myNextButton,   SIGNAL(clicked()), SLOT(onNext()));
174   
175   connect( mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(selectionIntoArgument()));
176   connect( myListWidget,   SIGNAL(itemSelectionChanged()),    this, SLOT(onListSelectionChanged()));
177
178   updateState();
179 }
180
181 //================================================================================
182 /*!
183  * \brief Install filters to select sub-shapes of mySubShType or their groups
184  */
185 //================================================================================
186
187 void StdMeshersGUI_SubShapeSelectorWdg::setFilter()
188 {
189   SalomeApp_Study* study = mySMESHGUI->activeStudy();
190   GEOM_TypeFilter* typeFilter = new GEOM_TypeFilter(study, mySubShType, /*isShapeType=*/true );
191   GEOM_CompoundFilter* gpoupFilter = new GEOM_CompoundFilter(study);
192   gpoupFilter->addSubType( mySubShType );
193   myGeomFilters.append( typeFilter );
194   myGeomFilters.append( gpoupFilter );
195   myFilter = new SMESH_LogicalFilter( myGeomFilters, SMESH_LogicalFilter::LO_OR );
196   mySelectionMgr->installFilter( myFilter );
197 }
198
199 //================================================================================
200 /*!
201  *  Create a layout, initialize fields
202  */
203 //================================================================================
204
205 void StdMeshersGUI_SubShapeSelectorWdg::ShowPreview( bool visible)
206 {
207   if ( !myPreviewActor )
208     return;
209
210   if ( myIsShown != visible ) {
211     myPreviewActor->SetShown( visible );
212     
213     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
214       aViewWindow->Repaint();
215
216     myIsShown = visible;
217   }
218 }
219
220 //================================================================================
221 /*!
222  * \brief Clears selected IDs. This is a workaround of a bug that
223  *        SUIT_SelectionMgr::clearSelected() does not emit currentSelectionChanged
224  */
225 //================================================================================
226
227 void StdMeshersGUI_SubShapeSelectorWdg::ClearSelected()
228 {
229   mySelectedIDs.clear();
230   selectionIntoArgument();
231 }
232
233 //=================================================================================
234 // function : selectionIntoArgument()
235 // purpose  : Called when selection as changed or other case
236 //=================================================================================
237 void StdMeshersGUI_SubShapeSelectorWdg::selectionIntoArgument()
238 {
239   if ( !myPreviewActor )
240     return;
241
242   mySelectedIDs.clear();
243
244   // get selected mesh
245   SALOME_ListIO aList;
246   mySelectionMgr->selectedObjects( aList );
247   int nbSel = aList.Extent();
248
249   if (nbSel > 0) {
250     SALOME_ListIteratorOfListIO anIt (aList);
251
252     for ( ; anIt.More(); anIt.Next()) // Loop on selected objects
253     {
254       Handle(SALOME_InteractiveObject) IO = anIt.Value();
255
256       GEOM::GEOM_Object_var aGeomObj = GetGeomObjectByEntry( IO->getEntry() );
257       if ( !CORBA::is_nil( aGeomObj ) ) { // Selected Object From Study
258         GEOM::GEOM_Object_var aGeomFatherObj = aGeomObj->GetMainShape();
259         QString aFatherEntry = "";
260         QString aMainFatherEntry = "";
261         TopoDS_Shape shape;
262         if ( !CORBA::is_nil( aGeomFatherObj ) ) {
263           // Get Main Shape
264           GEOM::GEOM_Object_var aGeomMain = GetGeomObjectByEntry( myEntry.c_str() );
265           if ( !CORBA::is_nil( aGeomMain ) && aGeomMain->GetType() == 37 ) {  // Main Shape is a Group
266             GEOM::GEOM_Object_var aMainFatherObj = aGeomMain->GetMainShape();
267             if ( !CORBA::is_nil( aMainFatherObj ) )
268               aMainFatherEntry = aMainFatherObj->GetStudyEntry();
269           }
270           aFatherEntry = aGeomFatherObj->GetStudyEntry();
271         }
272
273         if (( ! aFatherEntry.isEmpty() ) &&
274             ( aFatherEntry == myEntry.c_str() || aFatherEntry == aMainFatherEntry ) )
275         {
276           if ( aGeomObj->GetType() == 37 /*GEOM_GROUP*/ ) { // Selected Group that belongs the main object
277             GEOMBase::GetShape(aGeomObj, shape);
278             if ( !shape.IsNull() ) {
279               TopExp_Explorer exp( shape, mySubShType );
280               for ( ; exp.More(); exp.Next() ) {
281                 int index = myPreviewActor->GetIndexByShape( exp.Current() );
282                 if ( index ) {
283                   mySelectedIDs.append( index );
284                   myPreviewActor->HighlightID( index );
285                 }
286               }
287             }
288           } else if ( aGeomObj->GetType() == 28 /*GEOM_SUBSHAPE*/  ) {
289             GEOMBase::GetShape(aGeomObj, shape); 
290             if ( !shape.IsNull() && shape.ShapeType() == mySubShType ) {
291               int index = myPreviewActor->GetIndexByShape( shape );
292               if ( index ) {
293                 mySelectedIDs.append( index );
294                 myPreviewActor->HighlightID( index );
295               }
296             }
297           }
298         }
299       } else { // Selected Actor from Actor Collection
300         QString anEntry = IO->getEntry();
301         QString str = "_";
302         int index = anEntry.lastIndexOf( str );
303         anEntry.remove(0, index+1);
304         int ind = anEntry.toInt();
305         if ( ind )
306           mySelectedIDs.append( ind );
307       }
308     }
309   }
310   // update add button
311   myAddButton->setEnabled( ( myListWidget->count() < myMaxSize || myMaxSize == -1 ) &&
312                            mySelectedIDs.size() > 0 &&
313                            ( mySelectedIDs.size() <= myMaxSize || myMaxSize == -1 ) );
314
315   //Connect Selected Ids in viewer and dialog's Ids list
316   bool signalsBlocked = myListWidget->blockSignals( true );
317   myListWidget->clearSelection();
318   if ( mySelectedIDs.size() > 0 ) {
319     for (int i = 0; i < mySelectedIDs.size(); i++) {
320       QString anID = QString(" %1").arg( mySelectedIDs.at(i) );
321       QList<QListWidgetItem*> anItems = myListWidget->findItems ( anID, Qt::MatchExactly );
322       QListWidgetItem* item;
323       foreach(item, anItems)
324         item->setSelected(true);
325     }
326   }
327   myListWidget->blockSignals( signalsBlocked );
328 }
329
330 //=================================================================================
331 // function : onAdd()
332 // purpose  : Called when Add Button Clicked
333 //=================================================================================
334 void StdMeshersGUI_SubShapeSelectorWdg::onAdd()
335 {
336   if ( mySelectedIDs.size() < 1 )
337     return;
338
339   myListWidget->blockSignals( true );
340   for (int i = 0; i < mySelectedIDs.size() && (myMaxSize == -1 || myListOfIDs.size() < myMaxSize); i++) {
341     if ( myListOfIDs.indexOf( mySelectedIDs.at(i) ) == -1 ) {
342       QString anID = QString(" %1").arg( mySelectedIDs.at(i) );
343
344       QListWidgetItem* anItem = new QListWidgetItem( anID, myListWidget );
345       anItem->setSelected(true);
346       
347       myListOfIDs.append( mySelectedIDs.at(i) );
348     }
349   }
350   onListSelectionChanged();
351   myListWidget->blockSignals( false );
352
353   mySelectedIDs.clear();
354   myAddButton->setEnabled( false );
355 }
356          
357 //=================================================================================
358 // function : onRemove()
359 // purpose  : Called when Remove Button Clicked
360 //=================================================================================
361 void StdMeshersGUI_SubShapeSelectorWdg::onRemove()
362 {
363   if ( myListWidget->count() < 1 )
364     return;
365
366   myListWidget->blockSignals( true );
367   QList<QListWidgetItem*> selItems = myListWidget->selectedItems();
368   QListWidgetItem* item;
369   foreach(item, selItems) {
370     QString idStr = item->text();
371     int id = idStr.toInt();
372
373     int index = myListOfIDs.indexOf( id );
374     myListOfIDs.removeAt( index );
375     delete item;
376   }
377
378   onListSelectionChanged();
379   myListWidget->blockSignals( false );
380   
381   myAddButton->setEnabled( !mySelectedIDs.isEmpty() );
382 }
383
384 void StdMeshersGUI_SubShapeSelectorWdg::onPrevious()
385 {
386   if ( myPreviewActor ) {
387     myPreviewActor->previous();
388     myListWidget->clearSelection();
389     updateButtons();
390     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
391       aViewWindow->Repaint();
392   }
393 }
394
395 void StdMeshersGUI_SubShapeSelectorWdg::onNext()
396 {
397   if ( myPreviewActor ) {
398     myPreviewActor->next();
399     myListWidget->clearSelection();
400     updateButtons();
401     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
402       aViewWindow->Repaint();
403   }
404 }
405
406 //=================================================================================
407 // function : onListSelectionChanged()
408 // purpose  : Called when selection in element list is changed
409 //=================================================================================
410 void StdMeshersGUI_SubShapeSelectorWdg::onListSelectionChanged()
411 {
412   if ( !myPreviewActor )
413     return;
414
415   mySelectionMgr->clearSelected();
416   TColStd_MapOfInteger aIndexes;
417   QList<QListWidgetItem*> selItems = myListWidget->selectedItems();
418   QListWidgetItem* anItem;
419   foreach(anItem, selItems)
420     myPreviewActor->HighlightID( anItem->text().toInt() );
421
422   // update remove button
423   myRemoveButton->setEnabled( selItems.size() > 0 );
424
425   emit selectionChanged();
426 }
427
428 //=================================================================================
429 // function : setGeomShape
430 // purpose  : Called to set geometry whose sub-shapes are selected
431 //================================================================================
432 void StdMeshersGUI_SubShapeSelectorWdg::SetGeomShapeEntry( const QString& theEntry,
433                                                            const QString& theMainShapeEntry )
434 {
435   if ( !theEntry.isEmpty() || theMainShapeEntry.isEmpty() )
436   {
437     myParamValue = theEntry;
438     myEntry      = theEntry.toStdString();
439     myMainEntry  = theMainShapeEntry.toStdString();
440
441     if ( myMainEntry.empty() ) myMainEntry = myEntry;
442     if ( myEntry.empty() )     myEntry     = myMainEntry;
443     if ( myMainEntry.length() > myEntry.length() &&
444          theMainShapeEntry.startsWith( theEntry ))
445       std::swap( myMainEntry, myEntry );
446
447     myGeomShape = GetTopoDSByEntry( myEntry.c_str() );
448     if ( myEntry == myMainEntry )
449       myMainShape = myGeomShape;
450     else
451       myMainShape = GetTopoDSByEntry( myMainEntry.c_str() );
452     updateState();
453     myIsNotCorrected = true;
454   }
455 }
456
457 //=================================================================================
458 // function : updateState
459 // purpose  : update Widget state
460 //=================================================================================
461 void StdMeshersGUI_SubShapeSelectorWdg::updateState()
462 {
463   bool state = false;
464   if ( !myGeomShape.IsNull() )
465     state = true;
466   myInfoLabel->setVisible( false );
467   myPrevButton->setVisible( false );
468   myNextButton->setVisible( false );
469   
470   myListWidget->setEnabled( state );
471   myAddButton->setEnabled( mySelectedIDs.size() > 0 );
472   
473   if (state) {
474     SUIT_OverrideCursor wc;
475     myPreviewActor = new SMESH_PreviewActorsCollection();
476     myPreviewActor->SetSelector( mySelector );
477     myPreviewActor->Init( myGeomShape, myMainShape, mySubShType, myEntry.c_str() );
478     myPreviewActor->SetShown( false );
479     myIsShown = false;
480     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI )) {
481       myRenderer = aViewWindow->getRenderer();
482       myPreviewActor->AddToRender( myRenderer );
483       aViewWindow->Repaint();
484     }
485     updateButtons();
486   }
487 }
488
489 //=================================================================================
490 // function : GetGeomObjectByEntry
491 // purpose  : Called to get GeomObject
492 //=================================================================================
493 GEOM::GEOM_Object_var StdMeshersGUI_SubShapeSelectorWdg::GetGeomObjectByEntry( const QString& theEntry )
494 {
495   GEOM::GEOM_Object_var aGeomObj;
496   SALOMEDS::Study_var aStudy = SMESHGUI::GetSMESHGen()->GetCurrentStudy();
497   if ( !aStudy->_is_nil() )
498   {
499     SALOMEDS::SObject_var aSObj = aStudy->FindObjectID( theEntry.toLatin1().data() );
500     if (!aSObj->_is_nil() )
501     {
502       CORBA::Object_var obj = aSObj->GetObject();
503       aGeomObj = GEOM::GEOM_Object::_narrow(obj);
504       aSObj->UnRegister();
505     }
506   }
507   return aGeomObj._retn();
508 }
509
510 //=================================================================================
511 // function : setObjectByEntry
512 // purpose  : Called to get GeomObject
513 //=================================================================================
514 TopoDS_Shape StdMeshersGUI_SubShapeSelectorWdg::GetTopoDSByEntry( const QString& theEntry )
515 {
516   TopoDS_Shape shape;
517   GEOM::GEOM_Object_var aGeomObj = GetGeomObjectByEntry( theEntry );
518   GEOMBase::GetShape(aGeomObj, shape);
519   return shape;
520 }
521
522 //=================================================================================
523 // function : GetListOfIds
524 // purpose  : Called to get the list of SubShapes IDs
525 //=================================================================================
526 SMESH::long_array_var StdMeshersGUI_SubShapeSelectorWdg::GetListOfIDs()
527 {
528   SMESH::long_array_var anArray = new SMESH::long_array;
529
530   // if ( myMainEntry != "" && myIsNotCorrected )
531   //   myListOfIDs = GetCorrectedListOfIDs( true );
532
533   int size = myListOfIDs.size();
534   anArray->length( size );
535   for (int i = 0; i < size; i++)
536     anArray[i] = myListOfIDs.at(i);
537
538   return anArray;
539 }
540
541 //=================================================================================
542 // function : SetListOfIds
543 // purpose  : Called to set the list of SubShapes IDs. Returns false if any ID is invalid
544 //=================================================================================
545 bool StdMeshersGUI_SubShapeSelectorWdg::SetListOfIDs( SMESH::long_array_var theIds)
546 {
547   mySelectedIDs.clear();
548   myListOfIDs.clear();
549   int size = theIds->length();
550   for ( int i = 0; i < size; i++ )
551     mySelectedIDs.append( theIds[ i ] );
552
553   myListWidget->blockSignals( true );
554   myListWidget->clear();
555   myListWidget->blockSignals( false );
556
557   bool isOk = true;
558   if ( myPreviewActor )
559   {
560     for ( int i = 0; i < size && isOk; i++ )
561       isOk = myPreviewActor->IsValidIndex( theIds[ i ] );
562   }
563   else if ( !myMainShape.IsNull() )
564   {
565     TopTools_IndexedMapOfShape aMainMap;
566     TopExp::MapShapes(myMainShape, aMainMap);
567     for ( int i = 0; i < size && isOk; i++ )
568       isOk = ( theIds[ i ] > 0 && theIds[ i ] <= aMainMap.Extent() );
569   }
570   // mySelectedIDs = GetCorrectedListOfIDs( false, &isOk );
571   onAdd();
572   return isOk;
573 }
574
575 //=================================================================================
576 // function : SetMainShapeEntry
577 // purpose  : Called to set the Entry of main shape of the mesh
578 //=================================================================================
579 // void StdMeshersGUI_SubShapeSelectorWdg::SetMainShapeEntry( const QString& theEntry )
580 // {
581 //   myMainEntry = theEntry;
582 //   myMainShape = GetTopoDSByEntry( theEntry );
583 //   myIsNotCorrected = true;
584 // }
585
586 //=================================================================================
587 // function : GetMainShapeEntry
588 // purpose  : Called to get the Main Object Entry
589 //=================================================================================
590 const char* StdMeshersGUI_SubShapeSelectorWdg::GetMainShapeEntry()
591 {
592   if ( myMainEntry.empty() ) myMainEntry = "";
593   return myMainEntry.c_str();
594 }
595
596 //=================================================================================
597 // function : GetCorrectedListOfIds
598 // purpose  : Called to convert the list of IDs from sub-shape IDs to main shape IDs
599 //=================================================================================
600 // QList<int>
601 // StdMeshersGUI_SubShapeSelectorWdg::GetCorrectedListOfIDs( bool fromSubshapeToMainshape,
602 //                                                           bool* isOK )
603 // {
604 //   if (( myMainShape.IsNull() || myGeomShape.IsNull() ) &&  fromSubshapeToMainshape )
605 //     return myListOfIDs;
606 //   else if (( myMainShape.IsNull() /*||*/&& myGeomShape.IsNull() ) &&  !fromSubshapeToMainshape )
607 //     return mySelectedIDs;
608
609 //   if ( !fromSubshapeToMainshape ) // called from SetListOfIDs
610 //   {
611 //     if ( myMainShape.IsNull() )
612 //       std::swap( myMainShape, myGeomShape );
613 //   }
614
615 //   QList<int> aList;
616 //   TopTools_IndexedMapOfShape aGeomMap, aMainMap;
617 //   TopExp::MapShapes(myMainShape, aMainMap);
618 //   if ( !myGeomShape.IsNull() )
619 //     TopExp::MapShapes(myGeomShape, aGeomMap);
620
621 //   bool ok = true;
622 //   if ( fromSubshapeToMainshape ) // convert indexes from sub-shape to mainshape
623 //   {
624 //     int size = myListOfIDs.size();
625 //     for (int i = 0; i < size; i++) {
626 //       int index = myListOfIDs.at(i);
627 //       if ( aGeomMap.Extent() < index )
628 //       {
629 //         ok = false;
630 //       }
631 //       else
632 //       {
633 //         TopoDS_Shape aSubShape = aGeomMap.FindKey( index );
634 //         if ( mySubShType != aSubShape.ShapeType() )
635 //           ok = false;
636 //         if ( !aMainMap.Contains( aSubShape ))
637 //           ok = false;
638 //         else
639 //           index = aMainMap.FindIndex( aSubShape );
640 //       }
641 //       aList.append( index );
642 //     }
643 //     myIsNotCorrected = false;
644 //   }
645 //   else // convert indexes from main shape to sub-shape, or just check indices
646 //   {
647 //     int size = mySelectedIDs.size();
648 //     for (int i = 0; i < size; i++) {
649 //       int index = mySelectedIDs.at(i);
650 //       if ( aMainMap.Extent() < index )
651 //       {
652 //         ok = false;
653 //       }
654 //       else
655 //       {
656 //         TopoDS_Shape aSubShape = aMainMap.FindKey( index );
657 //         if ( mySubShType != aSubShape.ShapeType() )
658 //           ok = false;
659 //         if ( !aGeomMap.Contains( aSubShape ) && !aGeomMap.IsEmpty() )
660 //           ok = false;
661 //         else
662 //           index = aGeomMap.FindIndex( aSubShape );
663 //       }
664 //       aList.append( index );
665 //     }
666 //   }
667 //   if ( isOK ) *isOK = ok;
668
669 //   return aList;
670 // }
671
672 void StdMeshersGUI_SubShapeSelectorWdg::updateButtons()
673 {
674   if ( myPreviewActor ) {
675     int total = myPreviewActor->count();
676     int chunk = myPreviewActor->currentChunk();
677     int chunkSize = myPreviewActor->chunkSize();
678     int imin = chunk*chunkSize+1;
679     int imax = std::min((chunk+1)*chunkSize, total);
680     bool vis = imax > 0 && total > chunkSize;
681     myInfoLabel->setVisible( vis );
682     myPrevButton->setVisible( vis );
683     myNextButton->setVisible( vis );
684     myInfoLabel->setText( tr( "X_FROM_Y_ITEMS_SHOWN" ).arg(imin).arg(imax).arg(total) );
685     myPrevButton->setEnabled( myPreviewActor->hasPrevious() );
686     myNextButton->setEnabled( myPreviewActor->hasNext() );
687   }
688 }