001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041:
042: package org.netbeans.modules.vmd.midp.components.items;
043:
044: import org.netbeans.modules.vmd.api.codegen.CodeSetterPresenter;
045: import org.netbeans.modules.vmd.api.model.*;
046: import org.netbeans.modules.vmd.api.model.common.DocumentSupport;
047: import org.netbeans.modules.vmd.api.model.presenters.actions.DeleteDependencyPresenter;
048: import org.netbeans.modules.vmd.api.properties.DefaultPropertiesPresenter;
049: import org.netbeans.modules.vmd.api.screen.display.ScreenDisplayPresenter;
050: import org.netbeans.modules.vmd.midp.codegen.MidpParameter;
051: import org.netbeans.modules.vmd.midp.codegen.MidpSetter;
052: import org.netbeans.modules.vmd.midp.components.*;
053: import org.netbeans.modules.vmd.midp.components.resources.FontCD;
054: import org.netbeans.modules.vmd.midp.propertyeditors.MidpPropertiesCategories;
055: import org.netbeans.modules.vmd.midp.propertyeditors.PropertyEditorComboBox;
056: import org.netbeans.modules.vmd.midp.propertyeditors.PropertyEditorString;
057: import org.netbeans.modules.vmd.midp.propertyeditors.api.resource.PropertyEditorResource;
058: import org.netbeans.modules.vmd.midp.screen.display.StringItemDisplayPresenter;
059:
060: import java.util.ArrayList;
061: import java.util.Arrays;
062: import java.util.List;
063: import org.openide.util.NbBundle;
064:
065: /**
066: *
067: * @author Karol Harezlak
068: */
069:
070: public class StringItemCD extends ComponentDescriptor {
071:
072: public static final TypeID TYPEID = new TypeID(
073: TypeID.Kind.COMPONENT,
074: "javax.microedition.lcdui.StringItem"); // NOI18N
075:
076: public static final String PROP_TEXT = "text"; // NOI18N
077: public static final String PROP_FONT = "font"; // NOI18N
078:
079: public TypeDescriptor getTypeDescriptor() {
080: return new TypeDescriptor(ItemCD.TYPEID, TYPEID, true, true);
081: }
082:
083: public VersionDescriptor getVersionDescriptor() {
084: return MidpVersionDescriptor.MIDP;
085: }
086:
087: public List<PropertyDescriptor> getDeclaredPropertyDescriptors() {
088: return Arrays
089: .asList(
090: new PropertyDescriptor(PROP_TEXT,
091: MidpTypes.TYPEID_JAVA_LANG_STRING,
092: PropertyValue.createNull(), true, true,
093: MidpVersionable.MIDP),
094: new PropertyDescriptor(PROP_FONT,
095: FontCD.TYPEID, PropertyValue
096: .createNull(), true, true,
097: MidpVersionable.MIDP_2),
098: new PropertyDescriptor(
099: ItemCD.PROP_APPEARANCE_MODE,
100: MidpTypes.TYPEID_INT,
101: MidpTypes
102: .createIntegerValue(ItemCD.VALUE_PLAIN),
103: false, true, MidpVersionable.MIDP_2));
104: }
105:
106: @Override
107: protected void gatherPresenters(ArrayList<Presenter> presenters) {
108: DocumentSupport.removePresentersOfClass(presenters,
109: ScreenDisplayPresenter.class);
110: super .gatherPresenters(presenters);
111: }
112:
113: private static DefaultPropertiesPresenter createPropertiesPresenter() {
114: return new DefaultPropertiesPresenter()
115: .addPropertiesCategory(
116: MidpPropertiesCategories.CATEGORY_PROPERTIES)
117: .addProperty(
118: NbBundle.getMessage(StringItemCD.class,
119: "DISP_StringItem_Text"), // NOI18N
120: PropertyEditorString.createInstance(NbBundle
121: .getMessage(StringItemCD.class,
122: "LBL_StringItem_Text")),
123: PROP_TEXT)
124: // NOI18N
125: .addProperty(
126: NbBundle.getMessage(StringItemCD.class,
127: "DISP_StringItem_Appearance"), // NOI18N
128: PropertyEditorComboBox
129: .createInstance(
130: ImageItemCD
131: .getAppearanceValues(),
132: TYPEID,
133: NbBundle
134: .getMessage(
135: StringItemCD.class,
136: "DISP_StringItem_Appearance_RB_LABEL"), // NOI18N
137: NbBundle
138: .getMessage(
139: StringItemCD.class,
140: "DISP_StringItem_Appearance_UCLABEL")),
141: ItemCD.PROP_APPEARANCE_MODE) // NOI18N
142: .addProperty(
143: NbBundle.getMessage(StringItemCD.class,
144: "DISP_StringItem_Font"),
145: PropertyEditorResource
146: .createFontPropertyEditor(), PROP_FONT); // NOI18N
147: }
148:
149: private static Presenter createSetterPresenter() {
150: return new CodeSetterPresenter()
151: .addParameters(
152: MidpParameter.create(PROP_TEXT, PROP_FONT))
153: .addParameters(ItemCode.createAppearanceModeParameter())
154: .addSetters(
155: MidpSetter.createConstructor(TYPEID,
156: MidpVersionable.MIDP).addParameters(
157: ItemCD.PROP_LABEL, PROP_TEXT))
158: .addSetters(
159: MidpSetter.createConstructor(TYPEID,
160: MidpVersionable.MIDP_2).addParameters(
161: ItemCD.PROP_LABEL, PROP_TEXT,
162: ItemCode.PARAM_APPEARANCE_MODE))
163: .addSetters(
164: MidpSetter.createSetter("setText",
165: MidpVersionable.MIDP).addParameters(
166: PROP_TEXT)) // NOI18N
167: .addSetters(
168: MidpSetter.createSetter("setFont",
169: MidpVersionable.MIDP_2).addParameters(
170: PROP_FONT)); // NOI18N
171: }
172:
173: protected List<? extends Presenter> createPresenters() {
174: return Arrays
175: .asList(
176: // properties
177: createPropertiesPresenter(),
178: // code
179: createSetterPresenter(),
180: // delete
181: DeleteDependencyPresenter
182: .createNullableComponentReferencePresenter(PROP_FONT),
183: // screen
184: new StringItemDisplayPresenter(),
185: // accept
186: new MidpAcceptProducerKindPresenter().addType(
187: FontCD.TYPEID, PROP_FONT),
188: new MidpAcceptTrensferableKindPresenter()
189: .addType(FontCD.TYPEID, PROP_FONT));
190: }
191:
192: }
|