1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 package net.jbeans.j3d.scenegraph;
24
25 /* ------------------ Import classes (packages) ------------------- *//package-summary/html">class="comment"> ------------------ Import classes (packages) ------------------- *//package-summary.html">class="comment">/* ------------------ Import classes (packages) ------------------- *//package-summary.html">class="comment"> ------------------ Import classes (packages) ------------------- */
26 import java.awt.*;
27 import java.awt.event.*;
28 import java.beans.*;
29 import javax.swing.event.*;
30
31 import net.jbeans.bean.*;
32
33
34
35
36 /***
37 * generally describe TransparencyAttributesBeanInfo in here
38 *
39 * @version $Revision: 1.3 $
40 * @author Masahiro Takatsuka (masa@jbeans.net)
41 * @see JBeansBeanInfo
42 */
43
44 public final class TransparencyAttributesBeanInfo extends JBeansBeanInfo {
45 private final static Class beanClass = TransparencyAttributes.class;
46
47 private static String iconColor16x16Filename = "resources/TransparencyAttributes/IconColor16.gif";
48 private static String iconColor32x32Filename = "resources/TransparencyAttributes/IconColor32.gif";
49 private static String iconMono16x16Filename;
50 private static String iconMono32x32Filename;
51
52 /***
53 * Returns a icons of the specified size.
54 * <PRE>
55 * </PRE>
56 *
57 * @param iconKind an ID (ICON_COLOR_16x16 or ICON_COLOR_32x32)
58 * indicating the size of the icon.
59 * @return Image
60 */
61 public Image getIcon(int iconKind) {
62 switch (iconKind) {
63 case BeanInfo.ICON_COLOR_16x16:
64 return iconColor16x16Filename != null ? loadImage(iconColor16x16Filename) : null;
65 case BeanInfo.ICON_COLOR_32x32:
66 return iconColor32x32Filename != null ? loadImage(iconColor32x32Filename) : null;
67 case BeanInfo.ICON_MONO_16x16:
68 return iconMono16x16Filename != null ? loadImage(iconMono16x16Filename) : null;
69 case BeanInfo.ICON_MONO_32x32:
70 return iconMono32x32Filename != null ? loadImage(iconMono32x32Filename) : null;
71 }
72 return null;
73 }
74
75 protected PropertyDescriptor createPropertyDescriptor(String s, Object aobj[]) {
76 return super.createPropertyDescriptor(beanClass, s, aobj);
77 }
78
79 /***
80 * Returns a BeanDescriptor for AmbientLight bean.
81 * <PRE>
82 * </PRE>
83 *
84 * @return BeanDescriptor
85 */
86 public BeanDescriptor getBeanDescriptor() {
87 BeanDescriptor bd = createBeanDescriptor(beanClass, new Object[] {
88 "preferred", Boolean.TRUE, "isContainer", Boolean.FALSE, "shortDescription", "A Transparency attribute component."
89 });
90
91 bd.setValue("helpSetName", "net/jbeans/j3d/scenegraph/resources/TransparencyAttributes/jhelpset.hs");
92 return bd;
93 }
94
95 /***
96 * Returns PropertyDescriptors associated with a AmbientLight bean.
97 * <PRE>
98 * </PRE>
99 *
100 * @return PropertyDescriptor[]
101 */
102 public PropertyDescriptor[] getPropertyDescriptors() {
103 Object mode[] = {
104 "NONE", new Integer(TransparencyAttributes.NONE), "TransparencyAttributes.NONE",
105 "FASTEST", new Integer(TransparencyAttributes.FASTEST), "TransparencyAttributes.FASTEST",
106 "NICEST", new Integer(TransparencyAttributes.NICEST), "TransparencyAttributes.NICEST",
107 "SCREEN_DOOR", new Integer(TransparencyAttributes.SCREEN_DOOR), "TransparencyAttributes.SCREEN_DOOR",
108 "BLENDED", new Integer(TransparencyAttributes.BLENDED), "TransparencyAttributes.BLENDED"
109 };
110 Object blend[] = {
111 "BLEND_ZERO", new Integer(TransparencyAttributes.BLEND_ZERO), "TransparencyAttributes.BLEND_ZERO",
112 "BLEND_ONE", new Integer(TransparencyAttributes.BLEND_ONE), "TransparencyAttributes.BLEND_ONE",
113 "BLEND_SRC_ALPHA", new Integer(TransparencyAttributes.BLEND_SRC_ALPHA), "TransparencyAttributes.BLEND_SRC_ALPHA",
114 "BLEND_ONE_MINUS_SRC_ALPHA", new Integer(TransparencyAttributes.BLEND_ONE_MINUS_SRC_ALPHA), "TransparencyAttributes.BLEND_ONE_MINUS_SRC_ALPHA"
115 };
116
117 return (new PropertyDescriptor[] {
118 createPropertyDescriptor("transparencyMode", new Object[] {
119 BOUND, Boolean.TRUE, "enumerationValues", mode, PREFERRED, Boolean.TRUE, "visualUpdate", Boolean.TRUE, "shortDescription", "Set the transparency mode."}),
120 createPropertyDescriptor("srcBlendFunction", new Object[] {
121 BOUND, Boolean.TRUE, "enumerationValues", blend, PREFERRED, Boolean.TRUE, "visualUpdate", Boolean.TRUE, "shortDescription", "Set the transparency blend function."}),
122 createPropertyDescriptor("dstBlendFunction", new Object[] {
123 BOUND, Boolean.TRUE, "enumerationValues", blend, PREFERRED, Boolean.TRUE, "visualUpdate", Boolean.TRUE, "shortDescription", "Set the transparency blend function."}),
124 createPropertyDescriptor("transparency", new Object[] {
125 BOUND, Boolean.TRUE, PREFERRED, Boolean.TRUE, "visualUpdate", Boolean.TRUE, "shortDescription", "Set the transparency value."})
126 });
127 }
128
129 /***
130 * Returns EventSetDescriptors associated with a AmbientLight bean.
131 * <PRE>
132 * </PRE>
133 *
134 * @return EventSetDescriptor[]
135 */
136 public EventSetDescriptor[] getEventSetDescriptors() {
137 EventSetDescriptor[] rv = {};
138 return rv;
139 }
140 }