blob: 273b036e7a6f40040f972661614e9466c515b6ef [file] [log] [blame]
package groovy.swt.guibuilder
class Screen1 extends Script {
def run() {
guiBuilder.composite {
fillLayout()
group( text:"This is Screen1.groovy" ) {
gridLayout()
button( text:"the hardest", background:[0, 255, 255] )
button( text:"button", background:[0, 255, 255] )
button( text:"to button", background:[0, 255, 255] )
}
}
}
}