Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/StatusTextEditor.java')
-rw-r--r--org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/StatusTextEditor.java197
1 files changed, 0 insertions, 197 deletions
diff --git a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/StatusTextEditor.java b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/StatusTextEditor.java
deleted file mode 100644
index eee9e64109a..00000000000
--- a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/StatusTextEditor.java
+++ /dev/null
@@ -1,197 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 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 v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.ui.texteditor;
-
-
-import org.eclipse.swt.SWT;
-import org.eclipse.swt.custom.StackLayout;
-import org.eclipse.swt.layout.FillLayout;
-import org.eclipse.swt.widgets.Composite;
-import org.eclipse.swt.widgets.Control;
-
-import org.eclipse.core.runtime.CoreException;
-import org.eclipse.core.runtime.IStatus;
-
-import org.eclipse.ui.IEditorInput;
-
-
-/**
- * Capable of handling input elements that have an associated status with them.
- * @since 2.0
- */
-public class StatusTextEditor extends AbstractTextEditor {
-
- /** The root composite of this editor */
- private Composite fParent;
- /** The layout used to manage the regular and the status page */
- private StackLayout fStackLayout;
- /** The root composite for the regular page */
- private Composite fDefaultComposite;
- /** The status page */
- private Control fStatusControl;
-
- /*
- * @see IWorkbenchPart#createPartControl(org.eclipse.swt.widgets.Composite)
- */
- public void createPartControl(Composite parent) {
-
- fParent= new Composite(parent, SWT.NONE);
- fStackLayout= new StackLayout();
- fParent.setLayout(fStackLayout);
-
- fDefaultComposite= new Composite(fParent, SWT.NONE);
- fDefaultComposite.setLayout(new FillLayout());
- super.createPartControl(fDefaultComposite);
-
- updatePartControl(getEditorInput());
- }
-
- /**
- * Checks if the status of the given input is OK. If not the
- * status control is shown rather than the default control.
- *
- * @param input the input whose status is checked
- */
- public void updatePartControl(IEditorInput input) {
-
- if (fStatusControl != null) {
- fStatusControl.dispose();
- fStatusControl= null;
- }
-
- Control front= null;
- if (fParent != null && input != null) {
- if (getDocumentProvider() instanceof IDocumentProviderExtension) {
- IDocumentProviderExtension extension= (IDocumentProviderExtension) getDocumentProvider();
- IStatus status= extension.getStatus(input);
- if (!isErrorStatus(status)) {
- front= fDefaultComposite;
- } else {
- fStatusControl= createStatusControl(fParent, status);
- front= fStatusControl;
- }
- }
- }
-
- if (fStackLayout.topControl != front) {
- fStackLayout.topControl= front;
- fParent.layout();
- updateStatusFields();
- }
- }
-
- /**
- * Returns whether the given status indicates an error. Subclasses may override.
- *
- * @param status the status to be checked
- * @return <code>true</code> if the status indicates an error, <code>false</code> otherwise\
- * @since 3.0
- */
- protected boolean isErrorStatus(IStatus status) {
- return status != null && !status.isOK();
- }
-
- /**
- * Creates the status control for the given status.
- * May be overridden by subclasses.
- *
- * @param parent the parent control
- * @param status the status
- * @return the new status control
- */
- protected Control createStatusControl(Composite parent, IStatus status) {
- InfoForm infoForm= new InfoForm(parent);
- infoForm.setHeaderText(getStatusHeader(status));
- infoForm.setBannerText(getStatusBanner(status));
- infoForm.setInfo(getStatusMessage(status));
- return infoForm.getControl();
- }
-
- /**
- * Returns a header for the given status
- *
- * @param status the status whose message is returned
- * @return a header for the given status
- */
- protected String getStatusHeader(IStatus status) {
- return ""; //$NON-NLS-1$
- }
-
- /**
- * Returns a banner for the given status.
- *
- * @param status the status whose message is returned
- * @return a banner for the given status
- */
- protected String getStatusBanner(IStatus status) {
- return ""; //$NON-NLS-1$
- }
-
- /**
- * Returns a message for the given status.
- *
- * @param status the status whose message is returned
- * @return a message for the given status
- */
- protected String getStatusMessage(IStatus status) {
- return status.getMessage();
- }
-
- /*
- * @see AbstractTextEditor#updateStatusField(String)
- */
- protected void updateStatusField(String category) {
- IDocumentProvider provider= getDocumentProvider();
- if (provider instanceof IDocumentProviderExtension) {
- IDocumentProviderExtension extension= (IDocumentProviderExtension) provider;
- IStatus status= extension.getStatus(getEditorInput());
- if (isErrorStatus(status)) {
- IStatusField field= getStatusField(category);
- if (field != null) {
- field.setText(fErrorLabel);
- return;
- }
- }
- }
-
- super.updateStatusField(category);
- }
-
- /*
- * @see AbstractTextEditor#doSetInput(IEditorInput)
- */
- protected void doSetInput(IEditorInput input) throws CoreException {
- super.doSetInput(input);
- if (fParent != null && !fParent.isDisposed())
- updatePartControl(getEditorInput());
- }
-
- /*
- * @see ITextEditor#doRevertToSaved()
- */
- public void doRevertToSaved() {
- // http://dev.eclipse.org/bugs/show_bug.cgi?id=19014
- super.doRevertToSaved();
- if (fParent != null && !fParent.isDisposed())
- updatePartControl(getEditorInput());
- }
-
- /*
- * @see AbstractTextEditor#sanityCheckState(IEditorInput)
- */
- protected void sanityCheckState(IEditorInput input) {
- // http://dev.eclipse.org/bugs/show_bug.cgi?id=19014
- super.sanityCheckState(input);
- if (fParent != null && !fParent.isDisposed())
- updatePartControl(getEditorInput());
- }
-}

Back to the top