Changeset 64
- Timestamp:
- 11/09/06 13:50:38 (2 years ago)
- Location:
- sweetgui/trunk
- Files:
-
- 5 modified
-
Rakefile (modified) (1 diff)
-
examples/nodetree.rb (modified) (1 diff)
-
lib/apps/objecttree.rb (modified) (1 diff)
-
lib/swt.rb (modified) (2 diffs)
-
tests/ts_swt.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sweetgui/trunk/Rakefile
r50 r64 14 14 # 15 15 # Contributor(s): 16 # Johannes Rudolph <johannes _rudolph@gmail.com>16 # Johannes Rudolph <johannes.rudolph@gmail.com> 17 17 18 18 -
sweetgui/trunk/examples/nodetree.rb
r31 r64 14 14 # 15 15 # Contributor(s): 16 # Johannes Rudolph <johannes _rudolph@gmail.com>16 # Johannes Rudolph <johannes.rudolph@gmail.com> 17 17 18 18 require 'java' -
sweetgui/trunk/lib/apps/objecttree.rb
r48 r64 17 17 # 18 18 # Contributor(s): 19 # Johannes Rudolph <johannes _rudolph@gmail.com>19 # Johannes Rudolph <johannes.rudolph@gmail.com> 20 20 21 21 class Method -
sweetgui/trunk/lib/swt.rb
r49 r64 16 16 # 17 17 # Contributor(s): 18 # Johannes Rudolph <johannes _rudolph@gmail.com>18 # Johannes Rudolph <johannes.rudolph@gmail.com> 19 19 20 20 require 'java' 21 22 swtjar=File.dirname(__FILE__) + '/../ext/swt.jar' 23 21 24 22 25 module SWT … … 415 418 # Create a shell (a toplevel window) 416 419 def shell(title,columns=1,style=RealSWT::SHELL_TRIM,&block) 417 res=Shell.new( Display.getDefault,style)420 res=Shell.new(style) 418 421 res.setText title 419 422 fl=FillLayout.new -
sweetgui/trunk/tests/ts_swt.rb
r17 r64 14 14 # 15 15 # Contributor(s): 16 # Johannes Rudolph <johannes _rudolph@gmail.com>16 # Johannes Rudolph <johannes.rudolph@gmail.com> 17 17 18 18 require 'swt'
