Skip to content

Instantly share code, notes, and snippets.

@hedefalk
Created February 25, 2011 09:30
Show Gist options
  • Save hedefalk/843573 to your computer and use it in GitHub Desktop.
Save hedefalk/843573 to your computer and use it in GitHub Desktop.
def textbox(output: Var[String])(setups: (Text => Any)*)(parent: Composite) = {
val text = new Text(parent, SWT.BORDER)
text setText (output.now)
text emitTo output
setupAndReturn(text, setups)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment