Skip to content

Instantly share code, notes, and snippets.

@DinisCruz
Created January 10, 2014 03:50
Show Gist options
  • Select an option

  • Save DinisCruz/8346707 to your computer and use it in GitHub Desktop.

Select an option

Save DinisCruz/8346707 to your computer and use it in GitHub Desktop.
SWT toolbars
def view = eclipse.views.create("ToolBar");
view.clear().set.layout.grid()
def toolBar = view.add.toolBar();
toolBar.add_ToolItem("first");
toolBar.add_Button("A button");
toolBar.add_Button("with Icon", images.get(12));
toolBar.add_Button(images.get(13));
view.add.textArea("This is some text").set.layout.grid_Grab()
view.refresh();
return toolBar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment