blob: 437765fd4d647c283f9a6e5544e19ea09eceb9ed [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.ui.internal.widgets;
import org.eclipse.jpt.common.ui.JptCommonUiMessages;
import org.eclipse.jpt.common.utility.model.Model;
import org.eclipse.jpt.common.utility.model.value.PropertyValueModel;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
/**
* A chooser is simply a pane with two widgets, a main
* widget, usually a text field, and a right widget which is usually a browse
* button. A label for the ChooserPane will need to be built by the parent
*
* @see ClassChooserPane
* @see PackageChooserPane
*
* @version 3.0
* @since 2.0
*/
public abstract class ChooserPane<T extends Model> extends Pane<T>
{
/**
* Creates a new <code>ChooserPane</code>.
*
* @param parentPane The parent pane of this one
* @param parent The parent container
*/
public ChooserPane(Pane<? extends T> parentPane,
Composite parent) {
super(parentPane, parent);
}
/**
* Creates a new <code>ChooserPane</code>.
*
* @param parentPane The parent container of this one
* @param subjectHolder The holder of this pane's subject
* @param parent The parent container
*/
public ChooserPane(Pane<?> parentPane,
PropertyValueModel<? extends T> subjectHolder,
Composite parent) {
super(parentPane, subjectHolder, parent);
}
/**
* Creates a new <code>ChooserPane</code>.
*
* @param parentPane The parent container of this one
* @param subjectHolder The holder of this pane's subject
* @param parent The parent container
*/
public ChooserPane(Pane<?> parentPane,
PropertyValueModel<? extends T> subjectHolder,
PropertyValueModel<Boolean> enabledModel,
Composite parent) {
super(parentPane, subjectHolder, enabledModel, parent);
}
@Override
protected Composite addComposite(Composite parent) {
return this.addSubPane(parent, 2, 0, 0, 0, 0);
}
@Override
protected void initializeLayout(Composite container) {
this.addMainControl(container);
this.addRightControl(container);
}
/**
* Creates the main control of this pane.
*
* @param container The parent container
* @return The newly created main control
*/
protected abstract Control addMainControl(Composite container);
/**
* Creates the right control. By default a browse button is created and its
* action is performed by {@link #buildBrowseAction()} and its text is
* retrieved by {@link #getBrowseButtonText()}.
*
* @param container The parent container
* @return The newly created right control
*/
protected Control addRightControl(Composite container) {
return addButton(
container,
getBrowseButtonText(),
getHelpId(),
buildBrowseAction()
);
}
/**
* Returns the text of the browse button. This method is called by
* {@link #buildRightControl(Composite)}.
*
* @return "Browse..."
*/
protected String getBrowseButtonText() {
return JptCommonUiMessages.CHOOSER_PANE__BROWSE_BUTTON;
}
/**
* Creates the action responsible to perform the action when the Browse is
* clicked.
*
* @return A new <code>Runnable</code> performing the actual action of the
* button
*/
protected abstract Runnable buildBrowseAction();
/**
* Returns the help topic ID for the controls of this pane.
*
* @return <code>null</code> is returned otherwise the subclass can return an ID
*/
protected String getHelpId() {
return null;
}
}