]> 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 6afabcdcf21aabdb040159e13bec859acf1e6567..38ec48a4749efb203588129c960e63eb0dcb24e9 100644 (file)
@@ -4,7 +4,7 @@
 #include "BlockLibraryWidget.h"
 #include "GroupWidget.h"
 #include "GroupScene.h"
 #include "BlockLibraryWidget.h"
 #include "GroupWidget.h"
 #include "GroupScene.h"
-#include "BlockWidget.h"
+#include "VHDLConverter.h"
 #include "AbstractBoxItem.h"
 #include "Graph.h"
 #include "GroupItem.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);
 
       msgBox.setStandardButtons(QMessageBox::Cancel);
       msgBox.setDefaultButton(QMessageBox::Cancel);
 
-      int ret = msgBox.exec();
+      msgBox.exec();
     }
   }
 }
     }
   }
 }
@@ -292,6 +292,7 @@ void MainWindow::slotNewProject(){
   GroupWidget* topGroup = dispatcher->createTopScene();
   addTopGroup(topGroup);
   library->updateComboScene();
   GroupWidget* topGroup = dispatcher->createTopScene();
   addTopGroup(topGroup);
   library->updateComboScene();
+  library->show();
   params->isCurrentProject = true;
 }
 
   params->isCurrentProject = true;
 }
 
@@ -319,6 +320,9 @@ bool MainWindow::slotCloseProject(){
         break;
       }
     }
         break;
       }
     }
+    else {
+      doClose = true;
+    }
     if (doClose) {
       // removing the GroupWidget from stack
       QWidget *widget = stackedWidget->widget(1);
     if (doClose) {
       // removing the GroupWidget from stack
       QWidget *widget = stackedWidget->widget(1);
@@ -339,7 +343,7 @@ bool MainWindow::slotCloseProject(){
 
 
 void MainWindow::slotNewBlockWidget() {
 
 
 void MainWindow::slotNewBlockWidget() {
-  new BlockWidget();
+  new VHDLConverter();
 }
 
 void MainWindow::slotSaveProject(){
 }
 
 void MainWindow::slotSaveProject(){
@@ -369,7 +373,12 @@ void MainWindow::slotOpenBlockLibrary() {
 
 
 void MainWindow::slotGraphValidation() {
 
 
 void MainWindow::slotGraphValidation() {
-  params->parametersValidation();
+  try {
+    params->getGraph()->computeOutputPatterns(5); 
+  }
+  catch(Exception e) {
+    cerr << qPrintable(e.getMessage()) << endl;    
+  }
 }
 
 void MainWindow::addTopGroup(GroupWidget *_topGroup) {
 }
 
 void MainWindow::addTopGroup(GroupWidget *_topGroup) {
@@ -390,6 +399,9 @@ void MainWindow::closeEvent(QCloseEvent *event) {
     slotCloseProject();
     event->ignore();
   }
     slotCloseProject();
     event->ignore();
   }
+  else {
+    library->deleteLater();
+  }
 
 }
 
 
 }