1 | /* |
2 | * Copyright 2007, SDQ, IPD, University of Karlsruhe |
3 | */ |
4 | package de.uka.ipd.sdq.pcm.gmf.usage.edit.parts; |
5 | |
6 | import java.util.ArrayList; |
7 | import java.util.Collections; |
8 | import java.util.List; |
9 | |
10 | import org.eclipse.draw2d.IFigure; |
11 | import org.eclipse.draw2d.Label; |
12 | import org.eclipse.draw2d.geometry.Point; |
13 | import org.eclipse.emf.common.notify.Notification; |
14 | import org.eclipse.emf.ecore.EObject; |
15 | import org.eclipse.emf.transaction.RunnableWithResult; |
16 | import org.eclipse.gef.AccessibleEditPart; |
17 | import org.eclipse.gef.EditPolicy; |
18 | import org.eclipse.gef.GraphicalEditPart; |
19 | import org.eclipse.gef.Request; |
20 | import org.eclipse.gef.commands.Command; |
21 | import org.eclipse.gef.editpolicies.NonResizableEditPolicy; |
22 | import org.eclipse.gef.handles.MoveHandle; |
23 | import org.eclipse.gef.handles.NonResizableHandleKit; |
24 | import org.eclipse.gef.requests.DirectEditRequest; |
25 | import org.eclipse.gef.tools.DirectEditManager; |
26 | import org.eclipse.gmf.runtime.common.ui.services.parser.IParser; |
27 | import org.eclipse.gmf.runtime.common.ui.services.parser.IParserEditStatus; |
28 | import org.eclipse.gmf.runtime.common.ui.services.parser.ParserEditStatus; |
29 | import org.eclipse.gmf.runtime.common.ui.services.parser.ParserOptions; |
30 | import org.eclipse.gmf.runtime.diagram.ui.editparts.CompartmentEditPart; |
31 | import org.eclipse.gmf.runtime.diagram.ui.editparts.IGraphicalEditPart; |
32 | import org.eclipse.gmf.runtime.diagram.ui.editparts.ITextAwareEditPart; |
33 | import org.eclipse.gmf.runtime.diagram.ui.editpolicies.EditPolicyRoles; |
34 | import org.eclipse.gmf.runtime.diagram.ui.editpolicies.LabelDirectEditPolicy; |
35 | import org.eclipse.gmf.runtime.diagram.ui.l10n.DiagramColorRegistry; |
36 | import org.eclipse.gmf.runtime.diagram.ui.requests.RequestConstants; |
37 | import org.eclipse.gmf.runtime.diagram.ui.tools.TextDirectEditManager; |
38 | import org.eclipse.gmf.runtime.draw2d.ui.figures.WrappingLabel; |
39 | import org.eclipse.gmf.runtime.emf.core.util.EObjectAdapter; |
40 | import org.eclipse.gmf.runtime.emf.ui.services.parser.ISemanticParser; |
41 | import org.eclipse.gmf.runtime.notation.FontStyle; |
42 | import org.eclipse.gmf.runtime.notation.NotationPackage; |
43 | import org.eclipse.gmf.runtime.notation.View; |
44 | import org.eclipse.jface.text.contentassist.IContentAssistProcessor; |
45 | import org.eclipse.jface.viewers.ICellEditorValidator; |
46 | import org.eclipse.swt.SWT; |
47 | import org.eclipse.swt.accessibility.AccessibleEvent; |
48 | import org.eclipse.swt.graphics.Color; |
49 | import org.eclipse.swt.graphics.FontData; |
50 | import org.eclipse.swt.graphics.Image; |
51 | |
52 | import de.uka.ipd.sdq.pcm.dialogs.usage.DelaySpecificationDialog; |
53 | import de.uka.ipd.sdq.pcm.gmf.usage.edit.policies.PalladioComponentModelTextSelectionEditPolicy; |
54 | import de.uka.ipd.sdq.pcm.gmf.usage.part.PalladioComponentModelVisualIDRegistry; |
55 | import de.uka.ipd.sdq.pcm.gmf.usage.providers.PalladioComponentModelElementTypes; |
56 | import de.uka.ipd.sdq.pcm.gmf.usage.providers.PalladioComponentModelParserProvider; |
57 | import de.uka.ipd.sdq.pcm.usagemodel.ClosedWorkload; |
58 | import de.uka.ipd.sdq.pcm.usagemodel.Delay; |
59 | |
60 | /** |
61 | * @generated |
62 | */ |
63 | public class DelayLabelSpecEditPart extends CompartmentEditPart implements |
64 | ITextAwareEditPart { |
65 | |
66 | /** |
67 | * @generated |
68 | */ |
69 | public static final int VISUAL_ID = 5019; |
70 | |
71 | /** |
72 | * @generated |
73 | */ |
74 | private DirectEditManager manager; |
75 | |
76 | /** |
77 | * @generated |
78 | */ |
79 | private IParser parser; |
80 | |
81 | /** |
82 | * @generated |
83 | */ |
84 | private List parserElements; |
85 | |
86 | /** |
87 | * @generated |
88 | */ |
89 | private String defaultText; |
90 | |
91 | /** |
92 | * @generated |
93 | */ |
94 | public DelayLabelSpecEditPart(View view) { |
95 | super(view); |
96 | } |
97 | |
98 | /** |
99 | * @generated |
100 | */ |
101 | protected void createDefaultEditPolicies() { |
102 | super.createDefaultEditPolicies(); |
103 | installEditPolicy(EditPolicy.SELECTION_FEEDBACK_ROLE, |
104 | new PalladioComponentModelTextSelectionEditPolicy()); |
105 | installEditPolicy(EditPolicy.DIRECT_EDIT_ROLE, |
106 | new LabelDirectEditPolicy()); |
107 | installEditPolicy(EditPolicy.PRIMARY_DRAG_ROLE, |
108 | new NonResizableEditPolicy() { |
109 | |
110 | protected List createSelectionHandles() { |
111 | List handles = new ArrayList(); |
112 | NonResizableHandleKit.addMoveHandle( |
113 | (GraphicalEditPart) getHost(), handles); |
114 | ((MoveHandle) handles.get(0)).setBorder(null); |
115 | return handles; |
116 | } |
117 | |
118 | public Command getCommand(Request request) { |
119 | return null; |
120 | } |
121 | |
122 | public boolean understandsRequest(Request request) { |
123 | return false; |
124 | } |
125 | }); |
126 | installEditPolicy(EditPolicyRoles.OPEN_ROLE, |
127 | new DelaySpecificationDialog()); |
128 | } |
129 | |
130 | /** |
131 | * @generated |
132 | */ |
133 | protected String getLabelTextHelper(IFigure figure) { |
134 | if (figure instanceof WrappingLabel) { |
135 | return ((WrappingLabel) figure).getText(); |
136 | } else { |
137 | return ((Label) figure).getText(); |
138 | } |
139 | } |
140 | |
141 | /** |
142 | * @generated |
143 | */ |
144 | protected void setLabelTextHelper(IFigure figure, String text) { |
145 | if (figure instanceof WrappingLabel) { |
146 | ((WrappingLabel) figure).setText(text); |
147 | } else { |
148 | ((Label) figure).setText(text); |
149 | } |
150 | } |
151 | |
152 | /** |
153 | * @generated |
154 | */ |
155 | protected Image getLabelIconHelper(IFigure figure) { |
156 | if (figure instanceof WrappingLabel) { |
157 | return ((WrappingLabel) figure).getIcon(); |
158 | } else { |
159 | return ((Label) figure).getIcon(); |
160 | } |
161 | } |
162 | |
163 | /** |
164 | * @generated |
165 | */ |
166 | protected void setLabelIconHelper(IFigure figure, Image icon) { |
167 | if (figure instanceof WrappingLabel) { |
168 | ((WrappingLabel) figure).setIcon(icon); |
169 | } else { |
170 | ((Label) figure).setIcon(icon); |
171 | } |
172 | } |
173 | |
174 | /** |
175 | * @generated |
176 | */ |
177 | public void setLabel(WrappingLabel figure) { |
178 | unregisterVisuals(); |
179 | setFigure(figure); |
180 | defaultText = getLabelTextHelper(figure); |
181 | registerVisuals(); |
182 | refreshVisuals(); |
183 | } |
184 | |
185 | /** |
186 | * @generated |
187 | */ |
188 | protected List getModelChildren() { |
189 | return Collections.EMPTY_LIST; |
190 | } |
191 | |
192 | /** |
193 | * @generated |
194 | */ |
195 | public IGraphicalEditPart getChildBySemanticHint(String semanticHint) { |
196 | return null; |
197 | } |
198 | |
199 | /** |
200 | * @generated |
201 | */ |
202 | protected EObject getParserElement() { |
203 | return resolveSemanticElement(); |
204 | } |
205 | |
206 | /** |
207 | * @generated |
208 | */ |
209 | protected Image getLabelIcon() { |
210 | EObject parserElement = getParserElement(); |
211 | if (parserElement == null) { |
212 | return null; |
213 | } |
214 | return PalladioComponentModelElementTypes.getImage(parserElement |
215 | .eClass()); |
216 | } |
217 | |
218 | /** |
219 | * @generated not |
220 | */ |
221 | protected String getLabelText() { |
222 | String text = null; |
223 | |
224 | Delay d = (Delay) resolveSemanticElement(); |
225 | if (d.getTimeSpecification_Delay() != null) { |
226 | text = "Delay Time: " |
227 | + d.getTimeSpecification_Delay().getSpecification(); |
228 | } |
229 | |
230 | if (text == null || text.length() == 0) { |
231 | text = defaultText; |
232 | } |
233 | return text; |
234 | |
235 | } |
236 | |
237 | /** |
238 | * @generated |
239 | */ |
240 | public void setLabelText(String text) { |
241 | setLabelTextHelper(getFigure(), text); |
242 | Object pdEditPolicy = getEditPolicy(EditPolicy.PRIMARY_DRAG_ROLE); |
243 | if (pdEditPolicy instanceof PalladioComponentModelTextSelectionEditPolicy) { |
244 | ((PalladioComponentModelTextSelectionEditPolicy) pdEditPolicy) |
245 | .refreshFeedback(); |
246 | } |
247 | Object sfEditPolicy = getEditPolicy(EditPolicy.SELECTION_FEEDBACK_ROLE); |
248 | if (sfEditPolicy instanceof PalladioComponentModelTextSelectionEditPolicy) { |
249 | ((PalladioComponentModelTextSelectionEditPolicy) sfEditPolicy) |
250 | .refreshFeedback(); |
251 | } |
252 | } |
253 | |
254 | /** |
255 | * @generated |
256 | */ |
257 | public String getEditText() { |
258 | if (getParserElement() == null || getParser() == null) { |
259 | return ""; //$NON-NLS-1$ |
260 | } |
261 | return getParser().getEditString( |
262 | new EObjectAdapter(getParserElement()), |
263 | getParserOptions().intValue()); |
264 | } |
265 | |
266 | /** |
267 | * @generated |
268 | */ |
269 | protected boolean isEditable() { |
270 | return false; |
271 | } |
272 | |
273 | /** |
274 | * @generated |
275 | */ |
276 | public ICellEditorValidator getEditTextValidator() { |
277 | return new ICellEditorValidator() { |
278 | |
279 | public String isValid(final Object value) { |
280 | if (value instanceof String) { |
281 | final EObject element = getParserElement(); |
282 | final IParser parser = getParser(); |
283 | try { |
284 | IParserEditStatus valid = (IParserEditStatus) getEditingDomain() |
285 | .runExclusive(new RunnableWithResult.Impl() { |
286 | |
287 | public void run() { |
288 | setResult(parser.isValidEditString( |
289 | new EObjectAdapter(element), |
290 | (String) value)); |
291 | } |
292 | }); |
293 | return valid.getCode() == ParserEditStatus.EDITABLE ? null |
294 | : valid.getMessage(); |
295 | } catch (InterruptedException ie) { |
296 | ie.printStackTrace(); |
297 | } |
298 | } |
299 | |
300 | // shouldn't get here |
301 | return null; |
302 | } |
303 | }; |
304 | } |
305 | |
306 | /** |
307 | * @generated |
308 | */ |
309 | public IContentAssistProcessor getCompletionProcessor() { |
310 | if (getParserElement() == null || getParser() == null) { |
311 | return null; |
312 | } |
313 | return getParser().getCompletionProcessor( |
314 | new EObjectAdapter(getParserElement())); |
315 | } |
316 | |
317 | /** |
318 | * @generated |
319 | */ |
320 | public ParserOptions getParserOptions() { |
321 | return ParserOptions.NONE; |
322 | } |
323 | |
324 | /** |
325 | * @generated |
326 | */ |
327 | public IParser getParser() { |
328 | if (parser == null) { |
329 | parser = PalladioComponentModelParserProvider |
330 | .getParser( |
331 | PalladioComponentModelElementTypes.Delay_3017, |
332 | getParserElement(), |
333 | PalladioComponentModelVisualIDRegistry |
334 | .getType(de.uka.ipd.sdq.pcm.gmf.usage.edit.parts.DelayLabelSpecEditPart.VISUAL_ID)); |
335 | } |
336 | return parser; |
337 | } |
338 | |
339 | /** |
340 | * @generated |
341 | */ |
342 | protected DirectEditManager getManager() { |
343 | if (manager == null) { |
344 | setManager(new TextDirectEditManager(this, TextDirectEditManager |
345 | .getTextCellEditorClass(this), |
346 | PalladioComponentModelEditPartFactory |
347 | .getTextCellEditorLocator(this))); |
348 | } |
349 | return manager; |
350 | } |
351 | |
352 | /** |
353 | * @generated |
354 | */ |
355 | protected void setManager(DirectEditManager manager) { |
356 | this.manager = manager; |
357 | } |
358 | |
359 | /** |
360 | * @generated |
361 | */ |
362 | protected void performDirectEdit() { |
363 | getManager().show(); |
364 | } |
365 | |
366 | /** |
367 | * @generated |
368 | */ |
369 | protected void performDirectEdit(Point eventLocation) { |
370 | if (getManager().getClass() == TextDirectEditManager.class) { |
371 | ((TextDirectEditManager) getManager()).show(eventLocation |
372 | .getSWTPoint()); |
373 | } |
374 | } |
375 | |
376 | /** |
377 | * @generated |
378 | */ |
379 | private void performDirectEdit(char initialCharacter) { |
380 | if (getManager() instanceof TextDirectEditManager) { |
381 | ((TextDirectEditManager) getManager()).show(initialCharacter); |
382 | } else { |
383 | performDirectEdit(); |
384 | } |
385 | } |
386 | |
387 | /** |
388 | * @generated |
389 | */ |
390 | protected void performDirectEditRequest(Request request) { |
391 | final Request theRequest = request; |
392 | try { |
393 | getEditingDomain().runExclusive(new Runnable() { |
394 | |
395 | public void run() { |
396 | if (isActive() && isEditable()) { |
397 | if (theRequest |
398 | .getExtendedData() |
399 | .get( |
400 | RequestConstants.REQ_DIRECTEDIT_EXTENDEDDATA_INITIAL_CHAR) instanceof Character) { |
401 | Character initialChar = (Character) theRequest |
402 | .getExtendedData() |
403 | .get( |
404 | RequestConstants.REQ_DIRECTEDIT_EXTENDEDDATA_INITIAL_CHAR); |
405 | performDirectEdit(initialChar.charValue()); |
406 | } else if ((theRequest instanceof DirectEditRequest) |
407 | && (getEditText().equals(getLabelText()))) { |
408 | DirectEditRequest editRequest = (DirectEditRequest) theRequest; |
409 | performDirectEdit(editRequest.getLocation()); |
410 | } else { |
411 | performDirectEdit(); |
412 | } |
413 | } |
414 | } |
415 | }); |
416 | } catch (InterruptedException e) { |
417 | e.printStackTrace(); |
418 | } |
419 | } |
420 | |
421 | /** |
422 | * @generated |
423 | */ |
424 | protected void refreshVisuals() { |
425 | super.refreshVisuals(); |
426 | refreshLabel(); |
427 | refreshFont(); |
428 | refreshFontColor(); |
429 | refreshUnderline(); |
430 | refreshStrikeThrough(); |
431 | } |
432 | |
433 | /** |
434 | * @generated |
435 | */ |
436 | protected void refreshLabel() { |
437 | setLabelTextHelper(getFigure(), getLabelText()); |
438 | setLabelIconHelper(getFigure(), getLabelIcon()); |
439 | Object pdEditPolicy = getEditPolicy(EditPolicy.PRIMARY_DRAG_ROLE); |
440 | if (pdEditPolicy instanceof PalladioComponentModelTextSelectionEditPolicy) { |
441 | ((PalladioComponentModelTextSelectionEditPolicy) pdEditPolicy) |
442 | .refreshFeedback(); |
443 | } |
444 | Object sfEditPolicy = getEditPolicy(EditPolicy.SELECTION_FEEDBACK_ROLE); |
445 | if (sfEditPolicy instanceof PalladioComponentModelTextSelectionEditPolicy) { |
446 | ((PalladioComponentModelTextSelectionEditPolicy) sfEditPolicy) |
447 | .refreshFeedback(); |
448 | } |
449 | } |
450 | |
451 | /** |
452 | * @generated |
453 | */ |
454 | protected void refreshUnderline() { |
455 | FontStyle style = (FontStyle) getFontStyleOwnerView().getStyle( |
456 | NotationPackage.eINSTANCE.getFontStyle()); |
457 | if (style != null && getFigure() instanceof WrappingLabel) { |
458 | ((WrappingLabel) getFigure()).setTextUnderline(style.isUnderline()); |
459 | } |
460 | } |
461 | |
462 | /** |
463 | * @generated |
464 | */ |
465 | protected void refreshStrikeThrough() { |
466 | FontStyle style = (FontStyle) getFontStyleOwnerView().getStyle( |
467 | NotationPackage.eINSTANCE.getFontStyle()); |
468 | if (style != null && getFigure() instanceof WrappingLabel) { |
469 | ((WrappingLabel) getFigure()).setTextStrikeThrough(style |
470 | .isStrikeThrough()); |
471 | } |
472 | } |
473 | |
474 | /** |
475 | * @generated |
476 | */ |
477 | protected void refreshFont() { |
478 | FontStyle style = (FontStyle) getFontStyleOwnerView().getStyle( |
479 | NotationPackage.eINSTANCE.getFontStyle()); |
480 | if (style != null) { |
481 | FontData fontData = new FontData(style.getFontName(), style |
482 | .getFontHeight(), (style.isBold() ? SWT.BOLD : SWT.NORMAL) |
483 | | (style.isItalic() ? SWT.ITALIC : SWT.NORMAL)); |
484 | setFont(fontData); |
485 | } |
486 | } |
487 | |
488 | /** |
489 | * @generated |
490 | */ |
491 | protected void setFontColor(Color color) { |
492 | getFigure().setForegroundColor(color); |
493 | } |
494 | |
495 | /** |
496 | * @generated not |
497 | */ |
498 | /** |
499 | * @generated not |
500 | */ |
501 | protected void addSemanticListeners() { |
502 | Delay d = (Delay) resolveSemanticElement(); |
503 | addListenerFilter("SemanticModel", this, d.getTimeSpecification_Delay()); //$NON-NLS-1$ |
504 | } |
505 | |
506 | /** |
507 | * @generated not |
508 | */ |
509 | protected void removeSemanticListeners() { |
510 | removeListenerFilter("SemanticModel"); //$NON-NLS-1$ |
511 | } |
512 | |
513 | /** |
514 | * @generated |
515 | */ |
516 | protected AccessibleEditPart getAccessibleEditPart() { |
517 | if (accessibleEP == null) { |
518 | accessibleEP = new AccessibleGraphicalEditPart() { |
519 | |
520 | public void getName(AccessibleEvent e) { |
521 | e.result = getLabelTextHelper(getFigure()); |
522 | } |
523 | }; |
524 | } |
525 | return accessibleEP; |
526 | } |
527 | |
528 | /** |
529 | * @generated |
530 | */ |
531 | private View getFontStyleOwnerView() { |
532 | return getPrimaryView(); |
533 | } |
534 | |
535 | /** |
536 | * @generated |
537 | */ |
538 | protected void addNotationalListeners() { |
539 | super.addNotationalListeners(); |
540 | addListenerFilter("PrimaryView", this, getPrimaryView()); //$NON-NLS-1$ |
541 | } |
542 | |
543 | /** |
544 | * @generated |
545 | */ |
546 | protected void removeNotationalListeners() { |
547 | super.removeNotationalListeners(); |
548 | removeListenerFilter("PrimaryView"); //$NON-NLS-1$ |
549 | } |
550 | |
551 | /** |
552 | * @generated not |
553 | */ |
554 | protected void handleNotificationEvent(Notification event) { |
555 | Object feature = event.getFeature(); |
556 | if (NotationPackage.eINSTANCE.getFontStyle_FontColor().equals(feature)) { |
557 | Integer c = (Integer) event.getNewValue(); |
558 | setFontColor(DiagramColorRegistry.getInstance().getColor(c)); |
559 | } else if (NotationPackage.eINSTANCE.getFontStyle_Underline().equals( |
560 | feature)) { |
561 | refreshUnderline(); |
562 | } else if (NotationPackage.eINSTANCE.getFontStyle_StrikeThrough() |
563 | .equals(feature)) { |
564 | refreshStrikeThrough(); |
565 | } else if (NotationPackage.eINSTANCE.getFontStyle_FontHeight().equals( |
566 | feature) |
567 | || NotationPackage.eINSTANCE.getFontStyle_FontName().equals( |
568 | feature) |
569 | || NotationPackage.eINSTANCE.getFontStyle_Bold() |
570 | .equals(feature) |
571 | || NotationPackage.eINSTANCE.getFontStyle_Italic().equals( |
572 | feature)) { |
573 | refreshFont(); |
574 | } else { |
575 | refreshLabel(); |
576 | } |
577 | super.handleNotificationEvent(event); |
578 | } |
579 | |
580 | /** |
581 | * @generated |
582 | */ |
583 | protected IFigure createFigure() { |
584 | // Parent should assign one using setLabel() method |
585 | return null; |
586 | } |
587 | |
588 | } |