]> Creatis software - bbtk.git/blob - packages/wx/src/bbwxLaunchBrowser.cxx
no message
[bbtk.git] / packages / wx / src / bbwxLaunchBrowser.cxx
1 //===== 
2 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
3 //===== 
4 #include "bbwxLaunchBrowser.h"
5 #include "bbwxPackage.h"
6
7 #include <wx/utils.h>
8
9 namespace bbwx
10 {
11
12 BBTK_ADD_BLACK_BOX_TO_PACKAGE(wx,LaunchBrowser)
13 BBTK_BLACK_BOX_IMPLEMENTATION(LaunchBrowser,bbtk::AtomicBlackBox);
14 //===== 
15 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
16 //===== 
17 void LaunchBrowser::Process()
18 {
19
20 // THE MAIN PROCESSING METHOD BODY
21 //   Here we simply set the input 'In' value to the output 'Out'
22 //   And print out the output value
23 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
24 //    void bbSet{Input|Output}NAME(const TYPE&)
25 //    const TYPE& bbGet{Input|Output}NAME() const 
26 //    Where :
27 //    * NAME is the name of the input/output
28 //      (the one provided in the attribute 'name' of the tag 'input')
29 //    * TYPE is the C++ type of the input/output
30 //      (the one provided in the attribute 'type' of the tag 'input')
31
32         wxLaunchDefaultBrowser( wxString( bbGetInputIn().c_str() , wxConvUTF8)  );
33   
34 }
35 //===== 
36 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
37 //===== 
38 void LaunchBrowser::bbUserSetDefaultValues()
39 {
40
41 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
42 //    Here we initialize the input 'In' to 0
43    bbSetInputIn("http://www.creatis.insa-lyon.fr");
44   
45 }
46 //===== 
47 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
48 //===== 
49 void LaunchBrowser::bbUserInitializeProcessing()
50 {
51
52 //  THE INITIALIZATION METHOD BODY :
53 //    Here does nothing 
54 //    but this is where you should allocate the internal/output pointers 
55 //    if any 
56
57   
58 }
59 //===== 
60 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
61 //===== 
62 void LaunchBrowser::bbUserFinalizeProcessing()
63 {
64
65 //  THE FINALIZATION METHOD BODY :
66 //    Here does nothing 
67 //    but this is where you should desallocate the internal/output pointers 
68 //    if any
69   
70 }
71 }
72 // EO namespace bbwx
73
74