blob: d2dfa213a856c615729d51c0c0e9e75fcc4ec2b3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2015 IBM Corporation and others.
*
* 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/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.about;
import org.eclipse.core.runtime.Assert;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.CTabFolder;
import org.eclipse.swt.custom.CTabItem;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.about.InstallationPage;
/**
* Abstract superclass of the individual about dialogs that appear outside of
* the InstallationDialog. These dialogs contain a single installation page, and
* scope the page to something more specific than it would be in the standard
* installation dialog.
*
* It is important that the visibility and enablement expressions of
* contributions to this dialog, and the source variables that drive them, do
* not conflict with those used inside the normal InstallationDialog. Otherwise,
* the button manager of the InstallationDialog will be affected by changes in
* the launched dialog. Where commands have enablement expressions in this
* dialog, we use a unique command id so that there are no handler conflicts
* with the regular dialog.
*/
public abstract class ProductInfoDialog extends InstallationDialog {
ProductInfoPage page;
String title;
String helpContextId;
protected ProductInfoDialog(Shell shell) {
super(shell, PlatformUI.getWorkbench().getActiveWorkbenchWindow());
}
public void initializeDialog(ProductInfoPage page, String title,
String helpContextId) {
this.page = page;
this.title = title;
this.helpContextId = helpContextId;
}
@Override
protected void createFolderItems(CTabFolder folder) {
CTabItem item = new CTabItem(folder, SWT.NONE);
item.setText(title);
Composite control = new Composite(folder, SWT.BORDER);
control.setLayout(new GridLayout());
item.setControl(control);
page.createControl(control);
item.setData(page);
item.setData(ID, page.getId());
page.setPageContainer(this);
item.addDisposeListener(e -> page.dispose());
control.layout(true, true);
}
@Override
protected void createButtonsForButtonBar(Composite parent) {
super.createButtonsForButtonBar(parent);
createButtons(page);
}
@Override
protected void configureShell(Shell newShell) {
super.configureShell(newShell);
newShell.setText(title);
if (helpContextId != null)
PlatformUI.getWorkbench().getHelpSystem().setHelp(newShell,
helpContextId);
}
@Override
protected String pageToId(InstallationPage page) {
Assert.isLegal(page == this.page);
return this.page.getId();
}
}