/******************************************************************************* * Copyright (c) 2014 Mentor Graphics and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Mentor Graphics - initial API and implementation *******************************************************************************/ package com.codesourcery.internal.installer; /** * Image keys */ public interface IInstallerImages { /** Installer dialog title icon */ public static final String TITLE_ICON = "TITLE_ICON"; //$NON-NLS-1$ /** Empty bullet */ public static final String BULLET_EMPTY = "BULLET_EMPTY"; //$NON-NLS-1$ /** Empty bullet 2 */ public static final String BULLET_EMPTY2 = "BULLET_EMPTY2"; //$NON-NLS-1$ /** Solid bullet */ public static final String BULLET_SOLID = "BULLET_SOLID"; //$NON-NLS-1$ /** Error bullet */ public static final String BULLET_ERROR = "BULLET_ERROR"; //$NON-NLS-1$ /** Error bullet 2 */ public static final String BULLET_ERROR2 = "BULLET_ERROR2"; //$NON-NLS-1$ /** Checked bullet */ public static final String BULLET_CHECKED = "BULLET_CHECKED"; //$NON-NLS-1$ /** Checked bullet 2 */ public static final String BULLET_CHECKED2 = "BULLET_CHECKED2"; //$NON-NLS-1$ /** Arrow pointing right */ public static final String BULLET_ARROW = "BULLET_ARROW"; //$NON-NLS-1$ /** Arrow pointing right 2 */ public static final String BULLET_ARROW2 = "BULLET_ARROW2"; //$NON-NLS-1$ /** Image for page banner */ public static final String PAGE_BANNER = "PAGE_BANNER"; //$NON-NLS-1$ /** Component */ public static final String COMPONENT = "COMPONENT"; //$NON-NLS-1$ /** Optional component */ public static final String COMPONENT_OPTIONAL = "COMPONENT_OPTIONAL"; //$NON-NLS-1$ /** Required component overlay */ public static final String COMP_REQUIRED_OVERLAY = "COMPONENT_REQUIRED_OVERLAY"; //$NON-NLS-1$ /** Optional component overlay */ public static final String COMP_OPTIONAL_OVERLAY = "COMPONENT_OPTIONAL_OVERLAY"; //$NON-NLS-1$ /** Add-on component overlay */ public static final String COMP_ADDON_OVERLAY = "COMPONENT_ADDON_OVERLAY"; //$NON-NLS-1$ /** Refresh */ public static final String REFRESH = "REFRESH"; //$NON-NLS-1$ /** Folder */ public static final String FOLDER = "FOLDER"; //$NON-NLS-1$ /** Information */ public static final String INFO = "INFO"; //$NON-NLS-1$ /** Error */ public static final String ERROR = "ERROR"; //$NON-NLS-1$ /** Warning */ public static final String WARNING = "WARNING"; //$NON-NLS-1$ /** First 'waiting' animation image */ public static final String WAIT0 = "WAIT0"; //$NON-NLS-1$ /** Second 'waiting' animation image */ public static final String WAIT1 = "WAIT1"; //$NON-NLS-1$ /** Third 'waiting' animation image */ public static final String WAIT2 = "WAIT2"; //$NON-NLS-1$ /** Fourth 'waiting' animation image */ public static final String WAIT3 = "WAIT3"; //$NON-NLS-1$ /** Fifth 'waiting' animation image */ public static final String WAIT4 = "WAIT4"; //$NON-NLS-1$ /** Sixth 'waiting' animation image */ public static final String WAIT5 = "WAIT5"; //$NON-NLS-1$ /** Seventh 'waiting' animation image */ public static final String WAIT6 = "WAIT6"; //$NON-NLS-1$ /** Eight 'waiting' animation image */ public static final String WAIT7 = "WAIT7"; //$NON-NLS-1$ /** Ninth 'waiting' animation image */ public static final String WAIT8 = "WAIT8"; //$NON-NLS-1$ /** Tenth 'waiting' animation image */ public static final String WAIT9 = "WAIT9"; //$NON-NLS-1$ /** Eleventh 'waiting' animation image */ public static final String WAIT10 = "WAIT10"; //$NON-NLS-1$ /** Twelfth 'waiting' animation image */ public static final String WAIT11 = "WAIT11"; //$NON-NLS-1$ /** Thirteenth 'waiting' animation image */ public static final String WAIT12 = "WAIT12"; //$NON-NLS-1$ /** Fourteenth 'waiting' animation image */ public static final String WAIT13 = "WAIT13"; //$NON-NLS-1$ /** Fifteenth 'waiting' animation image */ public static final String WAIT14 = "WAIT14"; //$NON-NLS-1$ /** Update add feature image */ public static final String UPDATE_ADD = "UPDATE_ADD"; //$NON-NLS-1$ /** Update folder image */ public static final String UPDATE_FOLDER = "UPDATE_FOLDER"; //$NON-NLS-1$ /** Update install image */ public static final String UPDATE_INSTALL = "UPDATE_INSTALL"; //$NON-NLS-1$ /** Update uninstall image */ public static final String UPDATE_REMOVE = "UPDATE_REMOVE"; //$NON-NLS-1$ /** Tree collapse image */ public static final String TREE_COLLAPSE = "TREE_COLLAPSE"; /** Tree expand image */ public static final String TREE_EXPAND = "TREE_EXPAND"; /** Tree no-check image */ public static final String TREE_NOCHECK = "TREE_NOCHECK"; /** Tree checked image */ public static final String TREE_CHECKED = "TREE_CHECKED"; /** Tree un-checked image */ public static final String TREE_UNCHECKED = "TREE_UNCHECKED"; }