]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbcreaMaracasVisuPanelButtonContainer.cxx
(some of the) unused variables
[creaMaracasVisu.git] / bbtk / src / bbcreaMaracasVisuPanelButtonContainer.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 "bbcreaMaracasVisuPanelButtonContainer.h"
5 #include "bbcreaMaracasVisuPackage.h"
6 namespace bbcreaMaracasVisu
7 {
8
9         BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaMaracasVisu,PanelButtonContainer)
10         BBTK_BLACK_BOX_IMPLEMENTATION(PanelButtonContainer,bbtk::WxBlackBox)
11 ;
12 //===== 
13 // 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)
14 //===== 
15 void
16 PanelButtonContainer::Process( )
17 {
18         ButtonContainerSettings* settings = new ButtonContainerSettings( );
19         printf("EED PanelButtonContainer::Process %d\n", bbGetInputIn( ).size() );
20         settings->AddButtons( bbGetInputIn( ) );
21         
22         PBContainer* panel = new PBContainer( myPanel, settings );
23         wxBoxSizer* sizer = new wxBoxSizer( wxHORIZONTAL );
24         sizer->Add( panel, 1, wxEXPAND, 0 );
25         this->myPanel->SetSizer(sizer);
26         
27         this->myPanel->SetAutoLayout(true);
28         this->myPanel->Layout();
29
30         
31 }
32 //===== 
33 // 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)
34 //===== 
35 void PanelButtonContainer::CreateWidget( wxWindow* parent )
36 {
37         this->myPanel = new wxPanel( parent, -1 );
38         /// \TODO fix  warning: unused variable ww
39         wxWindow* ww = bbCreateWidgetOfInput( "In", this->myPanel );
40         bbSetOutputWidget( myPanel);
41
42 }
43 //===== 
44 // 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)
45 //===== 
46 void
47 PanelButtonContainer::bbUserSetDefaultValues( )
48 {
49
50 }
51 //===== 
52 // 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)
53 //===== 
54 void
55 PanelButtonContainer::bbUserInitializeProcessing( )
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
63 PanelButtonContainer::bbUserFinalizeProcessing( )
64 {
65
66 }
67 }
68 // EO namespace bbcreaMaracasVisu
69
70