wxruby 1.9.9-x86-mingw32 → 1.9.10-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (152) hide show
  1. data/LICENSE +53 -53
  2. data/README +297 -297
  3. data/lib/wx.rb +53 -53
  4. data/lib/wx/classes/bitmap.rb +29 -1
  5. data/lib/wx/classes/clipboard.rb +19 -3
  6. data/lib/wx/classes/colour.rb +6 -4
  7. data/lib/wx/classes/data_object.rb +14 -0
  8. data/lib/wx/classes/data_object_simple.rb +6 -0
  9. data/lib/wx/classes/dataformat.rb +23 -0
  10. data/lib/wx/classes/evthandler.rb +31 -4
  11. data/lib/wx/classes/genericdirctrl.rb +36 -0
  12. data/lib/wx/classes/grid.rb +8 -0
  13. data/lib/wx/classes/hboxsizer.rb +6 -0
  14. data/lib/wx/classes/icon.rb +12 -1
  15. data/lib/wx/classes/image.rb +13 -1
  16. data/lib/wx/classes/listctrl.rb +12 -0
  17. data/lib/wx/classes/point.rb +8 -0
  18. data/lib/wx/classes/rect.rb +10 -1
  19. data/lib/wx/classes/richtextctrl.rb +22 -0
  20. data/lib/wx/classes/size.rb +9 -0
  21. data/lib/wx/classes/sizer.rb +18 -3
  22. data/lib/wx/classes/toolbar.rb +4 -6
  23. data/lib/wx/classes/vboxsizer.rb +6 -0
  24. data/lib/wx/classes/window.rb +7 -0
  25. data/lib/wx/classes/xmlresource.rb +17 -0
  26. data/lib/wx/helpers.rb +16 -1
  27. data/lib/wx/keyword_ctors.rb +3 -2
  28. data/lib/wx/keyword_defs.rb +27 -5
  29. data/lib/wx/version.rb +1 -1
  30. data/lib/wxruby2.so +0 -0
  31. data/samples/SAMPLES-LICENSE.TXT +17 -17
  32. data/samples/bigdemo/About.rbw +39 -39
  33. data/samples/bigdemo/ColorPanel.rbw +23 -23
  34. data/samples/bigdemo/GridSimple.rbw +78 -78
  35. data/samples/bigdemo/MDIDemo.rbw +57 -57
  36. data/samples/bigdemo/PopupMenu.rbw +149 -149
  37. data/samples/bigdemo/Sizers.rbw +543 -543
  38. data/samples/bigdemo/bigdemo.rb +823 -823
  39. data/samples/bigdemo/demoTemplate.rbw +33 -33
  40. data/samples/bigdemo/icons/choice.xpm +27 -27
  41. data/samples/bigdemo/icons/combo.xpm +27 -27
  42. data/samples/bigdemo/icons/copy.xpm +25 -25
  43. data/samples/bigdemo/icons/cut.xpm +24 -24
  44. data/samples/bigdemo/icons/gauge.xpm +27 -27
  45. data/samples/bigdemo/icons/help.xpm +25 -25
  46. data/samples/bigdemo/icons/list.xpm +27 -27
  47. data/samples/bigdemo/icons/mondrian.xpm +44 -44
  48. data/samples/bigdemo/icons/new.xpm +24 -24
  49. data/samples/bigdemo/icons/ogl.ico +0 -0
  50. data/samples/bigdemo/icons/ogl.xpm +45 -45
  51. data/samples/bigdemo/icons/open.xpm +26 -26
  52. data/samples/bigdemo/icons/paste.xpm +38 -38
  53. data/samples/bigdemo/icons/preview.xpm +26 -26
  54. data/samples/bigdemo/icons/print.xpm +26 -26
  55. data/samples/bigdemo/icons/radio.xpm +27 -27
  56. data/samples/bigdemo/icons/robert.xpm +415 -415
  57. data/samples/bigdemo/icons/save.xpm +25 -25
  58. data/samples/bigdemo/icons/smiles.xpm +39 -39
  59. data/samples/bigdemo/icons/smiley.xpm +42 -42
  60. data/samples/bigdemo/icons/stattext.xpm +24 -24
  61. data/samples/bigdemo/icons/test2.bmp +0 -0
  62. data/samples/bigdemo/icons/test2.xpm +79 -79
  63. data/samples/bigdemo/icons/text.xpm +27 -27
  64. data/samples/bigdemo/icons/tog1.xpm +38 -38
  65. data/samples/bigdemo/icons/tog2.xpm +38 -38
  66. data/samples/bigdemo/icons/wxwin16x16.xpm +25 -25
  67. data/samples/bigdemo/tips.txt +7 -7
  68. data/samples/bigdemo/utils.rb +11 -11
  69. data/samples/bigdemo/wxButton.rbw +64 -64
  70. data/samples/bigdemo/wxCalendarCtrl.rbw +60 -60
  71. data/samples/bigdemo/wxCheckBox.rbw +50 -50
  72. data/samples/bigdemo/wxCheckListBox.rbw +65 -75
  73. data/samples/bigdemo/wxChoice.rbw +47 -47
  74. data/samples/bigdemo/wxColourDialog.rbw +31 -31
  75. data/samples/bigdemo/wxComboBox.rbw +77 -77
  76. data/samples/bigdemo/wxDialog.rbw +74 -74
  77. data/samples/bigdemo/wxDirDialog.rbw +29 -29
  78. data/samples/bigdemo/wxFileDialog.rbw +37 -37
  79. data/samples/bigdemo/wxFileDialog_Save.rbw +35 -35
  80. data/samples/bigdemo/wxFindReplaceDialog.rbw +82 -82
  81. data/samples/bigdemo/wxFontDialog.rbw +173 -173
  82. data/samples/bigdemo/wxFrame.rbw +53 -53
  83. data/samples/bigdemo/wxGauge.rbw +71 -71
  84. data/samples/bigdemo/wxGrid.rbw +66 -66
  85. data/samples/bigdemo/wxListBox.rbw +140 -140
  86. data/samples/bigdemo/wxListCtrl_virtual.rbw +112 -107
  87. data/samples/bigdemo/wxMDIWindows.rbw +50 -50
  88. data/samples/bigdemo/wxMenu.rbw +236 -236
  89. data/samples/bigdemo/wxMessageDialog.rbw +27 -27
  90. data/samples/bigdemo/wxMultipleChoiceDialog.rbw +32 -32
  91. data/samples/bigdemo/wxNotebook.rbw +136 -136
  92. data/samples/bigdemo/wxProgressDialog.rbw +43 -43
  93. data/samples/bigdemo/wxRadioBox.rbw +72 -72
  94. data/samples/bigdemo/wxRadioButton.rbw +125 -125
  95. data/samples/bigdemo/wxSashWindow.rbw +2 -2
  96. data/samples/bigdemo/wxScrolledMessageDialog.rbw +57 -57
  97. data/samples/bigdemo/wxScrolledWindow.rbw +199 -199
  98. data/samples/bigdemo/wxSingleChoiceDialog.rbw +33 -33
  99. data/samples/bigdemo/wxSlider.rbw +42 -42
  100. data/samples/bigdemo/wxSpinButton.rbw +50 -50
  101. data/samples/bigdemo/wxSpinCtrl.rbw +51 -51
  102. data/samples/bigdemo/wxSplitterWindow.rbw +63 -63
  103. data/samples/bigdemo/wxStaticBitmap.rbw +51 -51
  104. data/samples/bigdemo/wxStaticText.rbw +55 -55
  105. data/samples/bigdemo/wxStatusBar.rbw +126 -126
  106. data/samples/bigdemo/wxTextCtrl.rbw +149 -149
  107. data/samples/bigdemo/wxTextEntryDialog.rbw +31 -31
  108. data/samples/bigdemo/wxToggleButton.rbw +49 -49
  109. data/samples/bigdemo/wxToolBar.rbw +131 -131
  110. data/samples/bigdemo/wxTreeCtrl.rbw +191 -190
  111. data/samples/calendar/calendar.rb +256 -271
  112. data/samples/caret/caret.rb +282 -282
  113. data/samples/caret/mondrian.xpm +44 -44
  114. data/samples/controls/controls.rb +1136 -1136
  115. data/samples/controls/get_item_sample.rb +87 -87
  116. data/samples/controls/icons/choice.xpm +27 -27
  117. data/samples/controls/icons/combo.xpm +27 -27
  118. data/samples/controls/icons/gauge.xpm +27 -27
  119. data/samples/controls/icons/list.xpm +27 -27
  120. data/samples/controls/icons/radio.xpm +27 -27
  121. data/samples/controls/icons/stattext.xpm +24 -24
  122. data/samples/controls/icons/text.xpm +27 -27
  123. data/samples/controls/mondrian.xpm +44 -44
  124. data/samples/dialogs/dialogs.rb +797 -723
  125. data/samples/dialogs/tips.txt +18 -18
  126. data/samples/drawing/images.rb +37 -37
  127. data/samples/etc/activation.rb +102 -102
  128. data/samples/etc/choice.rb +67 -67
  129. data/samples/etc/miniframe.rb +79 -79
  130. data/samples/etc/sash.rb +130 -130
  131. data/samples/etc/scrollwin.rb +110 -110
  132. data/samples/etc/system_settings.rb +252 -252
  133. data/samples/etc/toolbar_sizer_additem.rb +55 -0
  134. data/samples/etc/wizard.rb +74 -74
  135. data/samples/event/update_ui_event.rb +70 -0
  136. data/samples/grid/gridtablebase.rb +43 -29
  137. data/samples/listbook/listbook.rb +174 -174
  138. data/samples/listbook/listbook.xrc +370 -370
  139. data/samples/mdi/mdi.rb +85 -77
  140. data/samples/minimal/minimal.rb +77 -77
  141. data/samples/minimal/nothing.rb +16 -16
  142. data/samples/text/format-text-bold.png +0 -0
  143. data/samples/text/format-text-italic.png +0 -0
  144. data/samples/text/format-text-underline.png +0 -0
  145. data/samples/text/rich_textctrl.rb +98 -0
  146. data/samples/text/textctrl.rb +111 -113
  147. data/samples/text/unicode.rb +242 -242
  148. data/samples/text/utf8.txt +14 -14
  149. data/samples/treectrl/treectrl.rb +1166 -1174
  150. data/samples/xrc/samples.xrc +46 -46
  151. data/samples/xrc/xrc_sample.rb +76 -96
  152. metadata +15 -3
