View Javadoc
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.cms.ui.jcr;
17  
18  import org.argeo.cms.ui.theme.CmsImages;
19  import org.eclipse.swt.graphics.Image;
20  
21  /** Shared icons. */
22  public class JcrImages {
23  	public final static Image NODE = CmsImages.createIcon("node.gif");
24  	public final static Image FOLDER = CmsImages.createIcon("folder.gif");
25  	public final static Image FILE = CmsImages.createIcon("file.gif");
26  	public final static Image BINARY = CmsImages.createIcon("binary.png");
27  	public final static Image HOME = CmsImages.createIcon("person-logged-in.png");
28  	public final static Image SORT = CmsImages.createIcon("sort.gif");
29  	public final static Image REMOVE = CmsImages.createIcon("remove.gif");
30  
31  	public final static Image REPOSITORIES = CmsImages.createIcon("repositories.gif");
32  	public final static Image REPOSITORY_DISCONNECTED = CmsImages.createIcon("repository_disconnected.gif");
33  	public final static Image REPOSITORY_CONNECTED = CmsImages.createIcon("repository_connected.gif");
34  	public final static Image REMOTE_DISCONNECTED = CmsImages.createIcon("remote_disconnected.gif");
35  	public final static Image REMOTE_CONNECTED = CmsImages.createIcon("remote_connected.gif");
36  	public final static Image WORKSPACE_DISCONNECTED = CmsImages.createIcon("workspace_disconnected.png");
37  	public final static Image WORKSPACE_CONNECTED = CmsImages.createIcon("workspace_connected.png");
38  
39  }