]> Creatis software - clitk.git/blobdiff - vv/vvLandmarksPanel.cxx
Remove files in old directories. Remove them from your local directory.
[clitk.git] / vv / vvLandmarksPanel.cxx
index f9e3c8cdc5f29ebc97537b58fe14d2900bf36c64..32b9e82d6714f7d2fba665393de92336500b3aae 100644 (file)
@@ -1,30 +1,22 @@
-#ifndef _vvLandmarksPanel_CXX
-#define _vvLandmarksPanel_CXX
-
 /*=========================================================================
+  Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
 
- Program:   vv
- Language:  C++
- Author :   Pierre Seroul (pierre.seroul@gmail.com)
-
-Copyright (C) 200COLUMN_IMAGE_NAME
-Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr
-CREATIS-LRMN http://www.creatis.insa-lyon.fr
+  Authors belong to: 
+  - University of LYON              http://www.universite-lyon.fr/
+  - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
+  - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
 
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, version 3 of the License.
+  This software is distributed WITHOUT ANY WARRANTY; without even
+  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+  PURPOSE.  See the copyright notices for more information.
 
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-=========================================================================*/
+  It is distributed under dual licence
 
+  - BSD        See included LICENSE.txt file
+  - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
+======================================================================-====*/
+#ifndef _vvLandmarksPanel_CXX
+#define _vvLandmarksPanel_CXX
 #include "vvLandmarksPanel.h"
 
 #include <QtGui>
@@ -94,33 +86,33 @@ void vvLandmarksPanel::AddPoint(int landmarksIndex)
     tableWidget->setRowCount(rowIndex+1);
     tableWidget->setRowHeight(rowIndex,20);
     QTableWidgetItem* iItem = new QTableWidgetItem(QString::number(landmarksIndex));
-    iItem->setFlags(!Qt::ItemIsEditable);
+    iItem->setFlags(Qt::NoItemFlags);
     tableWidget->setItem(rowIndex,0,iItem);
 
     QTableWidgetItem* xItem = new QTableWidgetItem(
         QString::number(mCurrentLandmarks->GetCoordinates(landmarksIndex)[0],'f',1));
-    xItem->setFlags(!Qt::ItemIsEditable);
+    xItem->setFlags(Qt::NoItemFlags);
     tableWidget->setItem(rowIndex,1,xItem);
 
     QTableWidgetItem* yItem = new QTableWidgetItem(
         QString::number(mCurrentLandmarks->GetCoordinates(landmarksIndex)[1],'f',1));
-    yItem->setFlags(!Qt::ItemIsEditable);
+    yItem->setFlags(Qt::NoItemFlags);
     tableWidget->setItem(rowIndex,2,yItem);
 
     QTableWidgetItem* zItem = new QTableWidgetItem(
         QString::number(mCurrentLandmarks->GetCoordinates(landmarksIndex)[2],'f',1));
-    zItem->setFlags(!Qt::ItemIsEditable);
+    zItem->setFlags(Qt::NoItemFlags);
     tableWidget->setItem(rowIndex,3,zItem);
 
     QTableWidgetItem* tItem = new QTableWidgetItem(
         QString::number(mCurrentLandmarks->GetCoordinates(landmarksIndex)[3],'f',1));
-    tItem->setFlags(!Qt::ItemIsEditable);
+    tItem->setFlags(Qt::NoItemFlags);
     tableWidget->setItem(rowIndex,4,tItem);
 
 
     QTableWidgetItem* vItem = new QTableWidgetItem(
         QString::number(mCurrentLandmarks->GetPixelValue(landmarksIndex),'f',1));
-    vItem->setFlags(!Qt::ItemIsEditable);
+    vItem->setFlags(Qt::NoItemFlags);
     tableWidget->setItem(rowIndex,5,vItem);
 
     tableWidget->setItem(rowIndex,6, new QTableWidgetItem(mCurrentLandmarks->GetComments(landmarksIndex).c_str()));