blob: c838160e33e6c434980d0e42159a151b5e496ff5 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2005, 2019 SAP SE and others
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* SAP SE - initial API, implementation and documentation
* Felix Velasco (mwenz) - Bug 323351 - Enable to suppress/reactivate the speed buttons
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.graphiti.platform;
/**
* This interface provides predefined image constants which can be used by the
* features for image graphics algorithm.
*
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IPlatformImageConstants {
/**
* The Constant PRE.
*/
public static final String PRE = "org.eclipse.graphiti."; //$NON-NLS-1$
/**
* The Constant IMG_MISSING.
*/
public static final String IMG_MISSING = PRE + "missing"; //$NON-NLS-1$
/**
* The Constant IMG_EDIT_EXPANDALL.
*/
public static final String IMG_EDIT_EXPAND = PRE + "edit.expand"; //$NON-NLS-1$
/**
* The Constant IMG_EDIT_EXPANDALL.
*/
public static final String IMG_EDIT_EXPANDALL = PRE + "edit.expandall"; //$NON-NLS-1$
/**
* The Constant IMG_EDIT_COLLAPSEALL.
*/
public static final String IMG_EDIT_COLLAPSE = PRE + "edit.collapse"; //$NON-NLS-1$
/**
* The Constant IMG_EDIT_COLLAPSEALL.
*/
public static final String IMG_EDIT_COLLAPSEALL = PRE + "edit.collapseall"; //$NON-NLS-1$
/**
* The Constant IMG_EDIT_REFRESH.
*/
public static final String IMG_EDIT_REFRESH = PRE + "edit.refresh"; //$NON-NLS-1$
/**
* The Constant IMG_EDIT_DELETE.
*/
public static final String IMG_EDIT_DELETE = PRE + "edit.delete"; //$NON-NLS-1$
/**
* The Constant IMG_EDIT_REMOVE.
*/
public static final String IMG_EDIT_REMOVE = PRE + "edit.remove"; //$NON-NLS-1$
/**
* The Constant IMG_DIAGRAM.
*/
public static final String IMG_DIAGRAM = PRE + "diagram"; //$NON-NLS-1$
//
// eclipse
//
/**
* The Constant IMG_ECLIPSE_WARNING.
*/
public static final String IMG_ECLIPSE_WARNING = PRE + "eclipse.warning"; //$NON-NLS-1$
/**
* The Constant IMG_ECLIPSE_WARNING_TSK.
*/
public static final String IMG_ECLIPSE_WARNING_TSK = PRE + "eclipse.warning.tsk"; //$NON-NLS-1$
/**
* The Constant IMG_ECLIPSE_ERROR.
*/
public static final String IMG_ECLIPSE_ERROR = PRE + "eclipse.error"; //$NON-NLS-1$
/**
* The Constant IMG_ECLIPSE_ERROR_TSK.
*/
public static final String IMG_ECLIPSE_ERROR_TSK = PRE + "eclipse.error.tsk"; //$NON-NLS-1$
/**
* The Constant IMG_ECLIPSE_INFORMATION.
*/
public static final String IMG_ECLIPSE_INFORMATION = PRE + "eclipse.information"; //$NON-NLS-1$
/**
* The Constant IMG_ECLIPSE_INFORMATION_TSK.
*/
public static final String IMG_ECLIPSE_INFORMATION_TSK = PRE + "eclipse.information.tsk"; //$NON-NLS-1$
/**
* The Constant IMG_ECLIPSE_QUICKASSIST.
*/
public static final String IMG_ECLIPSE_QUICKASSIST = PRE + "eclipse.quickassist"; //$NON-NLS-1$
/**
* The Constant IMG_TOGGLE_PAD.
*
* @since 0.9
*/
public static final String IMG_TOGGLE_PAD = PRE + "toggle.context.pad"; //$NON-NLS-1$
}