btnEnter.setBackground(display.getSystemColor(SWT.COLOR_RED));
GridData btnEnterData = new GridData();
btnEnterData.horizontalSpan = 2;
btnEnterData.horizontalAlignment= SWT.CENTER;
btnEnter.setLayoutData(btnEnterData);
btnEnter.addMouseListener (new MouseAdapter() {
public void mouseDown(MouseEvent e) {
ButtonStub.setEnter(true);
}
public void mouseUp(MouseEvent e) {
ButtonStub.setEnter(false);