@@ -1,42 +1,42 @@
1
- #!/usr/bin/env ruby
2
- # wxRuby2 Sample Code. Copyright (c) 2004-2008 wxRuby development team
3
- # Freely reusable code: see SAMPLES-LICENSE.TXT for details
4
- begin
5
- require 'rubygems'
6
- rescue LoadError
7
- end
8
- require 'wx'
9
-
10
-
11
-
12
- class TestPanel < Wx::Panel
13
- def initialize(parent, log)
14
- super(parent, -1)
15
- @log = log
16
- @count = 0
17
-
18
- Wx::StaticText.new(self, -1, "This is a Wx::Slider", Wx::Point.new(45,15))
19
-
20
- slider = Wx::Slider.new(self, 100, 25, 1, 100, Wx::Point.new(30,60), Wx::Size.new(250,-1),
21
- Wx::SL_HORIZONTAL | Wx::SL_AUTOTICKS | Wx::SL_LABELS)
22
- slider.set_tick_freq(5,1)
23
- end
24
- end
25
-
26
- module Demo
27
- def Demo.run(frame,nb,log)
28
- win = TestPanel.new(nb, log)
29
- return win
30
- end
31
-
32
- def Demo.overview
33
- "A slider is a control with a handle which can be pulled back and forth to change the value."
34
- end
35
- end
36
-
37
-
38
- if __FILE__ == $0
39
- run_solo_lib = File.join( File.dirname(__FILE__), 'run.rb')
40
- load run_solo_lib
41
- run File.basename($0)
42
- end
1
+ #!/usr/bin/env ruby
2
+ # wxRuby2 Sample Code. Copyright (c) 2004-2008 wxRuby development team
3
+ # Freely reusable code: see SAMPLES-LICENSE.TXT for details
4
+ begin
5
+ require 'rubygems'
6
+ rescue LoadError
7
+ end
8
+ require 'wx'
9
+
10
+
11
+
12
+ class TestPanel < Wx::Panel
13
+ def initialize(parent, log)
14
+ super(parent, -1)
15
+ @log = log
16
+ @count = 0
17
+
18
+ Wx::StaticText.new(self, -1, "This is a Wx::Slider", Wx::Point.new(45,15))
19
+
20
+ slider = Wx::Slider.new(self, 100, 25, 1, 100, Wx::Point.new(30,60), Wx::Size.new(250,-1),
21
+ Wx::SL_HORIZONTAL | Wx::SL_AUTOTICKS | Wx::SL_LABELS)
22
+ slider.set_tick_freq(5,1)
23
+ end
24
+ end
25
+
26
+ module Demo
27
+ def Demo.run(frame,nb,log)
28
+ win = TestPanel.new(nb, log)
29
+ return win
30
+ end
31
+
32
+ def Demo.overview
33
+ "A slider is a control with a handle which can be pulled back and forth to change the value."
34
+ end
35
+ end
36
+
37
+
38
+ if __FILE__ == $0
39
+ run_solo_lib = File.join( File.dirname(__FILE__), 'run.rb')
40
+ load run_solo_lib
41
+ run File.basename($0)
42
+ end
@@ -1,50 +1,50 @@
1
- #!/usr/bin/env ruby
2
- # wxRuby2 Sample Code. Copyright (c) 2004-2008 wxRuby development team
3
- # Freely reusable code: see SAMPLES-LICENSE.TXT for details
4
- begin
5
- require 'rubygems'
6
- rescue LoadError
7
- end
8
- require 'wx'
9
-
10
-
11
-
12
- class TestPanel < Wx::Panel
13
- def initialize(parent, log)
14
- super(parent, -1)
15
- @log = log
16
- @count = 0
17
-
18
- Wx::StaticText.new(self, -1, "This example uses the wxSpinButton control.", Wx::Point.new(45,15))
19
-
20
- @text = Wx::TextCtrl.new(self, -1, "1", Wx::Point.new(30,50), Wx::Size.new(60,-1))
21
- h = @text.get_size().get_height()
22
- @spin = Wx::SpinButton.new(self, 20, Wx::Point.new(92,50), Wx::Size.new(h,h), Wx::SP_VERTICAL)
23
- @spin.set_range(1, 100)
24
- @spin.set_value(1)
25
-
26
- evt_spin(@spin.get_id()) {|event| on_spin(event)}
27
- end
28
-
29
- def on_spin(event)
30
- @text.set_value(event.get_position().to_s())
31
- end
32
- end
33
-
34
- module Demo
35
- def Demo.run(frame,nb,log)
36
- win = TestPanel.new(nb, log)
37
- return win
38
- end
39
-
40
- def Demo.overview
41
- "A wxSpinButton has two small up and down (or left and right) arrow buttons. It is often used next to a text control for increment and decrementing a value. Portable programs should try to use wxSpinCtrl instead as wxSpinButton is not implemented for all platforms (Win32 and GTK only currently)."
42
- end
43
- end
44
-
45
-
46
- if __FILE__ == $0
47
- run_solo_lib = File.join( File.dirname(__FILE__), 'run.rb')
48
- load run_solo_lib
49
- run File.basename($0)
50
- end
1
+ #!/usr/bin/env ruby
2
+ # wxRuby2 Sample Code. Copyright (c) 2004-2008 wxRuby development team
3
+ # Freely reusable code: see SAMPLES-LICENSE.TXT for details
4
+ begin
5
+ require 'rubygems'
6
+ rescue LoadError
7
+ end
8
+ require 'wx'
9
+
10
+
11
+
12
+ class TestPanel < Wx::Panel
13
+ def initialize(parent, log)
14
+ super(parent, -1)
15
+ @log = log
16
+ @count = 0
17
+
18
+ Wx::StaticText.new(self, -1, "This example uses the wxSpinButton control.", Wx::Point.new(45,15))
19
+
20
+ @text = Wx::TextCtrl.new(self, -1, "1", Wx::Point.new(30,50), Wx::Size.new(60,-1))
21
+ h = @text.get_size().get_height()
22
+ @spin = Wx::SpinButton.new(self, 20, Wx::Point.new(92,50), Wx::Size.new(h,h), Wx::SP_VERTICAL)
23
+ @spin.set_range(1, 100)
24
+ @spin.set_value(1)
25
+
26
+ evt_spin(@spin.get_id()) {|event| on_spin(event)}
27
+ end
28
+
29
+ def on_spin(event)
30
+ @text.set_value(event.get_position().to_s())
31
+ end
32
+ end
33
+
34
+ module Demo
35
+ def Demo.run(frame,nb,log)
36
+ win = TestPanel.new(nb, log)
37
+ return win
38
+ end
39
+
40
+ def Demo.overview
41
+ "A wxSpinButton has two small up and down (or left and right) arrow buttons. It is often used next to a text control for increment and decrementing a value. Portable programs should try to use wxSpinCtrl instead as wxSpinButton is not implemented for all platforms (Win32 and GTK only currently)."
42
+ end
43
+ end
44
+
45
+
46
+ if __FILE__ == $0
47
+ run_solo_lib = File.join( File.dirname(__FILE__), 'run.rb')
48
+ load run_solo_lib
49
+ run File.basename($0)
50
+ end
@@ -1,51 +1,51 @@
1
- #!/usr/bin/env ruby
2
- # wxRuby2 Sample Code. Copyright (c) 2004-2008 wxRuby development team
3
- # Freely reusable code: see SAMPLES-LICENSE.TXT for details
4
- begin
5
- require 'rubygems'
6
- rescue LoadError
7
- end
8
- require 'wx'
9
-
10
-
11
-
12
- class TestPanel < Wx::Panel
13
- def initialize(parent, log)
14
- super(parent, -1)
15
- @log = log
16
- @count = 0
17
-
18
- Wx::StaticText.new(self, -1,
19
- "This example uses the Wx::SpinCtrl control.",
20
- Wx::Point.new(45,15))
21
-
22
- sc = Wx::SpinCtrl.new(self, -1, "",
23
- Wx::Point.new(30, 50), Wx::Size.new(80, -1))
24
- sc.set_range(1,100)
25
- sc.set_value(5)
26
- evt_spinctrl(sc.get_id) { | e | on_spinctrl(e) }
27
- # sc.enable(false)
28
- end
29
-
30
- def on_spinctrl(evt)
31
- @log.write_text("spintctrl - new position #{evt.get_position}")
32
- end
33
- end
34
-
35
- module Demo
36
- def Demo.run(frame,nb,log)
37
- win = TestPanel.new(nb, log)
38
- return win
39
- end
40
-
41
- def Demo.overview
42
- "Wx::SpinCtrl combines Wx::TextCtrl and Wx::SpinButton in one control."
43
- end
44
- end
45
-
46
-
47
- if __FILE__ == $0
48
- run_solo_lib = File.join( File.dirname(__FILE__), 'run.rb')
49
- load run_solo_lib
50
- run File.basename($0)
51
- end
1
+ #!/usr/bin/env ruby
2
+ # wxRuby2 Sample Code. Copyright (c) 2004-2008 wxRuby development team
3
+ # Freely reusable code: see SAMPLES-LICENSE.TXT for details
4
+ begin
5
+ require 'rubygems'
6
+ rescue LoadError
7
+ end
8
+ require 'wx'
9
+
10
+
11
+
12
+ class TestPanel < Wx::Panel
13
+ def initialize(parent, log)
14
+ super(parent, -1)
15
+ @log = log
16
+ @count = 0
17
+
18
+ Wx::StaticText.new(self, -1,
19
+ "This example uses the Wx::SpinCtrl control.",
20
+ Wx::Point.new(45,15))
21
+
22
+ sc = Wx::SpinCtrl.new(self, -1, "",
23
+ Wx::Point.new(30, 50), Wx::Size.new(80, -1))
24
+ sc.set_range(1,100)
25
+ sc.set_value(5)
26
+ evt_spinctrl(sc.get_id) { | e | on_spinctrl(e) }
27
+ # sc.enable(false)
28
+ end
29
+
30
+ def on_spinctrl(evt)
31
+ @log.write_text("spintctrl - new position #{evt.get_position}")
32
+ end
33
+ end
34
+
35
+ module Demo
36
+ def Demo.run(frame,nb,log)
37
+ win = TestPanel.new(nb, log)
38
+ return win
39
+ end
40
+
41
+ def Demo.overview
42
+ "Wx::SpinCtrl combines Wx::TextCtrl and Wx::SpinButton in one control."
43
+ end
44
+ end
45
+
46
+
47
+ if __FILE__ == $0
48
+ run_solo_lib = File.join( File.dirname(__FILE__), 'run.rb')
49
+ load run_solo_lib
50
+ run File.basename($0)
51
+ end
@@ -1,63 +1,63 @@
1
- #!/usr/bin/env ruby
2
- # wxRuby2 Sample Code. Copyright (c) 2004-2008 wxRuby development team
3
- # Freely reusable code: see SAMPLES-LICENSE.TXT for details
4
- begin
5
- require 'rubygems'
6
- rescue LoadError
7
- end
8
- require 'wx'
9
-
10
-
11
-
12
- class MySplitter < Wx::SplitterWindow
13
- def initialize(parent, id, log)
14
- super(parent, id)
15
- @log = log
16
-
17
- evt_splitter_sash_pos_changed(self.get_id()) {|event| on_sash_changed(event)}
18
- evt_splitter_sash_pos_changing(self.get_id()) {|event| on_sash_changing(event)}
19
- end
20
-
21
- def on_sash_changed(event)
22
- @log.write_text("sash changed to: " + event.get_sash_position().to_s())
23
- # uncomment this to not allow the change
24
- #evt.set_sash_position(-1)
25
- end
26
-
27
- def on_sash_changing(event)
28
- @log.write_text("sash changing to: " + event.get_sash_position().to_s())
29
- # uncomment this to not allow the change
30
- #evt.set_sash_position(-1)
31
-
32
- end
33
- end
34
-
35
- module Demo
36
- def Demo.run(frame,nb,log)
37
- splitter = MySplitter.new(nb, -1, log)
38
-
39
- p1 = Wx::Window.new(splitter, -1)
40
- p1.set_background_colour(Wx::RED)
41
- Wx::StaticText.new(p1, -1, "Panel One", Wx::Point.new(5,5)).set_background_colour(Wx::RED)
42
-
43
- p2 = Wx::Window.new(splitter, -1)
44
- p2.set_background_colour(Wx::BLUE)
45
- Wx::StaticText.new(p2, -1, "Panel Two", Wx::Point.new(5,5)).set_background_colour(Wx::BLUE)
46
-
47
- splitter.set_minimum_pane_size(20)
48
- splitter.split_vertically(p1, p2, 100)
49
-
50
- return splitter
51
- end
52
-
53
- def Demo.overview
54
- "This class manages up to two subwindows. The current view can be split into two programmatically (perhaps from a menu command), and unsplit either programmatically or via the wxSplitterWindow user interface."
55
- end
56
- end
57
-
58
-
59
- if __FILE__ == $0
60
- run_solo_lib = File.join( File.dirname(__FILE__), 'run.rb')
61
- load run_solo_lib
62
- run File.basename($0)
63
- end
1
+ #!/usr/bin/env ruby
2
+ # wxRuby2 Sample Code. Copyright (c) 2004-2008 wxRuby development team
3
+ # Freely reusable code: see SAMPLES-LICENSE.TXT for details
4
+ begin
5
+ require 'rubygems'
6
+ rescue LoadError
7
+ end
8
+ require 'wx'
9
+
10
+
11
+
12
+ class MySplitter < Wx::SplitterWindow
13
+ def initialize(parent, id, log)
14
+ super(parent, id)
15
+ @log = log
16
+
17
+ evt_splitter_sash_pos_changed(self.get_id()) {|event| on_sash_changed(event)}
18
+ evt_splitter_sash_pos_changing(self.get_id()) {|event| on_sash_changing(event)}
19
+ end
20
+
21
+ def on_sash_changed(event)
22
+ @log.write_text("sash changed to: " + event.get_sash_position().to_s())
23
+ # uncomment this to not allow the change
24
+ #evt.set_sash_position(-1)
25
+ end
26
+
27
+ def on_sash_changing(event)
28
+ @log.write_text("sash changing to: " + event.get_sash_position().to_s())
29
+ # uncomment this to not allow the change
30
+ #evt.set_sash_position(-1)
31
+
32
+ end
33
+ end
34
+
35
+ module Demo
36
+ def Demo.run(frame,nb,log)
37
+ splitter = MySplitter.new(nb, -1, log)
38
+
39
+ p1 = Wx::Window.new(splitter, -1)
40
+ p1.set_background_colour(Wx::RED)
41
+ Wx::StaticText.new(p1, -1, "Panel One", Wx::Point.new(5,5)).set_background_colour(Wx::RED)
42
+
43
+ p2 = Wx::Window.new(splitter, -1)
44
+ p2.set_background_colour(Wx::BLUE)
45
+ Wx::StaticText.new(p2, -1, "Panel Two", Wx::Point.new(5,5)).set_background_colour(Wx::BLUE)
46
+
47
+ splitter.set_minimum_pane_size(20)
48
+ splitter.split_vertically(p1, p2, 100)
49
+
50
+ return splitter
51
+ end
52
+
53
+ def Demo.overview
54
+ "This class manages up to two subwindows. The current view can be split into two programmatically (perhaps from a menu command), and unsplit either programmatically or via the wxSplitterWindow user interface."
55
+ end
56
+ end
57
+
58
+
59
+ if __FILE__ == $0
60
+ run_solo_lib = File.join( File.dirname(__FILE__), 'run.rb')
61
+ load run_solo_lib
62
+ run File.basename($0)
63
+ end
@@ -1,51 +1,51 @@
1
- #!/usr/bin/env ruby
2
- # wxRuby2 Sample Code. Copyright (c) 2004-2008 wxRuby development team
3
- # Freely reusable code: see SAMPLES-LICENSE.TXT for details
4
- begin
5
- require 'rubygems'
6
- rescue LoadError
7
- end
8
- require 'wx'
9
-
10
-
11
-
12
- class TestPanel < Wx::Panel
13
- def initialize(parent, log)
14
- super(parent, -1)
15
-
16
- Wx::StaticText.new( self, -1, "This is a wxStaticBitmap.",
17
- Wx::Point.new(45,5))
18
-
19
- bmp_file1 = File.join(File.dirname(__FILE__), 'icons', 'test2.xpm')
20
- Wx::StaticBitmap.new( self, -1,
21
- Wx::Bitmap.new(bmp_file1, Wx::BITMAP_TYPE_XPM),
22
- Wx::Point.new(80,25))
23
-
24
- bmp_file2 = File.join(File.dirname(__FILE__), 'icons', 'robert.xpm')
25
- Wx::StaticBitmap.new( self, -1,
26
- Wx::Bitmap.new(bmp_file2, Wx::BITMAP_TYPE_XPM),
27
- Wx::Point.new(0, 100))
28
-
29
- Wx::StaticText.new( self, -1,
30
- "Hey, if Ousterhout (and Dunn) can do it, so can I.",
31
- Wx::Point.new(100, 125) )
32
- end
33
- end
34
-
35
- module Demo
36
- def Demo.run(frame,nb,log)
37
- win = TestPanel.new(nb, log)
38
- return win
39
- end
40
-
41
- def Demo.overview
42
- ""
43
- end
44
- end
45
-
46
-
47
- if __FILE__ == $0
48
- run_solo_lib = File.join( File.dirname(__FILE__), 'run.rb')
49
- load run_solo_lib
50
- run File.basename($0)
51
- end
1
+ #!/usr/bin/env ruby
2
+ # wxRuby2 Sample Code. Copyright (c) 2004-2008 wxRuby development team
3
+ # Freely reusable code: see SAMPLES-LICENSE.TXT for details
4
+ begin
5
+ require 'rubygems'
6
+ rescue LoadError
7
+ end
8
+ require 'wx'
9
+
10
+
11
+
12
+ class TestPanel < Wx::Panel
13
+ def initialize(parent, log)
14
+ super(parent, -1)
15
+
16
+ Wx::StaticText.new( self, -1, "This is a wxStaticBitmap.",
17
+ Wx::Point.new(45,5))
18
+
19
+ bmp_file1 = File.join(File.dirname(__FILE__), 'icons', 'test2.xpm')
20
+ Wx::StaticBitmap.new( self, -1,
21
+ Wx::Bitmap.new(bmp_file1, Wx::BITMAP_TYPE_XPM),
22
+ Wx::Point.new(80,25))
23
+
24
+ bmp_file2 = File.join(File.dirname(__FILE__), 'icons', 'robert.xpm')
25
+ Wx::StaticBitmap.new( self, -1,
26
+ Wx::Bitmap.new(bmp_file2, Wx::BITMAP_TYPE_XPM),
27
+ Wx::Point.new(0, 100))
28
+
29
+ Wx::StaticText.new( self, -1,
30
+ "Hey, if Ousterhout (and Dunn) can do it, so can I.",
31
+ Wx::Point.new(100, 125) )
32
+ end
33
+ end
34
+
35
+ module Demo
36
+ def Demo.run(frame,nb,log)
37
+ win = TestPanel.new(nb, log)
38
+ return win
39
+ end
40
+
41
+ def Demo.overview
42
+ ""
43
+ end
44
+ end
45
+
46
+
47
+ if __FILE__ == $0
48
+ run_solo_lib = File.join( File.dirname(__FILE__), 'run.rb')
49
+ load run_solo_lib
50
+ run File.basename($0)
51
+ end