]> Creatis software - bbtk.git/commitdiff
Normalize names
authorjean-pierre roux <jean-pierre.roux@creatis.insa-lyon.fr>
Wed, 20 Feb 2008 09:17:59 +0000 (09:17 +0000)
committerjean-pierre roux <jean-pierre.roux@creatis.insa-lyon.fr>
Wed, 20 Feb 2008 09:17:59 +0000 (09:17 +0000)
Add examples

packages/wx/bbs/appli/exampleComplexLayoutLine_In_LayoutLine.bbs [moved from packages/wx/bbs/appli/exampleLayoutLine_In_LayoutLine.bbs with 98% similarity]
packages/wx/bbs/appli/exampleComplexLayoutSplit_In_LayoutSplit.bbs [moved from packages/wx/bbs/appli/exampleLayoutSplit_In_LayoutSplit.bbs with 100% similarity]
packages/wx/bbs/appli/exampleSimpleLayoutLine.bbs [moved from packages/wx/bbs/appli/exampleLayoutLine.bbs with 100% similarity]
packages/wx/bbs/appli/exampleSimpleLayoutSplit.bbs [moved from packages/wx/bbs/appli/exampleLayoutSplit.bbs with 100% similarity]
packages/wx/bbs/appli/exampleSimpleLayoutTDown.bbs [new file with mode: 0644]
packages/wx/bbs/appli/exampleSimpleLayoutTLeft.bbs [new file with mode: 0644]
packages/wx/bbs/appli/exampleSimpleLayoutTRight.bbs [new file with mode: 0644]
packages/wx/bbs/appli/exampleSimpleLayoutTUp.bbs [new file with mode: 0644]
packages/wx/bbs/appli/exampleSimpleSlider.bbs [moved from packages/wx/bbs/appli/exampleSlider.bbs with 100% similarity]

similarity index 98%
rename from packages/wx/bbs/appli/exampleLayoutLine_In_LayoutLine.bbs
rename to packages/wx/bbs/appli/exampleComplexLayoutLine_In_LayoutLine.bbs
index 1545d6fa44d1f4ee86cfbd23f5e52b12d4ae488b..57592e9bc4f352d3d69bbd318dff575b3617146d 100644 (file)
@@ -1,4 +1,4 @@
-description "Simple test of wx::LayoutLine widgets"
+description "More complicated example of wx::LayoutLine widgets"
 author "jean-pierre.roux@creatis.univ-lyon1.fr"
 category "example;widget"
 
diff --git a/packages/wx/bbs/appli/exampleSimpleLayoutTDown.bbs b/packages/wx/bbs/appli/exampleSimpleLayoutTDown.bbs
new file mode 100644 (file)
index 0000000..afbac15
--- /dev/null
@@ -0,0 +1,23 @@
+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/exampleSimpleLayoutTLeft.bbs b/packages/wx/bbs/appli/exampleSimpleLayoutTLeft.bbs
new file mode 100644 (file)
index 0000000..9f216f0
--- /dev/null
@@ -0,0 +1,24 @@
+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/exampleSimpleLayoutTRight.bbs b/packages/wx/bbs/appli/exampleSimpleLayoutTRight.bbs
new file mode 100644 (file)
index 0000000..145189f
--- /dev/null
@@ -0,0 +1,24 @@
+description "Simple test of wx::LayoutTRight widgets"
+author "jean-pierre.roux [at] creatis [dot] univ [dash] lyon1 [dot] fr"
+category "example"
+
+load std
+include wx
+
+new LayoutTRight 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/exampleSimpleLayoutTUp.bbs b/packages/wx/bbs/appli/exampleSimpleLayoutTUp.bbs
new file mode 100644 (file)
index 0000000..26e5e83
--- /dev/null
@@ -0,0 +1,23 @@
+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