blob: 5ac31cc401336ff63598689a407be935df99d207 [file] [log] [blame]
package org.eclipse.cdt.ui.dialogs;
/***********************************************************************
* Copyright (c) 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v05.html
*
* Contributors:
* QNX Software Systems - Initial API and implementation
***********************************************************************/
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.eclipse.cdt.ui.CUIPlugin;
import org.eclipse.cdt.utils.ui.controls.TabFolderLayout;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.TabFolder;
import org.eclipse.swt.widgets.TabItem;
public abstract class TabFolderOptionBlock {
protected boolean initializingTabs = true;
private Composite composite;
private boolean bShowMessageArea;
private String fErrorMessage;
private boolean bIsValid = true;
private Label messageLabel;
private ArrayList pages;
protected ICOptionContainer fParent;
private ICOptionPage fCurrentPage;
private TabFolder fFolder;
public TabFolderOptionBlock(ICOptionContainer parent, boolean showMessageArea) {
fParent = parent;
bShowMessageArea = showMessageArea;
}
public TabFolderOptionBlock(ICOptionContainer parent) {
this(parent, true);
}
protected void addOptionPage(ICOptionPage page) {
if (pages == null) {
pages = new ArrayList();
}
if (!pages.contains(page)) {
pages.add(page);
}
}
protected List getOptionPages() {
return pages;
}
public Control createContents(Composite parent) {
composite = new Composite(parent, SWT.NONE);
composite.setLayout(new GridLayout(1, false));
if (bShowMessageArea) {
messageLabel = new Label(composite, SWT.LEFT);
messageLabel.setFont(composite.getFont());
messageLabel.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
Label separator = new Label(composite, SWT.HORIZONTAL);
separator.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
}
createFolder(composite);
addTabs();
setCurrentPage((ICOptionPage) pages.get(0));
initializingTabs = false;
String desc = ((ICOptionPage) pages.get(0)).getDescription();
if (desc != null) {
messageLabel.setText(desc);
}
return composite;
}
protected void createFolder(Composite parent) {
fFolder = new TabFolder(parent, SWT.NONE);
fFolder.setLayoutData(new GridData(GridData.FILL_BOTH));
fFolder.setLayout(new TabFolderLayout());
fFolder.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
if (!initializingTabs) {
setCurrentPage((ICOptionPage) ((TabItem) e.item).getData());
fParent.updateContainer();
}
}
});
}
protected void addTab(ICOptionPage tab) {
TabItem item = new TabItem(fFolder, SWT.NONE);
item.setText(tab.getTitle());
Image img = tab.getImage();
if (img != null)
item.setImage(img);
item.setData(tab);
tab.setContainer(fParent);
tab.createControl(item.getParent());
item.setControl(tab.getControl());
addOptionPage(tab);
}
abstract protected void addTabs();
public boolean performApply(IProgressMonitor monitor) {
if (initializingTabs)
return false;
Iterator iter = pages.iterator();
while (iter.hasNext()) {
ICOptionPage tab = (ICOptionPage) iter.next();
try {
tab.performApply(new NullProgressMonitor());
} catch (CoreException e) {
CUIPlugin.errorDialog(composite.getShell(), "Error", "Error setting options", e);
return false;
}
}
return true;
}
/**
* @see DialogPage#setVisible(boolean)
*/
public void setVisible(boolean visible) {
if (initializingTabs)
return;
if (fCurrentPage != null) {
fCurrentPage.setVisible(visible);
}
update();
}
public void update() {
if (initializingTabs)
return;
boolean ok = true;
Iterator iter = pages.iterator();
while (iter.hasNext()) {
ICOptionPage tab = (ICOptionPage) iter.next();
ok = tab.isValid();
if (!ok) {
setErrorMessage(tab.getErrorMessage());
break;
}
}
if (ok) {
setErrorMessage(null);
ICOptionPage tab = getCurrentPage();
if (bShowMessageArea && tab.getDescription() != null)
messageLabel.setText(tab.getDescription());
}
setValid(ok);
}
private void setValid(boolean ok) {
bIsValid = ok;
}
private void setErrorMessage(String message) {
fErrorMessage = message;
}
public String getErrorMessage() {
return fErrorMessage;
}
public boolean isValid() {
return bIsValid;
}
public void performDefaults() {
if (initializingTabs)
return;
getCurrentPage().performDefaults();
}
public ICOptionPage getCurrentPage() {
return fCurrentPage;
}
public void setCurrentPage(ICOptionPage page) {
//Make the new page visible
ICOptionPage oldPage = fCurrentPage;
fCurrentPage = page;
fCurrentPage.setVisible(true);
if (oldPage != null)
oldPage.setVisible(false);
}
}