X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkWxGUIPackageBrowser2.h;h=869da8b8ab8609f0e962760ef3efbf8ba0cc2a77;hb=a32025c531a0e20e967dc2ba3e0817f6932061b1;hp=dd31edfe467085ee98fe8df3f41966fb188d4870;hpb=124be3ddcc78e6e714fe7f09ba1fb71e4d1fd66a;p=bbtk.git diff --git a/kernel/src/bbtkWxGUIPackageBrowser2.h b/kernel/src/bbtkWxGUIPackageBrowser2.h index dd31edf..869da8b 100644 --- a/kernel/src/bbtkWxGUIPackageBrowser2.h +++ b/kernel/src/bbtkWxGUIPackageBrowser2.h @@ -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/23 09:31:23 $ + Version: $Revision: 1.4 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -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,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&); @@ -196,8 +196,8 @@ private: private: wxAuiManager m_mgr; WxGUIPackageBrowser2User* mUser; - Interpreter* mInterpreter; - Factory* mFactory; + Interpreter::Pointer mInterpreter; + Factory::Pointer mFactory; WxGUIBlackBoxList* mBoxList; WxGUIBlackBoxInfo* mBoxInfo; @@ -207,6 +207,12 @@ private: wxTextCtrl* mCategoryFilter; wxTextCtrl* mInputTypeFilter; wxTextCtrl* mOutputTypeFilter; + wxTextCtrl* mInputNatureFilter; + wxTextCtrl* mOutputNatureFilter; + + wxCheckBox* mShowWidgetsFilter; + wxCheckBox* mShowAdaptorsFilter; + wxCheckBox* mShowGUIsFilter; DECLARE_EVENT_TABLE() };