]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkWxGUIPackageBrowser.cxx
#2808, #2807, #2806, #2805, #2804 BBTK Feature New Normal Add new functionality MathO...
[bbtk.git] / kernel / src / bbtkWxGUIPackageBrowser.cxx
index 9ab9e50f563cb10b471f93d595dcfe73fb549c86..b452fd2e4eeb99e6cdb9e55ade97d66017d9977c 100644 (file)
@@ -1,20 +1,42 @@
+/*
+ # ---------------------------------------------------------------------
+ #
+ # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
+ #                        pour la SantÈ)
+ # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
+ # Previous Authors : Laurent Guigues, Jean-Pierre Roux
+ # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
+ #
+ #  This software is governed by the CeCILL-B license under French law and
+ #  abiding by the rules of distribution of free software. You can  use,
+ #  modify and/ or redistribute the software under the terms of the CeCILL-B
+ #  license as circulated by CEA, CNRS and INRIA at the following URL
+ #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
+ #  or in the file LICENSE.txt.
+ #
+ #  As a counterpart to the access to the source code and  rights to copy,
+ #  modify and redistribute granted by the license, users are provided only
+ #  with a limited warranty  and the software's author,  the holder of the
+ #  economic rights,  and the successive licensors  have only  limited
+ #  liability.
+ #
+ #  The fact that you are presently reading this means that you have had
+ #  knowledge of the CeCILL-B license and that you accept its terms.
+ # ------------------------------------------------------------------------ */
+
+
 /*=========================================================================
-                                                                                
   Program:   bbtk
   Module:    $RCSfile: bbtkWxGUIPackageBrowser.cxx,v $
   Language:  C++
-  Date:      $Date: 2008/04/24 10:11:28 $
-  Version:   $Revision: 1.5 $
-                                                                                
-  Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
-  l'Image). All rights reserved. See Doc/License.txt or
-  http://www.creatis.insa-lyon.fr/Public/bbtk/License.html for details.
-                                                                                
-     This software is distributed WITHOUT ANY WARRANTY; without even
-     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
-     PURPOSE.  See the above copyright notices for more information.
-                                                                                
-=========================================================================*//**
+  Date:      $Date: 2012/11/16 08:49:01 $
+  Version:   $Revision: 1.8 $
+=========================================================================*/
+
+
+
+
+/**
  * \brief Short description in one line
  * 
  * Long description which 
@@ -29,7 +51,7 @@
  * \brief 
  */
 
-
+/*
 #ifdef _USE_WXWIDGETS_
 
 #define CHECKBOXVIEW 1
@@ -112,14 +134,6 @@ namespace bbtk
       out.push_back(name);
       out.push_back(type);
       out.push_back(descr);
-      /* = 
-       "<TR><TD style='vertical-align: top;' bgcolor=\"" + col
-       +"\"><B><PRE> "+name+" </PRE></B></TD>"
-       + "<TD style='vertical-align: top;' bgcolor=\""+col
-       +"\"><I><PRE> "+type+" </PRE></I></TD>"
-       + "<TD style='vertical-align: top;' bgcolor=\""+col
-       +"\">"+descr+"</TD></TR>\n";
-      */
 
       if (iotype==0) user_defined.push_back(out);
       else if (iotype==1) ubb_defined.push_back(out);
@@ -140,25 +154,6 @@ namespace bbtk
     std::vector<std::vector<std::string> >::iterator hi;
     for (hi=user_defined.begin();hi!=user_defined.end();++hi) 
       {
-       /*
-       wxTextCtrl* t = new wxTextCtrl(this,-1,_T("")
-                                      ,wxDefaultPosition
-                                      ,wxDefaultSize 
-                                      ,wxTE_READONLY
-                                      );
-       t->SetDefaultStyle(ionameattr);
-       t->AppendText( std2wx((*hi)[0]) );
-       grid->Add(t);
-       
-       t =  new wxTextCtrl(this,-1,_T("")
-                                      ,wxDefaultPosition
-                                      ,wxDefaultSize 
-                                      ,wxTE_READONLY
-                                      );
-       t->SetDefaultStyle(iotypeattr);
-       t->AppendText( std2wx((*hi)[1]) );
-       grid->Add(t);
-       */
        
        grid->Add( new wxStaticText(this,-1,std2wx((*hi)[0])));
        grid->Add( new wxStaticText(this,-1,std2wx((*hi)[1])));
@@ -229,14 +224,6 @@ namespace bbtk
       out.push_back(name);
       out.push_back(type);
       out.push_back(descr);
-      /* = 
-       "<TR><TD style='vertical-align: top;' bgcolor=\"" + col
-       +"\"><B><PRE> "+name+" </PRE></B></TD>"
-       + "<TD style='vertical-align: top;' bgcolor=\""+col
-       +"\"><I><PRE> "+type+" </PRE></I></TD>"
-       + "<TD style='vertical-align: top;' bgcolor=\""+col
-       +"\">"+descr+"</TD></TR>\n";
-      */
 
       if (iotype==0) user_defined.push_back(out);
       else if (iotype==1) ubb_defined.push_back(out);
@@ -421,7 +408,7 @@ namespace bbtk
     //    WxGUICommand* com = new WxGUICommand(this,this);
     //    sizer->Add(com);
     
-    SetSizer(sizer);
+    SetSizer(sizer); 
 
 
     // Creates the parent window of all bbtk windows as a child of this
@@ -444,3 +431,4 @@ namespace bbtk
 
 
 #endif //_USE_WXWIDGETS_
+*/