-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelloworld.rb
More file actions
49 lines (38 loc) · 1.16 KB
/
helloworld.rb
File metadata and controls
49 lines (38 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/local/bin/macruby
framework 'appkit'
class AppDelegate
def applicationDidFinishLaunching(notification)
puts "Hello, World!"
end
def sayHello(sender)
puts "Hello again, World!"
end
end
app = NSApplication.sharedApplication
app.delegate = AppDelegate.new
win = NSWindow.alloc.initWithContentRect([200, 300, 250, 100],
styleMask:NSTitledWindowMask|NSClosableWindowMask|NSMiniaturizableWindowMask|NSResizableWindowMask,
backing:NSBackingStoreBuffered,
defer:false)
win.title = 'Hello World'
win.level = 3
hel = NSButton.alloc.initWithFrame([10, 10, 80, 80])
win.contentView.addSubview(hel)
hel.bezelStyle = 4
hel.title = 'Hello!'
hel.target = app.delegate
hel.action = 'sayHello:'
beep = NSSound.alloc.initWithContentsOfFile('/System/Library/Sounds/Tink.Aiff', byReference:true)
hel.sound = beep
bye = NSButton.alloc.initWithFrame([100, 10, 80, 80])
win.contentView.addSubview(bye)
bye.bezelStyle = 4
bye.target = app
bye.action = 'stop:'
bye.enabled = true
bye.title = 'Goodbye!'
adios = NSSound.alloc.initWithContentsOfFile('/System/Library/Sounds/Basso.Aiff', byReference:true)
bye.sound = adios
win.display
win.orderFrontRegardless
app.run