c76c679acc5a6432aa9cddad385a088e8dba809d
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / ITmfImageConstants.java
1 /*******************************************************************************
2 * Copyright (c) 2011, 2013 Ericsson and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Bernd Hufmann - initial API and implementation
10 *******************************************************************************/
11 package org.eclipse.linuxtools.internal.tmf.ui;
12
13 /**
14 * Names for generic icons and buttons used in TMF
15 */
16 @SuppressWarnings({"nls", "javadoc"})
17 public interface ITmfImageConstants {
18
19 public static final String ICONS_PATH = "icons/"; //$NON-NLS-1$
20
21 /* elcl16 */
22 public static final String IMG_UI_HOME_MENU = ICONS_PATH + "elcl16/home_nav.gif";
23 public static final String IMG_UI_SELECT_MENU = ICONS_PATH + "elcl16/select_menu.gif";
24 public static final String IMG_UI_ZOOM_IN_MENU = ICONS_PATH + "elcl16/zoomin_nav.gif";
25 public static final String IMG_UI_ZOOM_OUT_MENU = ICONS_PATH + "elcl16/zoomout_nav.gif";
26 public static final String IMG_UI_FILTERS = ICONS_PATH + "elcl16/filter_items.gif";
27 public static final String IMG_UI_SEARCH_SEQ = ICONS_PATH + "elcl16/search_seqdiag_menu.gif";
28 public static final String IMG_UI_NEXT_PAGE = ICONS_PATH + "elcl16/next_menu.gif";
29 public static final String IMG_UI_PREV_PAGE = ICONS_PATH + "elcl16/prev_menu.gif";
30 public static final String IMG_UI_GOTO_PAGE = ICONS_PATH + "elcl16/gotopage_menu.gif";
31 public static final String IMG_UI_NODE_START = ICONS_PATH + "elcl16/node_end.gif";
32 public static final String IMG_UI_NODE_END = ICONS_PATH + "elcl16/node_start.gif";
33 public static final String IMG_UI_SEARCH_MATCH = ICONS_PATH + "elcl16/search_match.gif";
34 public static final String IMG_UI_FIRST_PAGE = ICONS_PATH + "elcl16/backward_nav.gif";
35 public static final String IMG_UI_LAST_PAGE = ICONS_PATH + "elcl16/forward_nav.gif";
36 public static final String IMG_UI_SHOW_LEGEND = ICONS_PATH + "elcl16/show_legend.gif";
37 public static final String IMG_UI_NEXT_EVENT = ICONS_PATH + "elcl16/next_event.gif";
38 public static final String IMG_UI_PREV_EVENT = ICONS_PATH + "elcl16/prev_event.gif";
39 // public static final String IMG_UI_NEXT_ITEM = ICONS_PATH + "elcl16/next_item.gif";
40 // public static final String IMG_UI_PREV_ITEM = ICONS_PATH + "elcl16/prev_item.gif";
41 public static final String IMG_UI_NEXT_ITEM = IMG_UI_NEXT_PAGE;
42 public static final String IMG_UI_PREV_ITEM = IMG_UI_PREV_PAGE;
43 public static final String IMG_UI_PIN_VIEW = ICONS_PATH + "elcl16/pin_view.gif";
44
45 /* eview16 */
46 public static final String IMG_UI_SEQ_DIAGRAM_OBJ = ICONS_PATH + "eview16/sequencediagram_view.gif";
47
48 /* obj16 */
49 public static final String IMG_UI_ZOOM = ICONS_PATH + "obj16/zoom_mask.bmp";
50 public static final String IMG_UI_ZOOM_IN = ICONS_PATH + "obj16/zoomin_obj.bmp";
51 public static final String IMG_UI_ZOOM_OUT = ICONS_PATH + "obj16/zoomout_obj.bmp";
52 public static final String IMG_UI_ARROW_COLLAPSE_OBJ = ICONS_PATH + "obj16/arrow_colapse.bmp";
53 public static final String IMG_UI_ARROW_UP_OBJ = ICONS_PATH + "obj16/arrow_up.bmp";
54 }
This page took 0.031635 seconds and 5 git commands to generate.