Skip to content

Commit

Permalink
Hello tab sample
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Maleh committed Mar 18, 2011
1 parent 1474621 commit bb213dd
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions samples/hello_tab.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
require File.dirname(__FILE__) + "/../lib/glimmer"

class HelloTab
include Glimmer
def launch
shell {
text "SWT"
tab_folder {
tab_item {
text "Tab 1"
label {
text "Hello World!"
}
}
tab_item {
text "Tab 2"
label {
text "Bonjour Univers!"
}
}
}
}.open
end
end

HelloTab.new.launch

0 comments on commit bb213dd

Please sign in to comment.