]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkWxGUIPackageBrowser2.h
*** empty log message ***
[bbtk.git] / kernel / src / bbtkWxGUIPackageBrowser2.h
index 27745bd4534b126857bd4e484565b978ae2c8260..01c8dbf69c9ef0f7c37c54cd901c25a5cfde7e45 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkWxGUIPackageBrowser2.h,v $
   Language:  C++
-  Date:      $Date: 2008/04/04 08:04:05 $
-  Version:   $Revision: 1.1 $
+  Date:      $Date: 2008/07/23 11:46:11 $
+  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
@@ -40,6 +40,7 @@
 #include "bbtkWx.h"
 
 #include "bbtkInterpreter.h"
+#include <wx/aui/aui.h>
 
 #include "wx/listctrl.h"
 // not all ports have support for EVT_CONTEXT_MENU yet, don't define
@@ -64,7 +65,7 @@ namespace bbtk
   {
   public:
     WxGUIPackageBrowser2User() {}
-    ~WxGUIPackageBrowser2User() {}
+    virtual ~WxGUIPackageBrowser2User() {}
     /// Callback invoked when the 'run' button is pressed
     virtual void WxGUIPackageBrowser2Run() {}
   };
@@ -118,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);
@@ -183,9 +184,9 @@ 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&);
  
@@ -193,9 +194,10 @@ private:
     void WxGUIBlackBoxListUserOnSelected( BlackBoxDescriptor* );
 
   private:
+    wxAuiManager m_mgr;
     WxGUIPackageBrowser2User* mUser;
-    Interpreter* mInterpreter;
-    Factory* mFactory;
+    Interpreter::Pointer mInterpreter;
+    Factory::Pointer mFactory;
     WxGUIBlackBoxList* mBoxList;
     WxGUIBlackBoxInfo* mBoxInfo;
 
@@ -205,6 +207,12 @@ private:
     wxTextCtrl* mCategoryFilter;
     wxTextCtrl* mInputTypeFilter;
     wxTextCtrl* mOutputTypeFilter;
+    wxTextCtrl* mInputNatureFilter;
+    wxTextCtrl* mOutputNatureFilter;
+
+    wxCheckBox* mShowWidgetsFilter;
+    wxCheckBox* mShowAdaptorsFilter;
+    wxCheckBox* mShowGUIsFilter;
 
    DECLARE_EVENT_TABLE()  
   };