]> Creatis software - bbtk.git/blob - kernel/src/bbtkWxGUIPackageBrowser.h
Feature #1774
[bbtk.git] / kernel / src / bbtkWxGUIPackageBrowser.h
1 /*
2  # ---------------------------------------------------------------------
3  #
4  # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5  #                        pour la SantÈ)
6  # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7  # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8  # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9  #
10  #  This software is governed by the CeCILL-B license under French law and
11  #  abiding by the rules of distribution of free software. You can  use,
12  #  modify and/ or redistribute the software under the terms of the CeCILL-B
13  #  license as circulated by CEA, CNRS and INRIA at the following URL
14  #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15  #  or in the file LICENSE.txt.
16  #
17  #  As a counterpart to the access to the source code and  rights to copy,
18  #  modify and redistribute granted by the license, users are provided only
19  #  with a limited warranty  and the software's author,  the holder of the
20  #  economic rights,  and the successive licensors  have only  limited
21  #  liability.
22  #
23  #  The fact that you are presently reading this means that you have had
24  #  knowledge of the CeCILL-B license and that you accept its terms.
25  # ------------------------------------------------------------------------ */
26
27
28 /*=========================================================================
29   Program:   bbtk
30   Module:    $RCSfile: bbtkWxGUIPackageBrowser.h,v $
31   Language:  C++
32   Date:      $Date: 2012/11/16 08:49:01 $
33   Version:   $Revision: 1.6 $
34 =========================================================================*/
35
36
37
38
39 /**
40  * \brief Short description in one line
41  * 
42  * Long description which 
43  * can span multiple lines
44  */
45 /**
46  * \file 
47  * \brief 
48  */
49 /**
50  * \class bbtk::
51  * \brief 
52  */
53
54 /*
55 #ifdef _USE_WXWIDGETS_
56
57         
58 #ifndef __bbtkWxGUIPackageBrowser_h__
59 #define __bbtkWxGUIPackageBrowser_h__
60
61
62 #include "bbtkWx.h"
63
64 #include "bbtkInterpreter.h"
65
66 class wxTreeMultiCtrl;
67
68 namespace bbtk
69 {
70   //================================================================
71   class WxGUIPackageBrowser;
72   //================================================================
73  
74
75   //================================================================
76   /// Abstract class which defines the callbacks invoked by WxGUIPackageBrowser
77   class BBTK_EXPORT WxGUIPackageBrowserUser
78   {
79   public:
80     WxGUIPackageBrowserUser() {}
81     ~WxGUIPackageBrowserUser() {}
82     /// Callback invoked when the 'run' button is pressed
83     virtual void WxGUIPackageBrowserRun() {}
84   };
85   //================================================================
86
87   //================================================================
88   class WxGUIPackageBrowserBlackBox : public wxPanel
89   {
90   public:
91     WxGUIPackageBrowserBlackBox(wxWindow* parent,
92                                 WxGUIPackageBrowser* browser,
93                                 BlackBoxDescriptor::Pointer descr);
94     ~WxGUIPackageBrowserBlackBox();
95
96   private:
97     WxGUIPackageBrowser* mBrowser;
98     BlackBoxDescriptor::Pointer mDescriptor;
99   } ;
100   //================================================================
101
102
103   //================================================================
104   /// A package browser panel
105   class BBTK_EXPORT WxGUIPackageBrowser : public wxPanel
106   {
107   public:
108     WxGUIPackageBrowser( wxWindow *parent, 
109                          WxGUIPackageBrowserUser* user = 0 );
110     ~WxGUIPackageBrowser();
111
112     void IncludeAll();
113     void BuildFromFactory(Factory::Pointer f);
114
115   private:
116     WxGUIPackageBrowserUser* mUser;
117     Interpreter::Pointer mInterpreter;
118     wxTreeMultiCtrl* mTree;
119
120   };
121   //================================================================
122
123   
124   //================================================================
125   /// Browser in a frame 
126   class BBTK_EXPORT WxGUIPackageBrowserWindow : public wxFrame
127                                               //, public WxGUICommandUser
128   {
129   public:
130     WxGUIPackageBrowserWindow( wxWindow *parent, wxString title, wxSize size);
131     ~WxGUIPackageBrowserWindow();
132     //    void Open(const std::string& filename) { mBrowser->Open(filename); }
133     //    void WxGUICommandEnter(const std::string& s);
134
135
136   private :
137     
138     WxGUIPackageBrowser* mBrowser;
139   };
140    //================================================================
141  
142
143 } // namespace bbtk
144
145
146 #endif // __bbtkWxGUIPackageBrowser_h__
147
148 #endif //_USE_WXWIDGETS_
149 */