From 253d8b9228b200d50992aa77749f1a04d212e24a Mon Sep 17 00:00:00 2001 From: jean-pierre roux Date: Wed, 20 Feb 2008 08:52:01 +0000 Subject: [PATCH] Rename exempleXXX as exampleXXX. Sorry for the noise --- .../appli/exampleLayoutLine_In_LayoutLine.bbs | 119 +++++++++++---- .../exampleLayoutSplit_In_LayoutSplit.bbs | 77 ++++++++-- packages/wx/bbs/appli/exampleRadioButton.bbs | 36 +++-- .../bbs/appli/exempleComplexLinesInRows.bbs | 144 ------------------ .../bbs/appli/exempleComplexSplitInSplit.bbs | 136 ----------------- .../appli/exempleLayoutLineOrientation.bbs | 30 ---- .../appli/exempleLayoutSplitOrientation.bbs | 30 ---- packages/wx/bbs/appli/exempleLayoutTDown.bbs | 23 --- packages/wx/bbs/appli/exempleLayoutTLeft.bbs | 24 --- packages/wx/bbs/appli/exempleLayoutTUp.bbs | 23 --- packages/wx/bbs/appli/exempleRadioButton.bbs | 32 ---- packages/wx/bbs/appli/exempleSizer.bbs | 14 -- packages/wx/bbs/appli/exempleSplit.bbs | 14 -- 13 files changed, 168 insertions(+), 534 deletions(-) delete mode 100644 packages/wx/bbs/appli/exempleComplexLinesInRows.bbs delete mode 100644 packages/wx/bbs/appli/exempleComplexSplitInSplit.bbs delete mode 100644 packages/wx/bbs/appli/exempleLayoutLineOrientation.bbs delete mode 100644 packages/wx/bbs/appli/exempleLayoutSplitOrientation.bbs delete mode 100644 packages/wx/bbs/appli/exempleLayoutTDown.bbs delete mode 100644 packages/wx/bbs/appli/exempleLayoutTLeft.bbs delete mode 100644 packages/wx/bbs/appli/exempleLayoutTUp.bbs delete mode 100644 packages/wx/bbs/appli/exempleRadioButton.bbs delete mode 100644 packages/wx/bbs/appli/exempleSizer.bbs delete mode 100644 packages/wx/bbs/appli/exempleSplit.bbs diff --git a/packages/wx/bbs/appli/exampleLayoutLine_In_LayoutLine.bbs b/packages/wx/bbs/appli/exampleLayoutLine_In_LayoutLine.bbs index 55378d3..1545d6f 100644 --- a/packages/wx/bbs/appli/exampleLayoutLine_In_LayoutLine.bbs +++ b/packages/wx/bbs/appli/exampleLayoutLine_In_LayoutLine.bbs @@ -8,56 +8,109 @@ load wx #----- I N T E R F A C E ------------------------------------- - +// Just to see the mess when you want something not so simple... + +// upLeft upRight +// ----------|-----------| +// | | | +// | | | +// | | | +// UP |---------| | +// | | | +// | | | +// | | | +// ---------- ----------------------- +// | | +// | | +// | | +// | | +// DOWN ----------|-----------| +// | | | +// | | | +// | | | downDown +// | | | +// ---------------------- new LayoutLine main - set main.Orientation H + set main.Orientation V new LayoutLine up -set up.Orientation 0 + set up.Orientation H new LayoutLine down - set down.Orientation 1 - new Slider sDown - set sDown.Title "sDown" - connect sDown.Widget down.Widget1 - new RadioButton rb - set rb.Title "Rad But" - set rb.In0 "Choix 1" - set rb.In1 "Choix 2" - set rb.In2 "Choix 3" - set rb.In3 "Choix 4" - set rb.In 1 - connect rb.Widget down.Widget2 - - -connect up.Widget main.Widget1 -connect down.Widget main.Widget2 - + set down.Orientation V + new Slider s1Down + set s1Down.Title "s1Down" + connect s1Down.Widget down.Widget1 + + new LayoutLine downDown + set downDown.Orientation H + connect downDown.Widget down.Widget2 + + new RadioButton rb1 + set rb1.Title "Rad But DownLeft" + set rb1.In0 "Choix 1" + set rb1.In1 "Choix 2" + set rb1.In2 "Choix 3" + set rb1.In3 "Choix 4" + set rb1.In 1 + connect rb1.Widget downDown.Widget1 + + + new RadioButton rb2 + set rb2.Title "Rad But DownLeft" + set rb2.In0 "Choix 1" + set rb2.In1 "Choix 2" + set rb2.In2 "Choix 3" + set rb2.In3 "Choix 4" + set rb2.In 4 + connect rb2.Widget downDown.Widget2 + + + connect up.Widget main.Widget1 + connect down.Widget main.Widget2 new LayoutLine upLeft - #set upLeft.Proportion 80 - new Slider sUpLeft1 - set sUpLeft1.Title "sUpLeft1" - connect sUpLeft1.Widget upLeft.Widget1 - new Slider sUpLeft2 - set sUpLeft2.Title "sUpLeft2" - connect sUpLeft2.Widget upLeft.Widget2 + + new Slider sUpLeft10 + set sUpLeft10.Title "sUpLeft10" + connect sUpLeft10.Widget upLeft.Widget1 + new Slider sUpLeft11 + set sUpLeft11.Title "sUpLeft11" + connect sUpLeft11.Widget upLeft.Widget2 + new Slider sUpLeft12 + set sUpLeft12.Title "sUpLeft12" + connect sUpLeft12.Widget upLeft.Widget3 + new Slider sUpLeft13 + set sUpLeft13.Title "sUpLeft13" + connect sUpLeft13.Widget upLeft.Widget4 + + new Slider sUpLeft14 + set sUpLeft14.Title "sUpLeft14" + connect sUpLeft14.Widget upLeft.Widget5 + new Slider sUpLeft15 + set sUpLeft15.Title "sUpLeft15" + connect sUpLeft15.Widget upLeft.Widget6 + new Slider sUpLeft16 + set sUpLeft16.Title "sUpLeft16" + connect sUpLeft16.Widget upLeft.Widget7 + new Slider sUpLeft17 + set sUpLeft17.Title "sUpLeft17" + connect sUpLeft17.Widget upLeft.Widget8 connect upLeft.Widget up.Widget1 - new LayoutLine upRight - set upRight.Orientation 0 + set upRight.Orientation H new Slider s1 - set s1.Orientation 1 + set s1.Orientation V set s1.Title "s1" new Slider s2 - set s2.Orientation 1 + set s2.Orientation V set s2.Title "s2" new Slider s3 - set s3.Orientation 1 + set s3.Orientation V set s3.Title "s3" new Slider s4 - set s4.Orientation 1 + set s4.Orientation V set s4.Title "s4" connect s1.Widget upRight.Widget1 connect s2.Widget upRight.Widget2 diff --git a/packages/wx/bbs/appli/exampleLayoutSplit_In_LayoutSplit.bbs b/packages/wx/bbs/appli/exampleLayoutSplit_In_LayoutSplit.bbs index 66492f7..09582d9 100644 --- a/packages/wx/bbs/appli/exampleLayoutSplit_In_LayoutSplit.bbs +++ b/packages/wx/bbs/appli/exampleLayoutSplit_In_LayoutSplit.bbs @@ -8,7 +8,34 @@ load wx #----- I N T E R F A C E ------------------------------------- - +// Just to see the mess when you want something not so simple... + +// upLeft upRight +// ----------|-----------| +// | | | +// | | | +// | | | +// UP |---------| | +// | | | +// | | | +// | | | +// ---------- ----------------------- +// | | +// | | +// | | +// | | +// DOWN ----------|-----------| +// | | | +// | | | +// | | | downDown +// | | | +// ---------------------- +// +// Better use a mix of LayoutTxxx (xxx = Up, Down, Right, Left)! +// +// +// TODO : add same structure using only LayoutTxxx + new LayoutSplit main set main.Orientation V @@ -17,31 +44,49 @@ set up.Orientation H new LayoutSplit down set down.Orientation V - new Slider sDown - set sDown.Title "sDown" - connect sDown.Widget down.Widget1 - new RadioButton rb - set rb.Title "Rad But Down" - set rb.In0 "Choix 1" - set rb.In1 "Choix 2" - set rb.In2 "Choix 3" - set rb.In3 "Choix 4" - set rb.In 1 - connect rb.Widget down.Widget2 - - -connect up.Widget main.Widget1 -connect down.Widget main.Widget2 + new Slider s1Down + set s1Down.Title "s1Down" + connect s1Down.Widget down.Widget1 + + new LayoutSplit downDown + set downDown.Orientation H + + connect downDown.Widget down.Widget2 + + new RadioButton rb1 + set rb1.Title "Rad But DownLeft" + set rb1.In0 "Choix 1" + set rb1.In1 "Choix 2" + set rb1.In2 "Choix 3" + set rb1.In3 "Choix 4" + set rb1.In 1 + connect rb1.Widget downDown.Widget1 + + + new RadioButton rb2 + set rb2.Title "Rad But DownLeft" + set rb2.In0 "Choix 1" + set rb2.In1 "Choix 2" + set rb2.In2 "Choix 3" + set rb2.In3 "Choix 4" + set rb2.In 4 + connect rb2.Widget downDown.Widget2 + + + connect up.Widget main.Widget1 + connect down.Widget main.Widget2 new LayoutSplit upLeft set upLeft.Proportion 80 + // only 2 objets are allowed here new Slider sUpLeft1 set sUpLeft1.Title "sUpLeft1" connect sUpLeft1.Widget upLeft.Widget1 new Slider sUpLeft2 set sUpLeft2.Title "sUpLeft2" connect sUpLeft2.Widget upLeft.Widget2 + connect upLeft.Widget up.Widget1 diff --git a/packages/wx/bbs/appli/exampleRadioButton.bbs b/packages/wx/bbs/appli/exampleRadioButton.bbs index cccb248..955c829 100644 --- a/packages/wx/bbs/appli/exampleRadioButton.bbs +++ b/packages/wx/bbs/appli/exampleRadioButton.bbs @@ -1,24 +1,30 @@ description "Simple test of wx::RadioButton widget" -author "jean-pierre.roux@creatis.insa-lyon.fr" -category "example;widget" +author "jean-pierre.roux@creatis.univ-lyon1.fr" +category "example" load wx load std -print "Ceci est un essai de RadioButton" +print "Simple check of RadioButton" new RadioButton rb -set rb.Title "My Radio Button" -set rb.In0 "This" -set rb.In1 "Is" -set rb.In2 "Not" -set rb.In4 "A" -set rb.In5 "Love" -# Here we put "Song" in In9 : if it is selected, the output is '9' -set rb.In9 "Song" -set rb.In 2 +// +// Note : missing positions are dealt with +// + set rb.Title "My Radio Fantastic RadioButton" + set rb.In0 "Zero/Cero/Cepher" + set rb.In1 "One/Uno/Wahed" + set rb.In2 "Two/Dos/Thayn" + set rb.In4 "Four/Quatro/Arbaa" + set rb.In5 "Five/Cinco/Khamsin" + set rb.In8 "Twelve/Ocho/Thamanya" + set rb.In 2 print $rb.Out$\n -//new StaticText t -//connect rb.Out t.In -//connect rb.BoxChange t.BoxExecute +new OutputText t + set t.Title "This is what you clicked" + set t.WinHeight 80 + set t.WinWidth 500 + +connect rb.Out t.In +connect rb.BoxChange t.BoxExecute diff --git a/packages/wx/bbs/appli/exempleComplexLinesInRows.bbs b/packages/wx/bbs/appli/exempleComplexLinesInRows.bbs deleted file mode 100644 index 82d85c5..0000000 --- a/packages/wx/bbs/appli/exempleComplexLinesInRows.bbs +++ /dev/null @@ -1,144 +0,0 @@ -description "More complicated example of wx::Split widgets" -author "jean-pierre.roux@creatis.univ-lyon1.fr" -category "example" - -load std -load wx - - -#----- I N T E R F A C E ------------------------------------- - -// Just to see the mess when you want something not so simple... - -// upLeft upRight -// ----------|-----------| -// | | | -// | | | -// | | | -// UP |---------| | -// | | | -// | | | -// | | | -// ---------- ----------------------- -// | | -// | | -// | | -// | | -// DOWN ----------|-----------| -// | | | -// | | | -// | | | downDown -// | | | -// ---------------------- -new LayoutLine main - set main.Orientation V - -new LayoutLine up - set up.Orientation H - -new LayoutLine down - set down.Orientation V - new Slider s1Down - set s1Down.Title "s1Down" - connect s1Down.Widget down.Widget1 - - new LayoutLine downDown - set downDown.Orientation H - connect downDown.Widget down.Widget2 - - new RadioButton rb1 - set rb1.Title "Rad But DownLeft" - set rb1.In0 "Choix 1" - set rb1.In1 "Choix 2" - set rb1.In2 "Choix 3" - set rb1.In3 "Choix 4" - set rb1.In 1 - connect rb1.Widget downDown.Widget1 - - - new RadioButton rb2 - set rb2.Title "Rad But DownLeft" - set rb2.In0 "Choix 1" - set rb2.In1 "Choix 2" - set rb2.In2 "Choix 3" - set rb2.In3 "Choix 4" - set rb2.In 4 - connect rb2.Widget downDown.Widget2 - - - connect up.Widget main.Widget1 - connect down.Widget main.Widget2 - - new LayoutLine upLeft - - new Slider sUpLeft10 - set sUpLeft10.Title "sUpLeft10" - connect sUpLeft10.Widget upLeft.Widget1 - new Slider sUpLeft11 - set sUpLeft11.Title "sUpLeft11" - connect sUpLeft11.Widget upLeft.Widget2 - new Slider sUpLeft12 - set sUpLeft12.Title "sUpLeft12" - connect sUpLeft12.Widget upLeft.Widget3 - new Slider sUpLeft13 - set sUpLeft13.Title "sUpLeft13" - connect sUpLeft13.Widget upLeft.Widget4 - - new Slider sUpLeft14 - set sUpLeft14.Title "sUpLeft14" - connect sUpLeft14.Widget upLeft.Widget5 - new Slider sUpLeft15 - set sUpLeft15.Title "sUpLeft15" - connect sUpLeft15.Widget upLeft.Widget6 - new Slider sUpLeft16 - set sUpLeft16.Title "sUpLeft16" - connect sUpLeft16.Widget upLeft.Widget7 - new Slider sUpLeft17 - set sUpLeft17.Title "sUpLeft17" - connect sUpLeft17.Widget upLeft.Widget8 - connect upLeft.Widget up.Widget1 - - new LayoutLine upRight - set upRight.Orientation H - new Slider s1 - set s1.Orientation V - set s1.Title "s1" - new Slider s2 - set s2.Orientation V - set s2.Title "s2" - new Slider s3 - set s3.Orientation V - set s3.Title "s3" - new Slider s4 - set s4.Orientation V - set s4.Title "s4" - connect s1.Widget upRight.Widget1 - connect s2.Widget upRight.Widget2 - connect s3.Widget upRight.Widget3 - connect s4.Widget upRight.Widget4 - connect upRight.Widget up.Widget2 - -#------p i p e l i n e--------------------------------------- -#... -#------------------------------------------------------------ - - -//graph -#set main.WinDialog 1 -exec main - - -set s1.BoxProcessMode 1 - - -//print rb=$rb.Out$\n - -/* -print s1=$s1.Out$\n -print s2=$s2.Out$\n -print s3=$s3.Out$\n -print s4=$s4.Out$\n -print sUpLeft=$sUpLeft.Out$\n -print sDown=$sDown.Out$\n -*/ - diff --git a/packages/wx/bbs/appli/exempleComplexSplitInSplit.bbs b/packages/wx/bbs/appli/exempleComplexSplitInSplit.bbs deleted file mode 100644 index 4425d2a..0000000 --- a/packages/wx/bbs/appli/exempleComplexSplitInSplit.bbs +++ /dev/null @@ -1,136 +0,0 @@ -description "More complicated example of wx::Split widgets" -author "jean-pierre.roux@creatis.univ-lyon1.fr" -category "example" - -load std -load wx - - -#----- I N T E R F A C E ------------------------------------- - -// Just to see the mess when you want something not so simple... - -// upLeft upRight -// ----------|-----------| -// | | | -// | | | -// | | | -// UP |---------| | -// | | | -// | | | -// | | | -// ---------- ----------------------- -// | | -// | | -// | | -// | | -// DOWN ----------|-----------| -// | | | -// | | | -// | | | downDown -// | | | -// ---------------------- -// -// Better use a mix of LayoutTxxx (xxx = Up, Down, Right, Left)! -// -// -// TODO : add same structure using only LayoutTxxx - -new LayoutSplit main - set main.Orientation V - -new LayoutSplit up -set up.Orientation H - -new LayoutSplit down - set down.Orientation V - new Slider s1Down - set s1Down.Title "s1Down" - connect s1Down.Widget down.Widget1 - - new LayoutSplit downDown - set downDown.Orientation H - - connect downDown.Widget down.Widget2 - - new RadioButton rb1 - set rb1.Title "Rad But DownLeft" - set rb1.In0 "Choix 1" - set rb1.In1 "Choix 2" - set rb1.In2 "Choix 3" - set rb1.In3 "Choix 4" - set rb1.In 1 - connect rb1.Widget downDown.Widget1 - - - new RadioButton rb2 - set rb2.Title "Rad But DownLeft" - set rb2.In0 "Choix 1" - set rb2.In1 "Choix 2" - set rb2.In2 "Choix 3" - set rb2.In3 "Choix 4" - set rb2.In 4 - connect rb2.Widget downDown.Widget2 - - - connect up.Widget main.Widget1 - connect down.Widget main.Widget2 - - - new LayoutSplit upLeft - set upLeft.Proportion 80 - // only 2 objetsare allowed here - new Slider sUpLeft1 - set sUpLeft1.Title "sUpLeft1" - connect sUpLeft1.Widget upLeft.Widget1 - new Slider sUpLeft2 - set sUpLeft2.Title "sUpLeft2" - connect sUpLeft2.Widget upLeft.Widget2 - - connect upLeft.Widget up.Widget1 - - - new LayoutLine upRight - set upRight.Orientation H - new Slider s1 - set s1.Orientation V - set s1.Title "s1" - new Slider s2 - set s2.Orientation V - set s2.Title "s2" - new Slider s3 - set s3.Orientation V - set s3.Title "s3" - new Slider s4 - set s4.Orientation V - set s4.Title "s4" - connect s1.Widget upRight.Widget1 - connect s2.Widget upRight.Widget2 - connect s3.Widget upRight.Widget3 - connect s4.Widget upRight.Widget4 - connect upRight.Widget up.Widget2 - -#------p i p e l i n e--------------------------------------- -#... -#------------------------------------------------------------ - - -//graph -#set main.WinDialog 1 -exec main - - -set s1.BoxProcessMode 1 - - -//print rb=$rb.Out$\n - -/* -print s1=$s1.Out$\n -print s2=$s2.Out$\n -print s3=$s3.Out$\n -print s4=$s4.Out$\n -print sUpLeft=$sUpLeft.Out$\n -print sDown=$sDown.Out$\n -*/ - diff --git a/packages/wx/bbs/appli/exempleLayoutLineOrientation.bbs b/packages/wx/bbs/appli/exempleLayoutLineOrientation.bbs deleted file mode 100644 index 96aa13b..0000000 --- a/packages/wx/bbs/appli/exempleLayoutLineOrientation.bbs +++ /dev/null @@ -1,30 +0,0 @@ -description "Simple test of wx::LayoutLine widgets" -author "jean-pierre.roux@creatis.univ-lyon1.fr" -category "exemple" - -load std -load wx - -new LayoutLine main - set main.Orientation V -new LayoutLine Sizer2 - -new Slider s1 - set s1.Title "SliderUp" -new Slider s2 - set s2.Title "SliderDownLeft" -new Slider s3 - set s3.Title "SliderDownRight" - -connect s1.Widget main.Widget1 -connect Sizer2.Widget main.Widget2 - -set Sizer2.Orientation H -connect s2.Widget Sizer2.Widget1 -connect s3.Widget Sizer2.Widget2 - -print s1=$s1.Out$\n -print s2=$s2.Out$\n -print s3=$s3.Out$\n - -exec main diff --git a/packages/wx/bbs/appli/exempleLayoutSplitOrientation.bbs b/packages/wx/bbs/appli/exempleLayoutSplitOrientation.bbs deleted file mode 100644 index e584918..0000000 --- a/packages/wx/bbs/appli/exempleLayoutSplitOrientation.bbs +++ /dev/null @@ -1,30 +0,0 @@ -description "Simple test of wx::LayoutLine widgets" -author "jean-pierre.roux [at] creatis [dot] univ [dash] lyon1 [dot] fr" -category "exemple" - -load std -load wx - -new LayoutSplit main - set main.Orientation V -new LayoutSplit split2 - -new Slider s1 - set s1.Title "SliderUp" -new Slider s2 - set s2.Title "SliderDownLeft" -new Slider s3 - set s3.Title "SliderDownRight" - -connect s1.Widget main.Widget1 -connect split2.Widget main.Widget2 - -set split2.Orientation H -connect s2.Widget split2.Widget1 -connect s3.Widget split2.Widget2 - -print s1=$s1.Out$\n -print s2=$s2.Out$\n -print s3=$s3.Out$\n - -exec main diff --git a/packages/wx/bbs/appli/exempleLayoutTDown.bbs b/packages/wx/bbs/appli/exempleLayoutTDown.bbs deleted file mode 100644 index afbac15..0000000 --- a/packages/wx/bbs/appli/exempleLayoutTDown.bbs +++ /dev/null @@ -1,23 +0,0 @@ -description "Simple test of wx::LayoutTDown widgets" -author "jean-pierre.roux@creatis.univ-lyon1.fr" -category "example" - -load std -include wx - -new LayoutTDown main - -new Slider s1 - set s1.Title "SliderUpLeft" - -new Slider s2 - set s2.Title "SliderUpRight" - -new Slider s3 - set s3.Title "SliderDown" - -connect s1.Widget main.Widget1 -connect s2.Widget main.Widget2 -connect s3.Widget main.Widget3 - -exec main diff --git a/packages/wx/bbs/appli/exempleLayoutTLeft.bbs b/packages/wx/bbs/appli/exempleLayoutTLeft.bbs deleted file mode 100644 index 9f216f0..0000000 --- a/packages/wx/bbs/appli/exempleLayoutTLeft.bbs +++ /dev/null @@ -1,24 +0,0 @@ -description "Simple test of wx::LayoutTLeft widgets" -author "jean-pierre.roux@creatis.univ-lyon1.fr" -category "example" - -load std -include wx - -new LayoutTLeft main - -new Slider s1 - set s1.Title "SliderLeft" - set s1.Orientation V - -new Slider s2 - set s2.Title "SliderRigthUpt" - -new Slider s3 - set s3.Title "SliderRightDown" - -connect s1.Widget main.Widget1 -connect s2.Widget main.Widget2 -connect s3.Widget main.Widget3 - -exec main diff --git a/packages/wx/bbs/appli/exempleLayoutTUp.bbs b/packages/wx/bbs/appli/exempleLayoutTUp.bbs deleted file mode 100644 index 26e5e83..0000000 --- a/packages/wx/bbs/appli/exempleLayoutTUp.bbs +++ /dev/null @@ -1,23 +0,0 @@ -description "Simple test of wx::LayoutTUp widgets" -author "jean-pierre.roux@creatis.univ-lyon1.fr" -category "example" - -load std -include wx - -new LayoutTUp main - -new Slider s1 - set s1.Title "SliderUp" - -new Slider s2 - set s2.Title "SliderDownLeft" - -new Slider s3 - set s3.Title "SliderDownRight" - -connect s1.Widget main.Widget1 -connect s2.Widget main.Widget2 -connect s3.Widget main.Widget3 - -exec main diff --git a/packages/wx/bbs/appli/exempleRadioButton.bbs b/packages/wx/bbs/appli/exempleRadioButton.bbs deleted file mode 100644 index 4bc2351..0000000 --- a/packages/wx/bbs/appli/exempleRadioButton.bbs +++ /dev/null @@ -1,32 +0,0 @@ -description "Simple test of wx::RadioButton widgets" -author "jean-pierre.roux@creatis.univ-lyon1.fr" -category "exemple" - -load wx -load std - -print "Simple check of RadioButton" -new RadioButton rb -// -// Note : missing positions are dealt with -// - set rb.Title "My Radio Fantastic RadioButton" - set rb.In0 "Zero/Cero/Cepher" - set rb.In1 "One/Uno/Wahed" - set rb.In2 "Two/Dos/Thayn" - set rb.In4 "Four/Quatro/Arbaa" - set rb.In5 "Five/Cinco/Khamsin" - set rb.In8 "Twelve/Ocho/Thamanya" - set rb.In 2 - -print $rb.Out$\n - -new OutputText t - set t.Title "This is what you clicked" - set t.WinHeight 80 - set t.WinWidth 500 - - - -connect rb.Out t.In -connect rb.BoxChange t.BoxExecute diff --git a/packages/wx/bbs/appli/exempleSizer.bbs b/packages/wx/bbs/appli/exempleSizer.bbs deleted file mode 100644 index 6ad62e8..0000000 --- a/packages/wx/bbs/appli/exempleSizer.bbs +++ /dev/null @@ -1,14 +0,0 @@ -description "Simple test of wx::LayoutLine widget" -author "eduardo.davila@creatis.insa-lyon.fr" -category "example" - -load wx - -new Slider slider1 -new Slider slider2 -new LayoutLine main - -connect slider1.Widget main.Widget1 -connect slider2.Widget main.Widget2 - -exec main diff --git a/packages/wx/bbs/appli/exempleSplit.bbs b/packages/wx/bbs/appli/exempleSplit.bbs deleted file mode 100644 index 6542c97..0000000 --- a/packages/wx/bbs/appli/exempleSplit.bbs +++ /dev/null @@ -1,14 +0,0 @@ -description "Simple test of wx::Split widget" -author "laurent.guigues@creatis.insa-lyon.fr" -category "example" - -load wx - -new Slider slider1 -new Slider slider2 -new LayoutSplit main - -connect slider1.Widget main.Widget1 -connect slider2.Widget main.Widget2 - -exec main -- 2.47.1