001: package com.xoetrope.editor.netbeans.actions;
002:
003: import java.awt.event.ActionEvent;
004: import javax.swing.AbstractAction;
005: import javax.swing.ImageIcon;
006:
007: import net.xoetrope.editor.project.XEditorProject;
008: import net.xoetrope.xui.XPage;
009: import net.xoetrope.xui.PageSupport;
010: import net.xoetrope.xui.XMethodReference;
011: import net.xoetrope.xui.XProject;
012: import net.xoetrope.xui.evaluator.XAttributeEvaluator;
013: import net.xoetrope.xui.exception.XExceptionHandler;
014:
015: /**
016: * The action for the code fragments option
017: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
018: * the GNU Public License (GPL), please see license.txt for more details. If
019: * you make commercial use of this software you must purchase a commercial
020: * license from Xoetrope.</p>
021: * <p> $Revision: 1.8 $</p>
022: */
023: public class CodeFragmentAction extends AbstractAction implements
024: XAttributeEvaluator {
025: private XEditorProject currentProject;
026: private CodeFragmentAction this Action;
027: private XPage currentPage;
028: private boolean attributesFinalized;
029: private int attributeIndex;
030:
031: private OptionDialog optionDialog;
032: private Object result;
033:
034: public CodeFragmentAction(XEditorProject project, XPage page,
035: String text, ImageIcon icon, String desc, Integer mnemonic) {
036: super (text, icon);
037: currentProject = project;
038: currentPage = page;
039: putValue(SHORT_DESCRIPTION, desc);
040: putValue("MnemonicKey" /*Action.MNEMONIC_KEY*/, mnemonic);
041: this Action = this ;
042: optionDialog = new OptionDialog(
043: null/*currentProject.getFrame()*/,
044: "Enter the fragment values");
045: optionDialog.setLocationRelativeTo(currentPage);
046: }
047:
048: public void actionPerformed(ActionEvent e) {
049: /** @todo fix this */
050: /* String command = e.getActionCommand();
051: if ( command.compareTo( "Component fragment..." ) == 0 ) {
052: // Find out where the last fragment was loaded from
053: Preferences prefs = Preferences.userNodeForPackage( BuildProperties.class );
054: String fragmentsDir = prefs.get( "CodeFragmentsDir", currentProject.getPath() );
055:
056: // Ask for the new/latest fragment
057: JFileChooser chooser = new JFileChooser( fragmentsDir );
058: chooser.setFileFilter( new AFileFilter( "xuif", "XUI component fragment" ) );
059: int i = chooser.showOpenDialog( nullcurrentProject.getFrame() );
060: if ( i == 0 ) {
061: XEditorXuiBuilder pl = ( XEditorXuiBuilder ) ( ( XEditorPageManager )currentProject.getPageManager() ).getSecondaryLoader();
062: XPageHolder pageHolder = currentProject.getEditor().getPageHolder();
063: try {
064: // Set this class as an evaluator of attributes
065: pl.setAttributeEvaluator( thisAction );
066:
067: // Setup storage for the attributes
068: attributeIndex = 0;
069:
070: // Locate the component/page fragment
071: fragmentsDir = chooser.getSelectedFile().getCanonicalPath();
072: prefs.put( "CodeFragmentsDir", fragmentsDir );
073:
074: // Do a first pass to evaluate the attributes
075: XPage fragment = pl.loadPage( XPage.XUI_SWING_PACKAGE, fragmentsDir, false, true );
076: if ( promptForAttributes() ) {
077: // Do a second pass if necessary to insert the attribute values
078: if ( attributeIndex > 0 ) {
079: attributeIndex = 0;
080: fragment = pl.loadPage( XPage.XUI_SWING_PACKAGE, fragmentsDir, false, true );
081: }
082:
083: // Move the components to the current page
084: Component components[] = fragment.getComponents();
085: int numChildren = components.length;
086: for ( int j = 0; j < numChildren; j++ ) {
087: Component newComp = components[ j ];
088: currentPage.add( newComp );
089: newComp.addKeyListener( currentPage.getEventHandler() );
090: newComp.addMouseListener( currentPage.getEventHandler() );
091: }
092:
093: // Remove the components from their old context
094: fragment.removeAll();
095: currentPage.doLayout();
096: currentPage.repaint();
097:
098: for ( int j = 0; j < numChildren; j++ )
099: pageHolder.selectComponent( components[ j ], j == 0 );
100: }
101:
102: // Reset the state of the page loader
103: pl.setAttributeEvaluator( null );
104: }
105: catch ( IOException ex ) {
106: if ( BuildProperties.DEBUG )
107: DebugLogger.logError( "Unable to load the page fragment" );
108: }
109: }
110: }*/
111: }
112:
113: /**
114: * Get the value of an attribute.
115: * @param page the page being loaded
116: * @param attributeValue the raw value of the attribute
117: * @return the evaluated value of the attribute
118: */
119: public Object evaluateAttribute(Object instance,
120: String attributeValue) {
121: result = attributeValue;
122: int pos = attributeValue.indexOf("${fixup");
123: if (pos >= 0) {
124: if (!attributesFinalized) {
125: // Add the parameters
126: pos = attributeValue.indexOf('(');
127: if (attributeValue.indexOf("${fixupValue") >= 0) {
128: int endPos1 = attributeValue.indexOf(',') - 1;
129: int endPos2 = attributeValue.indexOf(")");
130: optionDialog.addOption(OptionDialog.NUMBER_INPUT,
131: attributeValue.substring(pos + 2, endPos1)
132: .trim(), attributeValue.substring(
133: endPos1 + 2, endPos2).trim());
134: } else
135: optionDialog.addOption(OptionDialog.TEXT_INPUT,
136: attributeValue.substring(pos + 2,
137: attributeValue.indexOf("')")), "");
138: attributeIndex++;
139: } else
140: return result = optionDialog
141: .getOption(attributeIndex++);
142: }
143: return result;
144: }
145:
146: /**
147: * Prompt for the paramaterized attribute values
148: * @return true if the user clicks ok or there is nothing to prompt for
149: */
150: private boolean promptForAttributes() {
151: if (attributeIndex > 0) {
152: optionDialog.setVisible(true);
153: int result = optionDialog.getStatus();
154: if (result == optionDialog.ID_CANCEL)
155: return false;
156: }
157:
158: attributesFinalized = true;
159: return true;
160: }
161:
162: /**
163: * Set the current project and complete any initialization that depends on the
164: * project reference/instance.
165: * @param project the current or owning project
166: */
167: public void setCurrentProject(XProject project) {
168: currentProject = (XEditorProject) project;
169: }
170:
171: /**
172: * Get the method reference for the methods named in the attribute
173: * @param attributeValue the method name
174: * @return the method reference or null if the referenced/named method cannot be found
175: */
176: public XMethodReference getMethodReference(String attributeValue) {
177: throw new java.lang.UnsupportedOperationException();
178: }
179:
180: /**
181: * Get the value of an attribute by evaluating a method reference
182: * @param page the current page
183: * @param attributeValue the method name
184: * @return the method reference or null if the referenced/named method cannot be found
185: */
186: public XMethodReference getMethodReference(Object instance,
187: String attributeValue) {
188: throw new java.lang.UnsupportedOperationException();
189: }
190:
191: /**
192: * Explicitly set the result of an evaluation. This method may be used
193: * by an exception handler to override the result and set a sensible
194: * value in case of an exception
195: * @param the new result value
196: */
197: public void setResult(Object value) {
198: result = value;
199: }
200:
201: /**
202: * Explicitly get the result of an evaluation. This method may be used
203: * by an exception handler to determine the result and set a sensible
204: * value in case of an exception
205: * @return the current/intermediate result value
206: */
207: public Object getResult() {
208: return result;
209: }
210:
211: /**
212: * Set an exception handler for processing exceptions
213: * @param eh the exception handler
214: */
215: public void setExceptionHandler(XExceptionHandler eh) {
216: }
217: }
|