Bug 378401: Implementation of time graph widget.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / ITmfImageConstants.java
1 /*******************************************************************************
2 * Copyright (c) 2011 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 * $Id: CommonUIImages.java,v 1.6 2010/05/05 12:32:31 paules Exp $
8 *
9 * Contributors:
10 * Bernd Hufmann - initial API and implementation
11 *******************************************************************************/
12 package org.eclipse.linuxtools.internal.tmf.ui;
13
14 @SuppressWarnings("nls")
15 public interface ITmfImageConstants {
16
17 public static final String ICONS_PATH = "icons/"; //$NON-NLS-1$
18
19 /* elcl16 */
20 public static final String IMG_UI_HOME_MENU = ICONS_PATH + "elcl16/home_nav.gif";
21 public static final String IMG_UI_SELECT_MENU = ICONS_PATH + "elcl16/select_menu.gif";
22 public static final String IMG_UI_ZOOM_IN_MENU = ICONS_PATH + "elcl16/zoomin_nav.gif";
23 public static final String IMG_UI_ZOOM_OUT_MENU = ICONS_PATH + "elcl16/zoomout_nav.gif";
24 public static final String IMG_UI_FILTERS = ICONS_PATH + "elcl16/filter_items.gif";
25 public static final String IMG_UI_SEARCH_SEQ = ICONS_PATH + "elcl16/search_seqdiag_menu.gif";
26 public static final String IMG_UI_NEXT_PAGE = ICONS_PATH + "elcl16/next_menu.gif";
27 public static final String IMG_UI_PREV_PAGE = ICONS_PATH + "elcl16/prev_menu.gif";
28 public static final String IMG_UI_GOTO_PAGE = ICONS_PATH + "elcl16/gotopage_menu.gif";
29 public static final String IMG_UI_NODE_START = ICONS_PATH + "elcl16/node_end.gif";
30 public static final String IMG_UI_NODE_END = ICONS_PATH + "elcl16/node_start.gif";
31 public static final String IMG_UI_SEARCH_MATCH = ICONS_PATH + "elcl16/search_match.gif";
32 public static final String IMG_UI_FIRST_PAGE = ICONS_PATH + "elcl16/backward_nav.gif";
33 public static final String IMG_UI_LAST_PAGE = ICONS_PATH + "elcl16/forward_nav.gif";
34 public static final String IMG_UI_SHOW_LEGEND = ICONS_PATH + "elcl16/show_legend.gif";
35 public static final String IMG_UI_NEXT_EVENT = ICONS_PATH + "elcl16/next_event.gif";
36 public static final String IMG_UI_PREV_EVENT = ICONS_PATH + "elcl16/prev_event.gif";
37 // public static final String IMG_UI_NEXT_ITEM = ICONS_PATH + "elcl16/next_item.gif";
38 // public static final String IMG_UI_PREV_ITEM = ICONS_PATH + "elcl16/prev_item.gif";
39 public static final String IMG_UI_NEXT_ITEM = IMG_UI_NEXT_PAGE;
40 public static final String IMG_UI_PREV_ITEM = IMG_UI_PREV_PAGE;
41
42 /* eview16 */
43 public static final String IMG_UI_SEQ_DIAGRAM_OBJ = ICONS_PATH + "eview16/sequencediagram_view.gif";
44
45 /* obj16 */
46 public static final String IMG_UI_ZOOM = ICONS_PATH + "obj16/zoom_mask.bmp";
47 public static final String IMG_UI_ZOOM_IN = ICONS_PATH + "obj16/zoomin_obj.bmp";
48 public static final String IMG_UI_ZOOM_OUT = ICONS_PATH + "obj16/zoomout_obj.bmp";
49 public static final String IMG_UI_ARROW_COLLAPSE_OBJ = ICONS_PATH + "obj16/arrow_colapse.bmp";
50 public static final String IMG_UI_ARROW_UP_OBJ = ICONS_PATH + "obj16/arrow_up.bmp";
51 }
This page took 0.040567 seconds and 6 git commands to generate.