tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / ITmfImageConstants.java
CommitLineData
73005152 1/*******************************************************************************
c8422608 2 * Copyright (c) 2011, 2013 Ericsson and others.
db59ddc2 3 * All rights reserved. This program and the accompanying materials
73005152
BH
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
db59ddc2 7 *
73005152
BH
8 * Contributors:
9 * Bernd Hufmann - initial API and implementation
10 *******************************************************************************/
d34665f9 11package org.eclipse.linuxtools.internal.tmf.ui;
73005152 12
a0a88f65
AM
13/**
14 * Names for generic icons and buttons used in TMF
15 */
16@SuppressWarnings({"nls", "javadoc"})
73005152 17public interface ITmfImageConstants {
db59ddc2 18
73005152
BH
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";
b83af2c3
PT
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;
db59ddc2 43 public static final String IMG_UI_PIN_VIEW = ICONS_PATH + "elcl16/pin_view.gif";
b83af2c3 44
73005152
BH
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.044747 seconds and 5 git commands to generate.