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.midpnb.components.displayables;
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.presenters.actions.DeleteDependencyPresenter;
047: import org.netbeans.modules.vmd.api.model.common.DocumentSupport;
048: import org.netbeans.modules.vmd.api.properties.DefaultPropertiesPresenter;
049: import org.netbeans.modules.vmd.api.properties.DesignEventFilterResolver;
050: import org.netbeans.modules.vmd.api.screen.display.ScreenDisplayPresenter;
051: import org.netbeans.modules.vmd.midp.codegen.MidpCodePresenterSupport;
052: import org.netbeans.modules.vmd.midp.codegen.MidpParameter;
053: import org.netbeans.modules.vmd.midp.codegen.MidpSetter;
054: import org.netbeans.modules.vmd.midp.components.*;
055: import org.netbeans.modules.vmd.midp.components.displayables.CanvasCD;
056: import org.netbeans.modules.vmd.midp.components.resources.FontCD;
057: import org.netbeans.modules.vmd.midp.components.resources.ImageCD;
058: import org.netbeans.modules.vmd.midp.components.resources.ImageFileAcceptPresenter;
059: import org.netbeans.modules.vmd.midp.propertyeditors.MidpPropertiesCategories;
060: import org.netbeans.modules.vmd.midp.propertyeditors.PropertyEditorString;
061: import org.netbeans.modules.vmd.midp.propertyeditors.api.resource.PropertyEditorResource;
062: import org.netbeans.modules.vmd.midpnb.screen.display.AbstractInfoDisplayPresenter;
063: import org.openide.util.NbBundle;
064:
065: import java.util.ArrayList;
066: import java.util.Arrays;
067: import java.util.List;
068:
069: /**
070: *
071: * @author Karol Harezlak
072: */
073: public class AbstractInfoScreenCD extends ComponentDescriptor {
074:
075: public static final TypeID TYPEID = new TypeID(
076: TypeID.Kind.COMPONENT,
077: "org.netbeans.microedition.lcdui.AbstractInfoScreen"); // NOI18N
078:
079: public static final String PROP_IMAGE = "image"; // NOI18N
080: public static final String PROP_TEXT = "text"; // NOI18N
081: public static final String PROP_TEXT_FONT = "textFont"; // NOI18N
082:
083: public static final String[] MIDP_NB_LIBRARY_PDA = { "NetBeans MIDP Components PDA" }; // NOI18N
084: public static final String[] MIDP_NB_LIBRARY_WMA = { "NetBeans MIDP Components WMA" }; // NOI18N
085: public static final String[] MIDP_NB_LIBRARY_BASIC = { "NetBeans MIDP Components" }; // NOI18N
086:
087: public AbstractInfoScreenCD() {
088: }
089:
090: public TypeDescriptor getTypeDescriptor() {
091: return new TypeDescriptor(CanvasCD.TYPEID, TYPEID, false, true);
092: }
093:
094: public VersionDescriptor getVersionDescriptor() {
095: return MidpVersionDescriptor.MIDP_2;
096: }
097:
098: public List<PropertyDescriptor> getDeclaredPropertyDescriptors() {
099: return Arrays.asList(new PropertyDescriptor(PROP_IMAGE,
100: ImageCD.TYPEID, PropertyValue.createNull(), true, true,
101: MidpVersionable.MIDP_2), new PropertyDescriptor(
102: PROP_TEXT, MidpTypes.TYPEID_JAVA_LANG_STRING,
103: PropertyValue.createNull(), true, true,
104: MidpVersionable.MIDP_2), new PropertyDescriptor(
105: PROP_TEXT_FONT, FontCD.TYPEID, PropertyValue
106: .createNull(), true, true,
107: MidpVersionable.MIDP_2));
108: }
109:
110: @Override
111: protected void gatherPresenters(ArrayList<Presenter> presenters) {
112: DocumentSupport.removePresentersOfClass(presenters,
113: ScreenDisplayPresenter.class);
114: super .gatherPresenters(presenters);
115: }
116:
117: private static DefaultPropertiesPresenter createPropertiesPresenter() {
118: return new DefaultPropertiesPresenter(
119: DesignEventFilterResolver.THIS_COMPONENT)
120: .addPropertiesCategory(
121: MidpPropertiesCategories.CATEGORY_PROPERTIES)
122: .addProperty(
123: NbBundle.getMessage(AbstractInfoScreenCD.class,
124: "DISP_AbstractInfoScreen_text"), // NOI18N
125: PropertyEditorString.createInstance(NbBundle
126: .getMessage(AbstractInfoScreenCD.class,
127: "LBL_AbstractInfoScreen_text")),
128: PROP_TEXT) // NOI18N
129: .addProperty(
130: NbBundle.getMessage(AbstractInfoScreenCD.class,
131: "DISP_AbstractInfoScreen_image"), // NOI18N
132: PropertyEditorResource
133: .createImagePropertyEditor(),
134: PROP_IMAGE).addProperty(
135: NbBundle.getMessage(AbstractInfoScreenCD.class,
136: "DISP_AbstractInfoScreen_textFont"), // NOI18N
137: PropertyEditorResource
138: .createFontPropertyEditor(),
139: PROP_TEXT_FONT);
140: }
141:
142: private Presenter createSetterPresenter() {
143: return new CodeSetterPresenter().addParameters(
144: MidpParameter.create(PROP_TEXT, PROP_IMAGE,
145: PROP_TEXT_FONT)).addSetters(
146: MidpSetter.createSetter("setImage",
147: MidpVersionable.MIDP_2).addParameters(
148: PROP_IMAGE)) // NOI18N
149: .addSetters(
150: MidpSetter.createSetter("setText",
151: MidpVersionable.MIDP_2).addParameters(
152: PROP_TEXT)) // NOI18N
153: .addSetters(
154: MidpSetter.createSetter("setTextFont",
155: MidpVersionable.MIDP_2).addParameters(
156: PROP_TEXT_FONT)); // NOI18N
157: }
158:
159: protected List<? extends Presenter> createPresenters() {
160: return Arrays
161: .asList(
162: // accept
163: new ImageFileAcceptPresenter(
164: ImageCD.PROP_IMAGE, ImageCD.TYPEID,
165: "jpg", "png", "gif"), //NOI18N
166: new MidpAcceptTrensferableKindPresenter()
167: .addType(FontCD.TYPEID, PROP_TEXT_FONT),
168: new MidpAcceptTrensferableKindPresenter()
169: .addType(ImageCD.TYPEID, PROP_IMAGE),
170: // properties
171: createPropertiesPresenter(),
172: // code
173: createSetterPresenter(),
174: MidpCodePresenterSupport
175: .createAddImportPresenter(),
176: // delete
177: DeleteDependencyPresenter
178: .createNullableComponentReferencePresenter(PROP_IMAGE),
179: DeleteDependencyPresenter
180: .createNullableComponentReferencePresenter(PROP_TEXT_FONT),
181: // screen
182: new AbstractInfoDisplayPresenter(),
183: new MidpAcceptProducerKindPresenter().addType(
184: FontCD.TYPEID, PROP_TEXT_FONT).addType(
185: ImageCD.TYPEID, PROP_IMAGE));
186: }
187:
188: }
|