]> Creatis software - bbtkGEditor.git/commitdiff
Documentation and HTML Browser addition
authorcorredor <>
Tue, 30 Mar 2010 14:29:39 +0000 (14:29 +0000)
committercorredor <>
Tue, 30 Mar 2010 14:29:39 +0000 (14:29 +0000)
lib/EditorGraphicBBS/bbsKernelEditorGraphic/GObjectModel.h
lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/GObjectsMVCFactory.h
lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/vtkGObjectView.h
lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.cxx
lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.h
lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicContainer.cxx [deleted file]
lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicContainer.h [deleted file]

index bdffa0667547ab778e2963200ba7a075d47d65a2..c80da3579933afd396c5a3475a56348022934bc6 100644 (file)
@@ -51,6 +51,7 @@ Version:   $Revision$
 //Includes std
 #include <iostream>
 
+//Includes bbtk
 #include <bbtkBlackBoxDescriptor.h>
 
 namespace bbtk
index 40bf577edf6d3349f291372009988fe60ff3a687..8aa1bbee56bc03af65f170ad0f88bfaa552b7765 100644 (file)
@@ -48,7 +48,6 @@ Version:   $Revision$
 #include "GObjectController.h"
 #include "GObjectModel.h"
 #include "vtkGObjectView.h"
-
 #include "GBlackBoxController.h"
 #include "vtkGBlackBoxView.h"
 #include "GBlackBoxModel.h"
@@ -58,7 +57,7 @@ Version:   $Revision$
 //Includes std
 #include <iostream>
 
-
+//Includes bbtk
 #include <bbtkInterpreter.h>
 #include <bbtkFactory.h>
 #include <bbtkPackage.h>
index 5c15592c3bc160911387dda6fa2527f933a3335c..880c09b68120d27afe58e068a2b8e54a99fb8658 100644 (file)
@@ -52,7 +52,6 @@ Version:   $Revision$
 
 //Includes vtk
 #include <vtkRenderer.h>
-
 #include "vtkConeSource.h"
 #include "vtkPolyDataMapper.h"
 #include "vtkActor.h"
index 8d8c5774f5e74919c41593bcaecc8b19f479750a..4e612365ae983ab06dc6b4a4ace51e4de8c2bc27 100644 (file)
@@ -90,23 +90,12 @@ namespace bbtk
                //Adds a tool btn to the toolbar
                _toolbar->AddTool(wxID_NEW,_T("New"),bmp_new, wxNullBitmap, wxITEM_NORMAL,_T("New tab"), _T("Create a new panel tab"));
 
-
-               ////////////////////
-               // TEMP to avoid drag and drop
-                       
-               _toolbar->AddTool(15,_T("New Box"),bmp_new, wxNullBitmap, wxITEM_NORMAL,_T("New Box"), _T("Create a new Box"));
-
-
-               //
-               ////////////////////
-
                _toolbar->SetMargins( 2, 2 );
                _toolbar->Realize();
                SetToolBar(_toolbar);
 
                // connect command event handlers
                Connect(wxID_NEW,wxEVT_COMMAND_TOOL_CLICKED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnToolLeftClick));
-               Connect(15,wxEVT_COMMAND_TOOL_CLICKED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnToolLeftClick));
 
        }
        //=========================================================================
@@ -167,10 +156,7 @@ namespace bbtk
                case wxID_NEW :
                        std::cout<<"RaC New"<<std::endl;
                        _tabsMgr->addNewTab();
-                       break;
-               case 15 :
-                       BlackBoxDescriptor* desc = _pkgBrowser->GetActualSelected();
-                       
+                       break;                  
                }
        }
 
index a1b3878d127890ce2eac5624f8e00338a06f9cd6..3f498f27d92bc0abf9c8c1ce0f40d793bebc06fe 100644 (file)
@@ -66,6 +66,8 @@
 #include <wx/menu.h>
 #include <wx/dnd.h>
 
+//Includes std
+
 namespace bbtk
 {
   
diff --git a/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicContainer.cxx b/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicContainer.cxx
deleted file mode 100644 (file)
index 78e5754..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-/*=========================================================================                                                                               
-  Program:   bbtk
-  Module:    $RCSfile$
-  Language:  C++
-  Date:      $Date$
-  Version:   $Revision$
-=========================================================================*/
-
-/* ---------------------------------------------------------------------
-
-* Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
-* Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
-*
-*  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.
-* ------------------------------------------------------------------------ */                                                                         
-
-/**
- *  \file 
- *  \brief Class bbtk::wxGUIEditorGraphicContainer . 
- */
-
-
-#include "bbtkwxGUIEditorGraphicContainer.h"
-
-namespace bbtk
-{
-
-
-  //=========================================================================
-       wxGUIEditorGraphicContainer::wxGUIEditorGraphicContainer(wxWindow *parent )
-  {
-  }
-
-  //=========================================================================
-  wxGUIEditorGraphicContainer::~ wxGUIEditorGraphicContainer()
-  {
-  }
-  //=========================================================================
-
-
-
-}  // EO namespace bbtk
-
-// EOF
-
diff --git a/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicContainer.h b/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicContainer.h
deleted file mode 100644 (file)
index f393b17..0000000
+++ /dev/null
@@ -1,67 +0,0 @@
-/*=========================================================================                                                                               
-  Program:   bbtk
-  Module:    $RCSfile$
-  Language:  C++
-  Date:      $Date$
-  Version:   $Revision$
-=========================================================================*/
-
-/* ---------------------------------------------------------------------
-
-* Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
-* Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
-*
-*  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.
-* ------------------------------------------------------------------------ */                                                                         
-
-
-
-/**
- *  \file 
- *  \brief Class bbtk::wxGUIEditorGraphicContainer . 
- */
-
-/**
- * \class bbtk::wxGUIEditorGraphicContainer
- * \brief 
- */
-#ifndef __wxGUIEditorGraphicContainer_h__
-#define __wxGUIEditorGraphicContainer_h__
-
-#include <wx/window.h>
-
-namespace bbtk
-{
-
-  
-       class  wxGUIEditorGraphicContainer 
-  {
-  public: 
-         wxGUIEditorGraphicContainer( wxWindow *parent );
-         ~wxGUIEditorGraphicContainer();
-  private:
-                 
-  protected:
-         
- };
-
-
-}
-// namespace bbtk
-#endif
-