Salome HOME
Merge remote-tracking branch 'origin/BR_v14_rc' into BR_SHAPE_RECOGNITION
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_RecognizeContoursDlg.cxx
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #include "HYDROGUI_RecognizeContoursDlg.h"
20
21 #include <QGroupBox>
22 #include <QListWidget>
23 #include <QVBoxLayout>
24
25
26 HYDROGUI_RecognizeContoursDlg::HYDROGUI_RecognizeContoursDlg( HYDROGUI_Module* theModule, const QString& theTitle )
27 : HYDROGUI_InputPanel( theModule, theTitle )
28 {
29   // List of recognized polylines
30   QGroupBox* aPolylinesGroup = new QGroupBox( tr( "RECOGNIZED_POLYLINES" ), mainFrame() );
31   myPolylines = new QListWidget( aPolylinesGroup );
32   myPolylines->setSelectionMode( QListWidget::ExtendedSelection );
33   myPolylines->setEditTriggers( QListWidget::NoEditTriggers );
34   myPolylines->setViewMode( QListWidget::ListMode );
35   myPolylines->setSortingEnabled( false );
36
37   QBoxLayout* aPolylinesLayout = new QVBoxLayout;
38   aPolylinesLayout->setMargin( 5 );
39   aPolylinesLayout->setSpacing( 5 );
40   aPolylinesLayout->addWidget( myPolylines );
41   aPolylinesGroup->setLayout( aPolylinesLayout );
42
43   // Layout
44   addWidget( aPolylinesGroup );
45
46   // Conections
47   connect( myPolylines, SIGNAL( itemSelectionChanged() ), this, SLOT( onItemSelectionChanged() ) );
48 }
49
50 HYDROGUI_RecognizeContoursDlg::~HYDROGUI_RecognizeContoursDlg()
51 {
52 }
53
54 void HYDROGUI_RecognizeContoursDlg::reset()
55 {
56   myPolylines->clear();
57 }
58
59 void HYDROGUI_RecognizeContoursDlg::setPolylineNames( const QStringList& theNames )
60 {
61   myPolylines->clear();
62   myPolylines->addItems( theNames );
63 }
64
65 void HYDROGUI_RecognizeContoursDlg::setSelectedPolylineNames( const QStringList& theNames )
66 {
67   myPolylines->clearSelection();
68
69   foreach( const QString aName, theNames ) {
70     QList<QListWidgetItem*> anItems = myPolylines->findItems( aName, Qt::MatchExactly );
71     if ( anItems.count() == 1 ) {
72       anItems.first()->setSelected( true );
73     }
74   }
75 }
76
77 void HYDROGUI_RecognizeContoursDlg::onItemSelectionChanged()
78 {
79   emit selectionChanged( getSelectedtPolylineNames() );
80 }
81
82 QStringList HYDROGUI_RecognizeContoursDlg::getSelectedtPolylineNames() const
83 {
84   QStringList aSelectedNames;
85
86   QList<QListWidgetItem*> aSelectedItems = myPolylines->selectedItems();
87   foreach( const QListWidgetItem* anItem, aSelectedItems ) {
88     aSelectedNames << anItem->text();
89   }
90
91   return aSelectedNames;
92 }