]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkWxGUIPackageBrowser2.h
=== MAJOR RELEASE ====
[bbtk.git] / kernel / src / bbtkWxGUIPackageBrowser2.h
index dd31edfe467085ee98fe8df3f41966fb188d4870..debebbdb1500fbddb62c2bd755e1a8f3f1c4dd92 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkWxGUIPackageBrowser2.h,v $
   Language:  C++
-  Date:      $Date: 2008/04/04 09:45:05 $
-  Version:   $Revision: 1.2 $
+  Date:      $Date: 2008/04/18 12:59:16 $
+  Version:   $Revision: 1.3 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -79,7 +79,7 @@ namespace bbtk
     WxGUIBlackBoxInfo(wxWindow* parent);
     ~WxGUIBlackBoxInfo();
 
-    void UpdateInfo(BlackBoxDescriptor* descr);
+    void UpdateInfo(BlackBoxDescriptor::Pointer descr);
     void InsertInputOutput(wxListCtrl* l, BlackBoxInputOutputDescriptor* i);
   private:
     BlackBoxDescriptor* mDescriptor;
@@ -101,7 +101,7 @@ namespace bbtk
     virtual ~WxGUIBlackBoxListUser() {}
     
     // User callback when a box is selected in the list 
-    virtual void WxGUIBlackBoxListUserOnSelected( BlackBoxDescriptor* ) {}
+    virtual void WxGUIBlackBoxListUserOnSelected( BlackBoxDescriptor::Pointer ) {}
   };
   //================================================================
 
@@ -119,7 +119,7 @@ namespace bbtk
     void SetUser(WxGUIBlackBoxListUser* u) { mUser = u; }
 
     // add one item to the listctrl in report mode
-    void Insert(BlackBoxDescriptor* d);
+    void Insert(BlackBoxDescriptor::Pointer d);
     
     // 
     void OnColClick(wxListEvent& event);
@@ -184,20 +184,20 @@ private:
     ~WxGUIPackageBrowser2();
 
     void IncludeAll();
-    void BuildFromFactory(Factory* f);
+    void BuildFromFactory(Factory::Pointer f);
     void RebuildList();
-    bool IsVisible(BlackBoxDescriptor* d);
+    bool IsVisible(BlackBoxDescriptor::Pointer d);
 
     void OnFilter(wxCommandEvent&);
  
     // User callback when a box is selected in the list 
-    void WxGUIBlackBoxListUserOnSelected( BlackBoxDescriptor* );
+    void WxGUIBlackBoxListUserOnSelected( BlackBoxDescriptor::Pointer );
 
   private:
     wxAuiManager m_mgr;
     WxGUIPackageBrowser2User* mUser;
-    Interpreter* mInterpreter;
-    Factory* mFactory;
+    Interpreter::Pointer mInterpreter;
+    Factory::Pointer mFactory;
     WxGUIBlackBoxList* mBoxList;
     WxGUIBlackBoxInfo* mBoxInfo;