groovy.ui.view.BasicToolBar.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of groovy-all-minimal Show documentation
Show all versions of groovy-all-minimal Show documentation
Groovy: A powerful, dynamic language for the JVM
package groovy.ui.view
import javax.swing.SwingConstants
import java.awt.BorderLayout
toolBar(id:'toolbar', rollover:true, visible:controller.showToolbar, constraints:BorderLayout.NORTH) {
button(newFileAction, text:null)
button(openAction, text:null)
button(saveAction, text:null)
separator(orientation:SwingConstants.VERTICAL)
button(undoAction, text:null)
button(redoAction, text:null)
separator(orientation:SwingConstants.VERTICAL)
button(cutAction, text:null)
button(copyAction, text:null)
button(pasteAction, text:null)
separator(orientation:SwingConstants.VERTICAL)
button(findAction, text:null)
button(replaceAction, text:null)
separator(orientation:SwingConstants.VERTICAL)
button(historyPrevAction, text:null)
button(historyNextAction, text:null)
separator(orientation:SwingConstants.VERTICAL)
button(runAction, text:null)
}