java Programming Glossary: griddata
SWT - Tableviewer adding a remove button to a column in the table http://stackoverflow.com/questions/12480402/swt-tableviewer-adding-a-remove-button-to-a-column-in-the-table parent int style super parent style Table table getTable GridData gridData new GridData SWT.FILL SWT.FILL true true table.setLayoutData.. parent style Table table getTable GridData gridData new GridData SWT.FILL SWT.FILL true true table.setLayoutData gridData createColumns..
How to make SWT/JFace dialogs which show similar behaviour(layouts) under all window resolutions http://stackoverflow.com/questions/12741208/how-to-make-swt-jface-dialogs-which-show-similar-behaviourlayouts-under-all-wi import org.eclipse.swt.SWT import org.eclipse.swt.layout.GridData import org.eclipse.swt.layout.GridLayout import org.eclipse.swt.widgets.Button.. top.setLayout new GridLayout 2 false top.setLayoutData new GridData SWT.FILL SWT.CENTER true false Label firstLabel new Label top.. firstText.setEditable false firstText.setLayoutData new GridData SWT.FILL SWT.CENTER true true Label secondLabel new Label top..
|