View Javadoc

1   /*--------------------------------------------------------------------------
2    *  Copyright 2008 utgenome.org
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  //--------------------------------------
17  // utgb-widget Project
18  //
19  // UTGBImageBundle.java
20  // Since: Apr 24, 2008
21  //
22  // $URL$ 
23  // $Author$
24  //--------------------------------------
25  package org.utgenome.gwt.widget.client;
26  
27  import com.google.gwt.resources.client.ClientBundle;
28  import com.google.gwt.resources.client.ImageResource;
29  
30  /**
31   * Graphic Resource list of UTGB Interface
32   * 
33   * @author leo
34   * 
35   */
36  public interface UTGBImageBundle extends ClientBundle {
37  
38  	@Source("org/utgenome/gwt/widget/theme/default/disabledButton.gif")
39  	public ImageResource disabledIcon();
40  
41  	@Source("org/utgenome/gwt/widget/theme/default/close-btn-on.gif")
42  	public ImageResource tabCloseMouseOverIcon();
43  
44  	@Source("org/utgenome/gwt/widget/theme/default/close-btn.gif")
45  	public ImageResource tabCloseIcon();
46  
47  	@Source("org/utgenome/gwt/widget/theme/default/resize.gif")
48  	public ImageResource windowResizeIcon();
49  
50  	@Source("org/utgenome/gwt/widget/theme/default/wframe_l.gif")
51  	public ImageResource windowFrameLeftIcon();
52  
53  	@Source("org/utgenome/gwt/widget/theme/default/wframe_c.gif")
54  	public ImageResource windowFrameCenterIcon();
55  
56  	@Source("org/utgenome/gwt/widget/theme/default/wframe_r.gif")
57  	public ImageResource windowFrameRightIcon();
58  
59  	@Source("org/utgenome/gwt/widget/theme/default/trackReload.gif")
60  	public ImageResource trackReloadIcon();
61  
62  	@Source("org/utgenome/gwt/widget/theme/default/trackReloadW.gif")
63  	public ImageResource trackReloadMouseOverIcon();
64  
65  	@Source("org/utgenome/gwt/widget/theme/default/trackClose.gif")
66  	public ImageResource trackCloseIcon();
67  
68  	@Source("org/utgenome/gwt/widget/theme/default/trackCloseW.gif")
69  	public ImageResource trackCloseMouseOverIcon();
70  
71  	@Source("org/utgenome/gwt/widget/theme/default/trackConfig.gif")
72  	public ImageResource trackConfigcon();
73  
74  	@Source("org/utgenome/gwt/widget/theme/default/trackConfigW.gif")
75  	public ImageResource trackConfigMouseOverIcon();
76  
77  	@Source("org/utgenome/gwt/widget/theme/default/trackHide.gif")
78  	public ImageResource trackHideIcon();
79  
80  	@Source("org/utgenome/gwt/widget/theme/default/trackHideW.gif")
81  	public ImageResource trackHideMouseOverIcon();
82  
83  	@Source("org/utgenome/gwt/widget/theme/default/trackOpen.gif")
84  	public ImageResource trackOpenIcon();
85  
86  	@Source("org/utgenome/gwt/widget/theme/default/trackOpenW.gif")
87  	public ImageResource trackOpenMouseOverIcon();
88  
89  	@Source("org/utgenome/gwt/widget/theme/default/trackPack.gif")
90  	public ImageResource trackAdjustHightIcon();
91  
92  	@Source("org/utgenome/gwt/widget/theme/default/trackPackW.gif")
93  	public ImageResource trackAdjustHightMouseOverIcon();
94  
95  	@Source("org/utgenome/gwt/widget/theme/default/trackUnpack.gif")
96  	public ImageResource trackFixedHightIcon();
97  
98  	@Source("org/utgenome/gwt/widget/theme/default/trackUnpackW.gif")
99  	public ImageResource trackFixedHightMouseOverIcon();
100 
101 }