/*! * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software * Foundation. * * You should have received a copy of the GNU Lesser General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * * Copyright (c) 2002-2013 Pentaho Corporation.. All rights reserved. */ package org.pentaho.pms.ui.concept.editor; import java.util.Map; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.eclipse.swt.SWT; import org.eclipse.swt.events.DisposeEvent; import org.eclipse.swt.events.DisposeListener; import org.eclipse.swt.events.FocusEvent; import org.eclipse.swt.events.FocusListener; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.events.SelectionListener; import org.eclipse.swt.layout.FormAttachment; import org.eclipse.swt.layout.FormData; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Composite; public class BooleanPropertyEditorWidget extends AbstractPropertyEditorWidget implements FocusListener { // ~ Static fields/initializers ====================================================================================== private static final Log logger = LogFactory.getLog(BooleanPropertyEditorWidget.class); // ~ Instance fields ================================================================================================= private Button button; // ~ Constructors ==================================================================================================== public BooleanPropertyEditorWidget(final Composite parent, final int style, final IConceptModel conceptModel, final String propertyId, final Map context) { super(parent, style, conceptModel, propertyId, context); refresh(); if (logger.isDebugEnabled()) { logger.debug("created BooleanPropertyEditorWidget"); } } // ~ Methods ========================================================================================================= protected void createContents(final Composite parent) { addDisposeListener(new DisposeListener() { public void widgetDisposed(DisposeEvent e) { BooleanPropertyEditorWidget.this.widgetDisposed(e); } }); button = new Button(parent, SWT.CHECK); button.setText(PredefinedVsCustomPropertyHelper.getDescription(getPropertyId())); FormData fdCheck = new FormData(); fdCheck.left = new FormAttachment(0, 0); fdCheck.top = new FormAttachment(0, 0); button.setLayoutData(fdCheck); button.addFocusListener(this); // PMD-573 // We need to add this selection listener because on Macs the above focusListener // won't trigger when the panel loses focus (seems to be an swt on mac issue) // the code here just forces the change when the checkbox is selected/deselected. String osName = System.getProperty("os.name").toLowerCase(); //$NON-NLS-1$ boolean isMacOs = osName.startsWith("mac os"); //$NON-NLS-1$ if (isMacOs) { button.addSelectionListener( new SelectionListener() { public void widgetDefaultSelected(SelectionEvent e) {} public void widgetSelected(SelectionEvent e) { focusLost(null); } }); } } protected void widgetDisposed(final DisposeEvent e) { } public Object getValue() { return new Boolean(button.getSelection()); } protected void setValue(final Object value) { button.setSelection(((Boolean) value).booleanValue()); } public String validate() { return null; } public void focusGained(FocusEvent arg0) { // Do nothing } public void focusLost(FocusEvent arg0) { if (!getProperty().getValue().equals(new Boolean(button.getSelection()))) { putPropertyValue(); } } public void refresh() { refreshOverrideButton(); button.setEnabled(isEditable()); setValue(getProperty().getValue()); } public void cleanup() { button.removeFocusListener(this); } }