Salome HOME
Fix IPAL19670(Qt4 porting: Selection filters library - Unexpected error message).
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_FilterLibraryDlg.cxx
1 // SMESH SMESHGUI : GUI for SMESH component
2 //
3 // Copyright (C) 2003  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 // File   : SMESHGUI_FilterLibraryDlg.cxx
23 // Author : Sergey LITONIN, Open CASCADE S.A.S.
24 //
25
26 // SMESH includes
27 #include "SMESHGUI_FilterLibraryDlg.h"
28
29 #include "SMESHGUI.h"
30 #include "SMESHGUI_FilterUtils.h"
31 #include "SMESHGUI_FilterDlg.h"
32
33 // SALOME GUI includes
34 #include <SUIT_Session.h>
35 #include <SUIT_Desktop.h>
36 #include <SUIT_FileDlg.h>
37 #include <SUIT_MessageBox.h>
38 #include <SUIT_ResourceMgr.h>
39
40 #include <LightApp_Application.h>
41
42 // Qt includes
43 #include <QApplication>
44 #include <QVBoxLayout>
45 #include <QHBoxLayout>
46 #include <QGridLayout>
47 #include <QLineEdit>
48 #include <QPushButton>
49 #include <QGroupBox>
50 #include <QLabel>
51 #include <QListWidget>
52 #include <QFileInfo>
53 #include <QDir>
54 #include <QKeyEvent>
55
56 #define SPACING 6
57 #define MARGIN  11
58
59 /*!
60  *  Class       : SMESHGUI_FilterLibraryDlg::Dialog
61  *  Description : Dialog for opening filter library
62  */
63
64 class SMESHGUI_FilterLibraryDlg::Dialog : public SUIT_FileDlg
65 {
66 public:
67   Dialog(QWidget* theParent, const bool theToOpen);
68   virtual ~Dialog();
69
70 protected:
71   virtual bool acceptData();
72 };
73
74 SMESHGUI_FilterLibraryDlg::Dialog::Dialog (QWidget*   theParent,
75                                            const bool theToOpen)
76   : SUIT_FileDlg(theParent, theToOpen)
77 {
78 }
79
80 SMESHGUI_FilterLibraryDlg::Dialog::~Dialog()
81 {
82 }
83
84 bool SMESHGUI_FilterLibraryDlg::Dialog::acceptData()
85 {
86 //  if (mode() != QFileDialogP::AnyFile)
87 //    return SUIT_FileDlg::acceptData();
88
89   return true;
90 }
91
92 /*!
93  *  Class       : SMESHGUI_FilterLibraryDlg
94  *  Description : Dialog to specify filters for VTK viewer
95  */
96
97 //=======================================================================
98 // name    : SMESHGUI_FilterLibraryDlg::SMESHGUI_FilterLibraryDlg
99 // Purpose : Constructor
100 //=======================================================================
101 SMESHGUI_FilterLibraryDlg::SMESHGUI_FilterLibraryDlg (SMESHGUI* theModule,
102                                                       QWidget* parent,
103                                                       const QList<int>& theTypes,
104                                                       const int theMode)
105   : QDialog( parent ),
106     mySMESHGUI( theModule )
107 {
108   setModal(false);
109   construct(theTypes, theMode);
110 }
111
112 //=======================================================================
113 // name    : SMESHGUI_FilterLibraryDlg::SMESHGUI_FilterLibraryDlg
114 // Purpose : Constructor
115 //=======================================================================
116 SMESHGUI_FilterLibraryDlg::SMESHGUI_FilterLibraryDlg (SMESHGUI* theModule,
117                                                       QWidget* parent,
118                                                       const int   theType,
119                                                       const int   theMode)
120   : QDialog( parent ),
121     mySMESHGUI( theModule )
122 {
123   setModal(true);
124   QList<int> aTypes;
125   aTypes.append(theType);
126   construct(aTypes, theMode);
127 }
128
129 //=======================================================================
130 // name    : SMESHGUI_FilterLibraryDlg::construct
131 // Purpose : Construct dialog (called by constructor)
132 //=======================================================================
133 void SMESHGUI_FilterLibraryDlg::construct (const QList<int>& theTypes,
134                                            const int theMode)
135 {
136   myTypes = theTypes;
137   myMode  = theMode;
138
139   QVBoxLayout* aDlgLay = new QVBoxLayout(this);
140   aDlgLay->setMargin(MARGIN);
141   aDlgLay->setSpacing(SPACING);
142
143   myMainFrame        = createMainFrame  (this);
144   QWidget* aBtnFrame = createButtonFrame(this);
145
146   aDlgLay->addWidget(myMainFrame);
147   aDlgLay->addWidget(aBtnFrame);
148
149   aDlgLay->setStretchFactor(myMainFrame, 1);
150
151   myHelpFileName = "selection_filter_library_page.html";
152   
153   Init(myTypes, myMode);
154 }
155
156 //=======================================================================
157 // name    : SMESHGUI_FilterLibraryDlg::createMainFrame
158 // Purpose : Create frame containing dialog's input fields
159 //=======================================================================
160 QWidget* SMESHGUI_FilterLibraryDlg::createMainFrame (QWidget* theParent)
161 {
162   QWidget* aMainFrame = new QWidget(theParent);
163   QGridLayout* aMainLay = new QGridLayout(aMainFrame);
164   aMainLay->setMargin(0);
165   aMainLay->setSpacing(SPACING);
166
167   // library name
168
169   QLabel* aFileLab = new QLabel(tr("LIBRARY_FILE"), aMainFrame);
170   myFileName = new QLineEdit(aMainFrame);
171   myOpenBtn = new QPushButton(aMainFrame);
172   myOpenBtn->setIcon(SUIT_Session::session()->resourceMgr()->loadPixmap(
173     "SUIT", tr("ICON_FILE_OPEN")));
174
175   // filters list box
176
177   QGroupBox* aFiltersGrp = new QGroupBox(tr("FILTER_NAMES"), aMainFrame);
178   QGridLayout* aLay = new QGridLayout(aFiltersGrp);
179   aLay->setMargin(MARGIN);
180   aLay->setSpacing(SPACING);
181
182   myListBox = new QListWidget(aFiltersGrp);
183
184   myAddBtn    = new QPushButton(tr("ADD"), aFiltersGrp);
185   myDeleteBtn = new QPushButton(tr("DELETE"), aFiltersGrp);
186
187   aLay->addWidget(myListBox,   0, 0, 3, 1);
188   aLay->addWidget(myAddBtn,    0, 1);
189   aLay->addWidget(myDeleteBtn, 1, 1);
190   aLay->setRowStretch(2, 5);
191
192   // filter name
193
194   myNameGrp = new QWidget(aMainFrame);
195   QHBoxLayout* myNameGrpLayout = new QHBoxLayout(myNameGrp);
196   myNameGrpLayout->setMargin(0);
197   myNameGrpLayout->setSpacing(SPACING);
198
199   myNameGrpLayout->addWidget( new QLabel(tr("FILTER_NAME"), myNameGrp) );
200   myNameGrpLayout->addWidget( myName = new QLineEdit(myNameGrp) );
201
202   // table
203
204   myTable = new SMESHGUI_FilterTable( mySMESHGUI, aMainFrame, myTypes);
205   myTable->SetEditable(myMode == EDIT);
206   myTable->SetLibsEnabled(false);
207
208   myListBox->setMinimumHeight((int)(myTable->sizeHint().height() * 0.5));
209   //myListBox->setRowMode(QListWidget::FitToWidth); //VSR : TODO ???
210   myListBox->setSelectionMode(QListWidget::SingleSelection);
211
212   myOpenBtn->setAutoDefault(false);
213   myAddBtn->setAutoDefault(false);
214   myDeleteBtn->setAutoDefault(false);
215
216   aMainLay->addWidget(aFileLab,    0, 0);
217   aMainLay->addWidget(myFileName,  0, 1);
218   aMainLay->addWidget(myOpenBtn,   0, 2);
219   aMainLay->addWidget(aFiltersGrp, 1, 0, 1, 3);
220   aMainLay->addWidget(myNameGrp,   2, 0, 1, 3);
221   aMainLay->addWidget(myTable,     3, 0, 1, 3);
222
223   // connect signals and slots
224
225   connect(myFileName, SIGNAL(returnPressed()), this, SLOT(onReturnPressed()));
226   connect(myOpenBtn, SIGNAL(clicked()), this, SLOT(onBrowse()));
227
228   connect(myListBox, SIGNAL( currentItemChanged( QListWidgetItem*, QListWidgetItem* ) ),
229           this, SLOT( onFilterChanged( QListWidgetItem*, QListWidgetItem* ) ) );
230
231   connect(myAddBtn, SIGNAL(clicked()), this, SLOT(onAddBtnPressed()));
232   connect(myDeleteBtn, SIGNAL(clicked()), this, SLOT(onDeleteBtnPressed()));
233
234   connect(myName, SIGNAL(textChanged(const QString&)),
235            this, SLOT(onFilterNameChanged(const QString&)));
236
237   connect(myTable, SIGNAL(EntityTypeChanged(const int)),
238            this, SLOT(onEntityTypeChanged(const int)));
239
240   connect(myTable, SIGNAL(NeedValidation()), this, SLOT(onNeedValidation()));
241
242   return aMainFrame;
243 }
244
245 //=======================================================================
246 // name    : SMESHGUI_FilterLibraryDlg::createButtonFrame
247 // Purpose : Create frame containing buttons
248 //=======================================================================
249 QWidget* SMESHGUI_FilterLibraryDlg::createButtonFrame (QWidget* theParent)
250 {
251   QGroupBox* aGrp = new QGroupBox(theParent);
252   QHBoxLayout* aLay = new QHBoxLayout(aGrp);
253   aLay->setMargin(MARGIN);
254   aLay->setSpacing(SPACING);
255
256   myButtons[ BTN_OK    ] = new QPushButton(tr("SMESH_BUT_OK"   ), aGrp);
257   myButtons[ BTN_Apply ] = new QPushButton(tr("SMESH_BUT_APPLY"), aGrp);
258
259   myButtons[ BTN_Cancel ] = new QPushButton(tr("SMESH_BUT_CANCEL"), aGrp);
260   myButtons[ BTN_Close  ] = new QPushButton(tr("SMESH_BUT_CLOSE"),  aGrp);
261   myButtons[ BTN_Help   ] = new QPushButton(tr("SMESH_BUT_HELP"),   aGrp);
262
263   aLay->addWidget(myButtons[ BTN_OK     ]);
264   aLay->addSpacing(10);
265   aLay->addWidget(myButtons[ BTN_Apply  ]);
266   aLay->addSpacing(10);
267   aLay->addStretch();
268   aLay->addWidget(myButtons[ BTN_Cancel ]);
269   aLay->addWidget(myButtons[ BTN_Close  ]);
270   aLay->addWidget(myButtons[ BTN_Help   ]);
271
272   connect(myButtons[ BTN_OK     ], SIGNAL(clicked()), SLOT(onOk()));
273   connect(myButtons[ BTN_Cancel ], SIGNAL(clicked()), SLOT(onClose()));
274   connect(myButtons[ BTN_Close  ], SIGNAL(clicked()), SLOT(onClose()));
275   connect(myButtons[ BTN_Apply  ], SIGNAL(clicked()), SLOT(onApply()));
276   connect(myButtons[ BTN_Help   ], SIGNAL(clicked()), SLOT(onHelp()));
277
278   QMap<int, QPushButton*>::iterator anIter;
279   for (anIter = myButtons.begin(); anIter != myButtons.end(); ++anIter)
280     anIter.value()->setAutoDefault(false);
281
282   updateMainButtons();
283
284   return aGrp;
285 }
286
287 //=======================================================================
288 // name    : SMESHGUI_FilterLibraryDlg::updateMainButtons
289 // Purpose : Update visibility of main buttons (OK, Cancel, Close ...)
290 //=======================================================================
291 void SMESHGUI_FilterLibraryDlg::updateMainButtons()
292 {
293   if (myTypes.count() == 1) {
294     myButtons[ BTN_Cancel ]->show();
295     myButtons[ BTN_Apply  ]->hide();
296     myButtons[ BTN_Close  ]->hide();
297   } else {
298     myButtons[ BTN_Cancel ]->hide();
299     myButtons[ BTN_Apply  ]->show();
300     myButtons[ BTN_Close  ]->show();
301   }
302 }
303
304 //=======================================================================
305 // name    : SMESHGUI_FilterLibraryDlg::~SMESHGUI_FilterLibraryDlg
306 // Purpose : Destructor
307 //=======================================================================
308 SMESHGUI_FilterLibraryDlg::~SMESHGUI_FilterLibraryDlg()
309 {
310 }
311
312 //=======================================================================
313 // name    : SMESHGUI_FilterLibraryDlg::Init
314 // Purpose : Init dialog fields, connect signals and slots, show dialog
315 //=======================================================================
316 void SMESHGUI_FilterLibraryDlg::Init (const int type, const int theMode)
317 {
318   QList<int> aTypes;
319   aTypes.append(type);
320   Init(aTypes, theMode);
321 }
322
323 //=======================================================================
324 // name    : SMESHGUI_FilterLibraryDlg::Init
325 // Purpose : Init dialog fields, connect signals and slots, show dialog
326 //=======================================================================
327 void SMESHGUI_FilterLibraryDlg::Init (const QList<int>& theTypes,
328                                       const int theMode)
329 {
330   myMode = theMode;
331   myTypes = theTypes;
332   myTable->Init(theTypes);
333   myCurrFilterName = "";
334   myCurrFilter = -1;
335   myListBox->blockSignals(true);
336   myListBox->clear();
337   myListBox->blockSignals(false);
338   myName->clear();
339   myTable->Clear();
340
341   updateControlsVisibility();
342   setEnabled(true);
343
344   connect( mySMESHGUI, SIGNAL(SignalDeactivateActiveDialog()), SLOT(onDeactivate()));
345   connect( mySMESHGUI, SIGNAL(SignalCloseAllDialogs()), SLOT(onClose()));
346
347   if (myMode == ADD_TO)
348   {
349     setWindowTitle(tr("ADD_TO_TLT"));
350     if (myFileName->text().isEmpty())
351       myFileName->setText(getDefaultLibraryName());
352     processNewLibrary();
353   }
354   else if (myMode == COPY_FROM)
355   {
356     setWindowTitle(tr("COPY_FROM_TLT"));
357     if (myFileName->text().isEmpty())
358       myFileName->setText(getDefaultLibraryName());
359     processNewLibrary();
360     if (myListBox->count() > 0)
361       myListBox->setCurrentItem(0);
362   }
363   else
364   {
365     setWindowTitle(tr("EDIT_LIB_TLT"));
366     if (myFileName->text().isEmpty())
367       myFileName->setText(getDefaultLibraryName());
368     processNewLibrary();
369     if (myListBox->count() > 0)
370       myListBox->setCurrentItem(0);
371   }
372
373   this->show();
374
375   updateMainButtons();
376   isPermissionValid(false);
377 }
378
379 //=======================================================================
380 // name    : SMESHGUI_FilterLibraryDlg::updateControlsVisibility
381 // Purpose : Update visibility of controls in accordance with myMode
382 //=======================================================================
383 void SMESHGUI_FilterLibraryDlg::updateControlsVisibility()
384 {
385   if (myMode == ADD_TO)
386   {
387     myNameGrp->show();
388     myNameGrp->setEnabled(true);
389     myAddBtn->hide();
390     myDeleteBtn->hide();
391     myTable->SetEditable(false);
392   }
393   else if (myMode == COPY_FROM)
394   {
395     myNameGrp->hide();
396     myNameGrp->setEnabled(false);
397     myAddBtn->hide();
398     myDeleteBtn->hide();
399     myTable->SetEditable(false);
400   }
401   else if (myMode == EDIT)
402   {
403     myNameGrp->show();
404     myNameGrp->setEnabled(true);
405     myAddBtn->show();
406     myDeleteBtn->show();
407     myTable->SetEditable(true);
408   }
409
410   qApp->processEvents();
411   updateGeometry();
412   adjustSize();
413 }
414
415 //=======================================================================
416 // name    : SMESHGUI_FilterLibraryDlg::onApply
417 // Purpose : SLOT called when "Apply" button pressed.
418 //=======================================================================
419 bool SMESHGUI_FilterLibraryDlg::onApply()
420 {
421   if (!isValid(true) || !isPermissionValid(false))
422     return false;
423
424   if (myLibrary->_is_nil()) {
425     SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_WRN_WARNING"),
426                                  tr("LIBRARY_IS_NOT_LOADED"));
427     return false;
428   }
429
430   if (myFileName->text() != myLibrary->GetFileName())
431     myLibrary->SetFileName( myFileName->text().toLatin1().constData() );
432
433   bool aResult = false;
434
435   if (myMode == COPY_FROM || myListBox->count() == 0) {
436     aResult = true;
437   } else if (myMode == EDIT || myMode == ADD_TO) {
438     SMESH::Filter_var aFilter = createFilter();
439     if (!myListBox->selectedItems().empty() && 
440         !myLibrary->Replace(myCurrFilterName.toLatin1().constData(),
441                             myName->text().toLatin1().constData(),
442                             aFilter.in())) {
443       SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_ERROR"),
444                                    tr("ERROR_OF_EDITING"));
445       aResult = false;
446     }
447     else
448       aResult = true;
449   }
450
451   if (aResult && myMode != COPY_FROM)
452     aResult = myLibrary->Save();
453
454   if (aResult) {
455     char* aFileName = myLibrary->GetFileName();
456     getDefaultLibraryName() = QString(aFileName);
457     delete aFileName;
458   } else if (myMode != COPY_FROM) {
459     SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_ERROR"),
460                                  tr("ERROR_OF_SAVING"));
461   } else {
462   }
463
464   return aResult;
465 }
466
467 //=======================================================================
468 // name    : SMESHGUI_FilterLibraryDlg::onOk
469 // Purpose : SLOT called when "Ok" button pressed.
470 //           Assign filters VTK viewer and close dialog
471 //=======================================================================
472 void SMESHGUI_FilterLibraryDlg::onOk()
473 {
474   if (onApply())
475   {
476     disconnect( mySMESHGUI, 0, this, 0);
477     mySMESHGUI->ResetState();
478     accept();
479   }
480 }
481
482 //=======================================================================
483 // name    : SMESHGUI_FilterLibraryDlg::onClose
484 // Purpose : SLOT called when "Close" button pressed. Close dialog
485 //=======================================================================
486 void SMESHGUI_FilterLibraryDlg::onClose()
487 {
488   disconnect( mySMESHGUI, 0, this, 0);
489   mySMESHGUI->ResetState();
490   reject();
491 }
492
493 //=================================================================================
494 // function : onHelp()
495 // purpose  :
496 //=================================================================================
497 void SMESHGUI_FilterLibraryDlg::onHelp()
498 {
499   LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
500   if (app) 
501     app->onHelpContextModule(mySMESHGUI ? app->moduleName(mySMESHGUI->moduleName()) : QString(""), myHelpFileName);
502   else {
503     QString platform;
504 #ifdef WIN32
505     platform = "winapplication";
506 #else
507     platform = "application";
508 #endif
509     SUIT_MessageBox::warning(this, tr("WRN_WARNING"),
510                              tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
511                              arg(app->resourceMgr()->stringValue("ExternalBrowser", 
512                                                                  platform)).
513                              arg(myHelpFileName));
514   }
515 }
516
517 //=======================================================================
518 // name    : SMESHGUI_FilterLibraryDlg::onDeactivate
519 // Purpose : SLOT called when dialog must be deativated
520 //=======================================================================
521 void SMESHGUI_FilterLibraryDlg::onDeactivate()
522 {
523   setEnabled(false);
524 }
525
526 //=======================================================================
527 // name    : SMESHGUI_FilterLibraryDlg::enterEvent
528 // Purpose : Event filter
529 //=======================================================================
530 void SMESHGUI_FilterLibraryDlg::enterEvent(QEvent*)
531 {
532   setEnabled(true);
533 }
534
535 //=================================================================================
536 // function : closeEvent()
537 // purpose  : Close dialog
538 //=================================================================================
539 void SMESHGUI_FilterLibraryDlg::closeEvent(QCloseEvent* e)
540 {
541   onClose();
542 }
543
544 //=======================================================================
545 // name    : SMESHGUI_FilterLibraryDlg::getFileName
546 // Purpose : Get file name
547 //=======================================================================
548 QString SMESHGUI_FilterLibraryDlg::getFileName() const
549 {
550   return myFileName != 0 ? myFileName->text() : QString("");
551 }
552
553 //================================================================
554 // Function : setFileName
555 // Purpose  : Set file name to line edit
556 //================================================================
557 void SMESHGUI_FilterLibraryDlg::setFileName(const QString& txt, const bool autoExt)
558 {
559   if (myFileName == 0)
560     return;
561   myFileName->setText(autoExt ? autoExtension(txt) : txt);
562 }
563
564 //================================================================
565 // Function : autoExtension
566 // Purpose  : Append extension to the file name
567 //================================================================
568 QString SMESHGUI_FilterLibraryDlg::autoExtension(const QString& theFileName) const
569 {
570   QString anExt = theFileName.section('.', -1);
571   return anExt != "xml" && anExt != "XML" ? theFileName + ".xml" : theFileName;
572 }
573
574 //================================================================
575 // Function : filterWildCards
576 // Purpose  :
577 //================================================================
578 QStringList SMESHGUI_FilterLibraryDlg::filterWildCards(const QString& theFilter) const
579 {
580   QStringList res;
581
582   int b = theFilter.lastIndexOf("(");
583   int e = theFilter.lastIndexOf(")");
584   if (b != -1 && e != -1)
585   {
586     QString content = theFilter.mid(b + 1, e - b - 1).trimmed();
587     QStringList lst = content.split(" ", QString::SkipEmptyParts);
588     for (QStringList::const_iterator it = lst.begin(); it != lst.end(); ++it)
589       if ((*it).indexOf(".") != -1)
590         res.append((*it).trimmed());
591   }
592   return res;
593 }
594
595 //=======================================================================
596 // name    : SMESHGUI_FilterLibraryDlg::prepareFilters
597 // Purpose : Prepare filters for dialog
598 //=======================================================================
599 QStringList SMESHGUI_FilterLibraryDlg::prepareFilters() const
600 {
601   static QStringList aList;
602   if (aList.isEmpty())
603   {
604     aList.append(tr("XML_FILT"));
605     //aList.append(tr("ALL_FILES_FILTER"));
606   }
607
608   return aList;
609 }
610
611 //================================================================
612 // Function : onBrowse
613 // Purpose  : SLOT. Display "Open file" dialog for chosing library name
614 //================================================================
615 void SMESHGUI_FilterLibraryDlg::onBrowse()
616 {
617   Dialog* aDlg = new Dialog(this, true);
618   aDlg->setWindowTitle(tr("OPEN_LIBRARY"));
619
620   //aDlg->setMode(myMode == COPY_FROM ? QFileDialogP::ExistingFile : QFileDialogP::AnyFile);
621   aDlg->setFileMode(myMode == COPY_FROM ? QFileDialog::ExistingFile : QFileDialog::AnyFile);
622   aDlg->setFilters(prepareFilters());
623   aDlg->selectFile(getFileName());
624
625   QPushButton* anOkBtn = (QPushButton*)aDlg->findChild<QPushButton*>("OK");
626   if (anOkBtn != 0)
627     anOkBtn->setText(tr("SMESH_BUT_OK"));
628
629   if (aDlg->exec() != Accepted)
630     return;
631
632   QString fName = aDlg->selectedFile();
633
634   if (fName.isEmpty())
635     return;
636
637   if (QFileInfo(fName).suffix().isEmpty())
638     fName = autoExtension(fName);
639
640   fName = QDir::convertSeparators(fName);
641   QString prev = QDir::convertSeparators(getFileName());
642
643   if (prev == fName)
644     return;
645
646   setFileName(fName);
647
648   QListWidgetItem* item = myListBox->item( myListBox->count()-1 );
649   QString aName = item ? item->text() : QString::null;
650   processNewLibrary();
651
652   if (myMode == ADD_TO)
653   {
654     myTable->Copy((SMESHGUI_FilterTable*)parentWidget());
655     myCurrFilterName = "";
656     myCurrFilter = -1;
657     addFilterToLib(aName);
658   }
659
660   isPermissionValid(false);
661 }
662
663 //=======================================================================
664 // name    : SMESHGUI_FilterLibraryDlg::processNewLibrary
665 // Purpose : SLOT. Calleds when file name changed
666 //=======================================================================
667 void SMESHGUI_FilterLibraryDlg::processNewLibrary()
668 {
669   SMESH::FilterManager_var aFilterMgr = SMESH::GetFilterManager();
670   if (aFilterMgr->_is_nil())
671     return;
672
673   myLibrary = aFilterMgr->LoadLibrary(autoExtension(getFileName()).toLatin1().constData());
674   if (myLibrary->_is_nil()) {
675     if (myMode == COPY_FROM) {
676       SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_ERROR"),
677                                    tr("ERROR_LOAD"));
678       return;
679     } else {
680       myLibrary = aFilterMgr->CreateLibrary();
681       myLibrary->SetFileName(getFileName().toLatin1().constData());
682     }
683   }
684
685   updateList();
686 }
687
688 //=======================================================================
689 // name    : SMESHGUI_FilterLibraryDlg::updateList
690 // Purpose : Fill list box with filter names
691 //=======================================================================
692 void SMESHGUI_FilterLibraryDlg::updateList()
693 {
694   QStringList aList;
695   SMESH::string_array_var aNames = myLibrary->GetNames((SMESH::ElementType)myTable->GetType());
696   for (int i = 0, n = aNames->length(); i < n; i++)
697     aList.append(QString(aNames[ i ]));
698   myListBox->blockSignals(true);
699   myListBox->clear();
700   myListBox->blockSignals(false);
701   myListBox->addItems(aList);
702   if (myListBox->count() == 0)
703   {
704     myTable->Clear(myTable->GetType());
705     myName->clear();
706     myName->setEnabled(false);
707     myTable->SetEnabled(false);
708   }
709   else
710   {
711     myName->setEnabled(true);
712     myTable->SetEnabled(true);
713     if (myListBox->count())
714     {
715       myCurrFilterName = "";
716       myListBox->setCurrentItem(0);
717     }
718   }
719 }
720
721 //=======================================================================
722 // name    : SMESHGUI_FilterLibraryDlg::isNameValid
723 // Purpose : Verify validity if entered data
724 //=======================================================================
725 bool SMESHGUI_FilterLibraryDlg::isNameValid(const bool theMess) const
726 {
727   // verify validity of filter name
728   if (myName->isEnabled() && !myCurrFilterName.isEmpty()) {
729     QString aCurrName = myName->text();
730     if (aCurrName.isEmpty()) {
731       if (theMess)
732         SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_INSUFFICIENT_DATA"),
733                                      tr("EMPTY_FILTER_NAME"));
734       return false;
735     }
736
737     SMESH::string_array_var aNames = myLibrary->GetAllNames();
738     for (int f = 0, n = aNames->length(); f < n; f++) {
739       if (aNames[ f ] == aCurrName && aNames[ f ] != myCurrFilterName) {
740         if (theMess)
741           SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_INSUFFICIENT_DATA"),
742                                        tr("ERROR_FILTER_NAME"));
743         return false;
744       }
745     }
746   }
747
748   return true;
749 }
750
751 //=======================================================================
752 // name    : SMESHGUI_FilterLibraryDlg::isPermissionValid
753 // Purpose : Verify write permission on file
754 //=======================================================================
755 bool SMESHGUI_FilterLibraryDlg::isPermissionValid(const bool theIsExistingOnly)
756 {
757   if (myMode == COPY_FROM)
758     return true;
759
760   // Verify write permission
761   bool isWritable = false;
762
763   QString fName(myFileName->text());
764   if (QFileInfo(fName).suffix().isEmpty())
765     fName = autoExtension(fName);
766
767   fName = QDir::convertSeparators(fName);
768
769   if (QFileInfo(fName).exists()) {
770     isWritable = QFileInfo(fName).isWritable();
771   } else if (!theIsExistingOnly) {
772     QFileInfo aDirInfo(QFileInfo(fName).absolutePath());
773     isWritable = aDirInfo.isWritable();
774     /*if (QDir(QFileInfo(fName).dirPath(true)).exists() ||
775          QDir().mkdir(QFileInfo(fName).dirPath(true)))
776     {
777       QFile aFile(fName);
778       if (aFile.open(IO_WriteOnly))
779         isWritable = true;
780       else
781         aFile.close();
782     }
783     */
784   } else {
785     isWritable = true;
786   }
787
788   if (!isWritable) {
789     SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_WRN_WARNING"),
790                                  tr("NO_PERMISSION"));
791     return false;
792   }
793
794   return true;
795 }
796
797 //=======================================================================
798 // name    : SMESHGUI_FilterLibraryDlg::isValid
799 // Purpose : Verify validity if entered data
800 //=======================================================================
801 bool SMESHGUI_FilterLibraryDlg::isValid(const bool theMess) const
802 {
803   // verify validity of table
804   if (!myTable->IsValid(theMess) || !isNameValid(theMess))
805     return false;
806   else
807     return true;
808 }
809
810 //=======================================================================
811 // name    : SMESHGUI_FilterLibraryDlg::onFilterChanged
812 // Purpose : SLOT. Called when selected filter of library  changed
813 //=======================================================================
814 void SMESHGUI_FilterLibraryDlg::onFilterChanged( QListWidgetItem* item, QListWidgetItem* )
815 {
816   QString theName = item ? item->text() : QString::null;
817   if (myLibrary->_is_nil())
818     return;
819
820   // Save parameters of filter if it was changed
821
822   if (!myCurrFilterName.isEmpty() && myTable->IsEditable())
823   {
824     if (!isValid(true))
825     {
826       myListBox->blockSignals(true);
827       myListBox->setCurrentRow(myCurrFilter);
828       myListBox->blockSignals(false);
829       return;
830     }
831
832     SMESH::Filter_var aFilter = createFilter();
833     myLibrary->Replace(myCurrFilterName.toLatin1().constData(), 
834                        myName->text().toLatin1().constData(), 
835                        aFilter);
836   }
837
838   // Fill table with filter parameters
839
840   SMESH::Filter_var aFilter = myLibrary->Copy(theName.toLatin1().constData());
841   myCurrFilterName = theName;
842   myCurrFilter = myListBox->currentRow();
843   myName->setText(theName);
844
845
846   SMESH::Filter::Criteria_var aCriteria;
847
848   myTable->Clear(myTable->GetType());
849
850   if (CORBA::is_nil( aFilter ) || !aFilter->GetCriteria(aCriteria))
851     return;
852
853   for (int i = 0, n = aCriteria->length(); i < n; i++)
854     myTable->AddCriterion(aCriteria[ i ], myTable->GetType());
855
856   myTable->Update();
857 }
858
859 //=======================================================================
860 // name    : SMESHGUI_FilterLibraryDlg::onReturnPressed
861 // Purpose : SLOT. Called when enter button is pressed in library name field
862 //           Reload library
863 //=======================================================================
864 void SMESHGUI_FilterLibraryDlg::onReturnPressed()
865 {
866   QListWidgetItem* item = myListBox->item( myListBox->count()-1 );
867   QString aName = item ? item->text() : QString::null;
868
869   processNewLibrary();
870
871   if (myMode == ADD_TO)
872   {
873     myTable->Copy((SMESHGUI_FilterTable*)parentWidget());
874     myCurrFilterName = "";
875     myCurrFilter = -1;
876     addFilterToLib(aName);
877   }
878
879   isPermissionValid(false);
880 }
881
882 //=======================================================================
883 // name    : SMESHGUI_FilterLibraryDlg::enableMainButtons
884 // Purpose : Update state of "OK", "Cancel" buttons
885 //=======================================================================
886 void SMESHGUI_FilterLibraryDlg::enableMainButtons()
887 {
888   /*bool isEnabled = isValid(false);
889   if (myButtons.contains(BTN_OK))
890     myButtons[ BTN_OK ]->setEnabled(isEnabled);
891   else if (myButtons.contains(BTN_Apply))
892     myButtons[ BTN_OK ]->setEnabled(isEnabled);
893   if (myButtons.contains(BTN_Cancel))
894     myButtons[ BTN_Cancel ]->setEnabled(isEnabled);
895   else if (myButtons.contains(BTN_Close))
896     myButtons[ BTN_Cancel ]->setEnabled(isEnabled);
897     */
898 }
899
900 //=======================================================================
901 // name    : SMESHGUI_FilterLibraryDlg::createFilter
902 // Purpose : Cerate filter in accordance with library
903 //=======================================================================
904 SMESH::Filter_ptr SMESHGUI_FilterLibraryDlg::createFilter(const int theType)
905 {
906   int n = myTable->NumRows(theType);
907
908   SMESH::Filter::Criteria_var aCriteria = new SMESH::Filter::Criteria;
909   aCriteria->length(n);
910
911   for (int i = 0; i < n; i++)
912   {
913     SMESH::Filter::Criterion aCriterion = SMESHGUI_FilterDlg::createCriterion();
914     myTable->GetCriterion(i, aCriterion);
915     aCriteria[ i ] = aCriterion;
916   }
917
918   SMESH::FilterManager_var aFilterMgr = SMESH::GetFilterManager();
919   SMESH::Filter_var aFilter = aFilterMgr->CreateFilter();
920   aFilter->SetCriteria(aCriteria.in());
921
922   return aFilter._retn();
923 }
924
925 //=======================================================================
926 // name    : SMESHGUI_FilterLibraryDlg::onAddBtnPressed
927 // Purpose : SLOT. Called when "Add" button pressed
928 //           Add new filter to the end of library
929 //=======================================================================
930 void SMESHGUI_FilterLibraryDlg::onAddBtnPressed()
931 {
932   // Save parameters of filter if it was changed
933   if (!myCurrFilterName.isEmpty() && myTable->IsEditable())
934   {
935     if (!isValid(true))
936       return;
937   }
938   {
939     SMESH::Filter_var aFilter = createFilter();
940     myLibrary->Replace(myCurrFilterName.toLatin1().constData(), 
941                        myName->text().toLatin1().constData(), 
942                        aFilter);
943   }
944
945   addFilterToLib(getDefaultFilterName());
946 }
947
948 //=======================================================================
949 // name    : onAddBtnPressed()
950 // Purpose : SLOT. Called when "Add" button pressed
951 //           Add new filter to the end of library
952 //=======================================================================
953 void SMESHGUI_FilterLibraryDlg::addFilterToLib (const QString& theName)
954 {
955   if (myLibrary->_is_nil()) {
956     SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_WRN_WARNING"),
957                                  tr("LIBRARY_IS_NOT_LOADED"));
958     return;
959   }
960
961   // create filter
962   SMESH::Filter_var aFilter = createFilter();
963
964   // if name of filter already exist in the library assign default name for the filter
965   QString aName(theName);
966   SMESH::string_array_var aNames = myLibrary->GetAllNames();
967   for (int i = 0, n = aNames->length(); i < n; i++)
968     if (aName == QString(aNames[ i ]))
969     {
970       aName = getDefaultFilterName();
971       break;
972     }
973
974   // add new filter in library
975   bool aResult = !aFilter->GetPredicate()->_is_nil()
976     ? myLibrary->Add(aName.toLatin1().constData(), aFilter)
977     : myLibrary->AddEmpty(aName.toLatin1().constData(), (SMESH::ElementType)myTable->GetType());
978
979   if (!aResult) {
980     SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_ERROR"),
981                                  tr("ERROR_OF_ADDING"));
982   }
983
984   updateList();
985   myCurrFilterName = "";
986   myCurrFilter = -1;
987   setSelected(aName);
988
989   if (theName != aName)
990     SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_WARNING"),
991                                  tr("ASSIGN_NEW_NAME").arg(theName).arg(aName));
992 }
993
994 //=======================================================================
995 // name    : SMESHGUI_FilterLibraryDlg::getDefaultLibraryName
996 // Purpose : Get default library name
997 //=======================================================================
998 QString& SMESHGUI_FilterLibraryDlg::getDefaultLibraryName() const
999 {
1000   static QString aName;
1001   if (aName.isEmpty())
1002   {
1003     QString aHomeDir = QDir(QDir::home()).absolutePath();
1004     aName = aHomeDir + "/" + tr ("LIB_NAME");
1005   }
1006   return aName;
1007 }
1008
1009 //=======================================================================
1010 // name    : SMESHGUI_FilterLibraryDlg::getDefaultFilterName
1011 // Purpose : Create default filter name
1012 //=======================================================================
1013 QString SMESHGUI_FilterLibraryDlg::getDefaultFilterName() const
1014 {
1015   QString aName;
1016
1017   if (myTable->GetType() == SMESH::NODE)
1018     aName = tr("NODE");
1019   else if (myTable->GetType() == SMESH::EDGE)
1020     aName = tr("EDGE");
1021   else if (myTable->GetType() == SMESH::FACE)
1022     aName = tr("FACE");
1023   else if (myTable->GetType() == SMESH::VOLUME)
1024     aName = tr("VOLUME");
1025   else if (myTable->GetType() == SMESH::ALL)
1026     aName = tr("ELEMENT");
1027   else
1028     aName = tr("SELECTION");
1029
1030   aName += tr("FILTER");
1031
1032
1033   QMap< QString, int > anAllNames;
1034   SMESH::string_array_var aNames = myLibrary->GetAllNames();
1035   for(int i = 0, n = aNames->length(); i < n; i++)
1036     anAllNames[ QString(aNames[ i ]) ] = -1;
1037
1038   bool isNotValid = true;
1039   int k = 1;
1040   QString aNewName;
1041   while (isNotValid)
1042   {
1043     isNotValid = false;
1044     aNewName = aName + "_" + QString("%1").arg(k);
1045     if (anAllNames.contains(aNewName))
1046     {
1047       isNotValid = true;
1048       k++;
1049     }
1050   }
1051
1052   return aNewName;
1053 }
1054
1055 //=======================================================================
1056 // name    : SMESHGUI_FilterLibraryDlg::setSelected
1057 // Purpose : set selected item in list box containing filters
1058 //=======================================================================
1059 bool SMESHGUI_FilterLibraryDlg::setSelected(const QString& theName)
1060 {
1061   int anIndex = getIndex(theName);
1062   if (anIndex != -1)
1063   {
1064     myListBox->setCurrentRow(anIndex);
1065     myCurrFilterName = theName;
1066     myCurrFilter = anIndex;
1067   }
1068   return anIndex != -1;
1069 }
1070
1071 //=======================================================================
1072 // name    : SMESHGUI_FilterLibraryDlg::getIndex
1073 // Purpose : Get index of the filter in list box
1074 //=======================================================================
1075 int SMESHGUI_FilterLibraryDlg::getIndex(const QString& theName) const
1076 {
1077   for (int i = 0, n = myListBox->count(); i < n; i++)
1078     if (myListBox->item(i)->text() == theName)
1079       return i;
1080   return -1;
1081 }
1082
1083 //=======================================================================
1084 // name    : SMESHGUI_FilterLibraryDlg::onDeleteBtnPressed
1085 // Purpose : SLOT. Called when "Delete" button pressed
1086 //=======================================================================
1087 void SMESHGUI_FilterLibraryDlg::onDeleteBtnPressed()
1088 {
1089   if (myLibrary->_is_nil()) {
1090     SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_WRN_WARNING"),
1091                                  tr("LIBRARY_IS_NOT_LOADED"));
1092     return;
1093   }
1094
1095   int anIndex = getIndex(myCurrFilterName);
1096
1097   if (anIndex == -1 || !myLibrary->Delete(myCurrFilterName.toLatin1().constData())) {
1098     SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_ERROR"),
1099                                  tr("ERROR_OF_DELETING"));
1100   } else {
1101     myCurrFilterName = "";
1102     myCurrFilter = -1;
1103     delete myListBox->item(anIndex);
1104
1105     if (anIndex >= 1)
1106       myListBox->item(anIndex - 1)->setSelected(true);
1107     else if (anIndex == 0 && myListBox->count() > 0)
1108       myListBox->item(0)->setSelected(true);
1109     else
1110       myTable->Clear();
1111   }
1112
1113   myTable->SetEnabled(myListBox->count() > 0);
1114   if (myListBox->count() == 0) {
1115     myName->setText("");
1116     myName->setEnabled(false);
1117   }
1118 }
1119
1120 //=======================================================================
1121 // name    : onFilterNameChanged()
1122 // Purpose : SLOT. Called when name of filter changed
1123 //           Change filter name in list box
1124 //=======================================================================
1125 void SMESHGUI_FilterLibraryDlg::onFilterNameChanged (const QString& theName)
1126 {
1127   int aCurrItem = myListBox->currentRow();
1128   if (aCurrItem == -1)
1129     return;
1130
1131   myListBox->blockSignals(true);
1132   myListBox->item(aCurrItem)->setText(theName);
1133   myListBox->blockSignals(false);
1134 }
1135
1136 //=======================================================================
1137 // name    : SMESHGUI_FilterLibraryDlg::SetTable
1138 // Purpose : Set table
1139 //=======================================================================
1140 void SMESHGUI_FilterLibraryDlg::SetTable(const SMESHGUI_FilterTable* theTable)
1141 {
1142   myTable->Copy(theTable);
1143   myName->setText(getDefaultFilterName());
1144   addFilterToLib(myName->text());
1145   myTable->Update();
1146 }
1147
1148 //=======================================================================
1149 // name    : SMESHGUI_FilterLibraryDlg::GetTable
1150 // Purpose : Get table
1151 //=======================================================================
1152 const SMESHGUI_FilterTable* SMESHGUI_FilterLibraryDlg::GetTable() const
1153 {
1154   return myTable;
1155 }
1156
1157
1158 //=======================================================================
1159 // name    : SMESHGUI_FilterLibraryDlg::onEntityTypeChanged
1160 // Purpose : SLOT. Called when entiyt type changed
1161 //=======================================================================
1162 void SMESHGUI_FilterLibraryDlg::onEntityTypeChanged(const int theType)
1163 {
1164   if (myLibrary->_is_nil())
1165     return;
1166
1167   myName->clear();
1168   myCurrFilterName = "";
1169   myCurrFilter = -1;
1170   updateList();
1171   if (myListBox->count())
1172     myListBox->setCurrentItem(0);
1173 }
1174
1175 //=======================================================================
1176 // name    : SMESHGUI_FilterLibraryDlg::onNeedValidation
1177 // Purpose :
1178 //=======================================================================
1179 void SMESHGUI_FilterLibraryDlg::onNeedValidation()
1180 {
1181   if (!myCurrFilterName.isEmpty())
1182   {
1183     bool valid = isValid(true);
1184     myTable->SetValidity(valid);
1185
1186     if (valid)
1187     {
1188       SMESH::Filter_var aFilter = createFilter(myTable->GetType());
1189       myLibrary->Replace(myCurrFilterName.toLatin1().constData(),
1190                          myName->text().toLatin1().constData(),
1191                          aFilter);
1192     }
1193   }
1194 }
1195
1196 //=================================================================================
1197 // function : keyPressEvent()
1198 // purpose  :
1199 //=================================================================================
1200 void SMESHGUI_FilterLibraryDlg::keyPressEvent( QKeyEvent* e )
1201 {
1202   QDialog::keyPressEvent( e );
1203   if ( e->isAccepted() )
1204     return;
1205
1206   if ( e->key() == Qt::Key_F1 ) {
1207     e->accept();
1208     onHelp();
1209   }
1210 }