]> AND Private Git Repository - blast.git/blobdiff - MainWindow.cpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
changes in output pattern comput
[blast.git] / MainWindow.cpp
index 877e9ac1a10f390ce21d3025f98b7276de5aa944..38ec48a4749efb203588129c960e63eb0dcb24e9 100644 (file)
@@ -4,7 +4,7 @@
 #include "BlockLibraryWidget.h"
 #include "GroupWidget.h"
 #include "GroupScene.h"
-#include "BlockWidget.h"
+#include "VHDLConverter.h"
 #include "AbstractBoxItem.h"
 #include "Graph.h"
 #include "GroupItem.h"
@@ -280,7 +280,7 @@ void MainWindow::slotLoadProject(){
       msgBox.setStandardButtons(QMessageBox::Cancel);
       msgBox.setDefaultButton(QMessageBox::Cancel);
 
-      int ret = msgBox.exec();
+      msgBox.exec();
     }
   }
 }
@@ -343,7 +343,7 @@ bool MainWindow::slotCloseProject(){
 
 
 void MainWindow::slotNewBlockWidget() {
-  new BlockWidget();
+  new VHDLConverter();
 }
 
 void MainWindow::slotSaveProject(){
@@ -373,8 +373,12 @@ void MainWindow::slotOpenBlockLibrary() {
 
 
 void MainWindow::slotGraphValidation() {
-  params->getGraph()->computeOutputPatterns(5);
-  //params->parametersValidation();
+  try {
+    params->getGraph()->computeOutputPatterns(5); 
+  }
+  catch(Exception e) {
+    cerr << qPrintable(e.getMessage()) << endl;    
+  }
 }
 
 void MainWindow::addTopGroup(GroupWidget *_topGroup) {