]> git.argeo.org Git - gpl/argeo-slc.git/blob - plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/DistImages.java
Fix generated Maven config
[gpl/argeo-slc.git] / plugins / org.argeo.slc.client.ui.dist / src / main / java / org / argeo / slc / client / ui / dist / DistImages.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.slc.client.ui.dist;
17
18 import org.eclipse.swt.graphics.Image;
19
20 /** Shared icons. */
21 public class DistImages {
22
23 public final static Image IMG_ARTIFACT_BASE = DistPlugin
24 .getImageDescriptor("icons/artifactBase.gif").createImage();
25 public final static Image IMG_PACKAGE = DistPlugin.getImageDescriptor(
26 "icons/package.gif").createImage();
27 public final static Image IMG_BUNDLE = DistPlugin.getImageDescriptor(
28 "icons/packages.gif").createImage();
29 public final static Image IMG_ARTIFACT_VERSION_BASE = DistPlugin
30 .getImageDescriptor("icons/artifactVersionBase.gif").createImage();
31 public final static Image IMG_FILE = DistPlugin.getImageDescriptor(
32 "icons/file.gif").createImage();
33
34 /* WORKSPACES */
35 public final static Image IMG_WKSP = DistPlugin.getImageDescriptor(
36 "icons/distribution_perspective.gif").createImage();
37
38 /* REPOSITORIES */
39 public final static Image IMG_REPO = DistPlugin.getImageDescriptor(
40 "icons/repo.gif").createImage();
41 public final static Image IMG_HOME_REPO = DistPlugin.getImageDescriptor(
42 "icons/homeRepo.gif").createImage();
43 public final static Image IMG_REPO_READONLY = DistPlugin
44 .getImageDescriptor("icons/repoReadOnly.gif").createImage();
45 public final static Image IMG_ADD_REPO = DistPlugin.getImageDescriptor(
46 "icons/addRepo.gif").createImage();
47 public final static Image IMG_REMOVE_REPO = DistPlugin.getImageDescriptor(
48 "icons/artifactBase.gif").createImage();
49 public final static Image IMG_FETCH_REPO = DistPlugin.getImageDescriptor(
50 "icons/fetchRepo.png").createImage();
51
52 /* DISTRIBUTIONS */
53 public final static Image IMG_DISTGRP = DistPlugin.getImageDescriptor(
54 "icons/distGrp.gif").createImage();
55 public final static Image IMG_DISTGRP_READONLY = DistPlugin
56 .getImageDescriptor("icons/distGrpReadOnly.gif").createImage();
57
58 /* CHECK BOXES */
59 public final static Image CHECKED = DistPlugin.getImageDescriptor(
60 "icons/checked.gif").createImage();
61 public final static Image UNCHECKED = DistPlugin.getImageDescriptor(
62 "icons/unchecked.gif").createImage();
63 }