]> Creatis software - creaImageIO.git/blob - src2/creaImageIOWxTreeView.h
*** empty log message ***
[creaImageIO.git] / src2 / creaImageIOWxTreeView.h
1 #ifndef __creaImageIOWxTreeView_h_INCLUDED__
2 #define __creaImageIOWxTreeView_h_INCLUDED__
3
4 #ifdef USE_WXWIDGETS
5
6 #include <creaImageIOTreeView.h>
7 #include <creaWx.h>
8
9 namespace creaImageIO
10 {
11   /**
12    * \ingroup View
13    */
14   //=====================================================================
15   
16   //=====================================================================
17   /// Abstract class that handles the view of a Tree through its TreeHandler
18   class WxTreeView : public wxPanel, virtual public TreeView
19     {
20     public:
21       /// Ctor
22       WxTreeView(TreeHandler*, wxWindow* parent, const wxWindowID id);
23       /// Virtual destructor
24       virtual ~WxTreeView();
25
26       
27       /// Something like that ...
28       virtual void UpdateView();
29       
30
31     private:
32
33     };
34     // EO class WxTreeView
35     //=====================================================================
36   
37 } // EO namespace creaImageIO
38
39
40 #endif // USE_WIDGETS
41 // EOF
42 #endif