Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 283ca5396f10f1a755a856897ba42edcf55e39d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
/*****************************************************************************
 * Copyright (c) 2009 Atos Origin.
 *
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *  Alexia Allanic (Atos Origin) alexia.allanic@atosorigin.com - LayoutToolToolbar Implementation
 *
 *****************************************************************************/

package org.eclipse.papyrus.layout;

import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.eclipse.gef.EditPart;
import org.eclipse.jface.action.ContributionItem;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.papyrus.layout.managealgorithms.ZestAlgortihms;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.MenuItem;
import org.eclipse.swt.widgets.ToolBar;
import org.eclipse.swt.widgets.ToolItem;
import org.eclipse.swt.widgets.ToolTip;
import org.eclipse.ui.PlatformUI;

/**
 * The class LayoutToolToolbar.
 */
public class LayoutToolToolbar extends ContributionItem {

	/** The image layout. */
	private static Image imageLayout = null;

	/** The selection. */
	private ISelection theSelection;

	/** The algorithmes. */
	private Collection<LayoutToolAlgorithms> algorithmes = ZestAlgortihms.getRegisteredAlgorithmes();

	/** The menu. */
	private Menu menu = null;

	/** The current algorithm. */
	private LayoutToolAlgorithms currentAlgorithm;

	/** The toolbar. */
	private ToolBar toolbar;

	/** The item for menu. */
	private ToolItem itemForMenu;

	/** The item drop down. */
	private ToolItem itemDropDown;

	/** The current tool tip. */
	private ToolTip currentToolTip = null;

	/** The item layout text. */
	private String itemLayoutText = "Add layout area";

	/** The layout tool tip text. */
	private String layoutToolTipText = "Draw a layout area resizable around nodes, algorithms will be apply to this area";

	/** The layout tool tip. */
	private ToolTip layoutToolTip = null;

	static {
		try {
			imageLayout = new Image(Display.getDefault(), Activator.getDefault().getBundle().getEntry("icons/layoutIcon.gif").openStream());
		} catch (IOException e) {
			Activator.getDefault().log("Cannot load layoutIcon", e);
		}
	}

	/**
	 * Instantiates a new layout tool toolbar.
	 */
	public LayoutToolToolbar() {
		this("LayoutToolToolbar");
	}

	/**
	 * Instantiates a new layout tool toolbar.
	 *
	 * @param id
	 *            the id
	 */
	public LayoutToolToolbar(String id) {
		super(id);
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.jface.action.ContributionItem#fill(org.eclipse.swt.widgets.ToolBar, int)
	 */
	@Override
	public void fill(final ToolBar toolBar, int index) {
		this.toolbar = toolBar;
		itemDropDown = new ToolItem(toolBar, SWT.DROP_DOWN);
		if (currentAlgorithm == null) {
			itemDropDown.setImage(imageLayout);
		} else {
			itemDropDown.setImage(currentAlgorithm.getIcon());
		}
		itemDropDown.setText("");
		getMenu(toolBar);
		itemDropDown.addListener(SWT.Selection, new Listener() {

			@Override
			public void handleEvent(Event event) {
				getMenu(toolbar);
				if (event.detail == SWT.ARROW) {
					Rectangle bounds = itemDropDown.getBounds();
					Point point = toolBar.toDisplay(bounds.x, bounds.y + bounds.height);
					menu.setLocation(point);
					menu.setVisible(true);
				}
			}
		});

		Listener selectionListener = new Listener() {

			@Override
			public void handleEvent(Event event) {
				getSelection();
				if (currentAlgorithm == null && event.y == 0 && itemForMenu.getData() != null && itemForMenu.getData().equals(itemLayoutText)) {
					createLayoutArea();
				}
				if (hasElementsSelected()) {
					if (event.y == 0) {
						if (currentAlgorithm != null) {
							callAlgorithm();
						}
					}
					for (MenuItem menuItem : menu.getItems()) {
						menuItem.setEnabled(true);
					}
				} else {
					for (MenuItem menuItem : menu.getItems()) {
						if (!menuItem.getText().equals(itemLayoutText)) {
							menuItem.setEnabled(false);
						}
					}
				}

			}

		};
		itemDropDown.addListener(SWT.Selection, selectionListener);
	}

	/**
	 * Gets the menu.
	 *
	 * @param parent
	 *            the parent
	 *
	 * @return Menu
	 */
	public Menu getMenu(Control parent) {
		menu = new Menu(parent);
		insertIntoMenuAlgorithms();
		if (menu.getItems().length > 0) {
			if (parent instanceof ToolBar) {
				toolbar = (ToolBar) parent;
				if (toolbar.getItems().length == 1) {
					itemForMenu = toolbar.getItem(0);
				}
			}
		}
		createLayoutAreaIcon();
		return menu;
	}

	/**
	 * Add algorithms into the menu.
	 */
	private void insertIntoMenuAlgorithms() {
		if (algorithmes == null || algorithmes.isEmpty()) {
			Activator.getDefault().log("Algorithms not found");
			return;
		}
		Map<String, Menu> mapMenuPath = new HashMap<String, Menu>();
		for (final LayoutToolAlgorithms a : algorithmes) {
			Menu submenu = menu;
			if (a.getPath() != null) {
				String[] pathSplit = a.getPath().split("\\.");
				String subString = "";
				for (int i = 0; i < pathSplit.length; i++) {
					subString += pathSplit[i];
					if (!mapMenuPath.keySet().contains(subString)) {
						MenuItem itemPath = new MenuItem(submenu, SWT.CASCADE);
						itemPath.setText(pathSplit[i]);
						submenu = new Menu(submenu);
						itemPath.setMenu(submenu);
						mapMenuPath.put(subString, submenu);
					} else {
						for (String path : mapMenuPath.keySet()) {
							if (subString.equals(path)) {
								submenu = mapMenuPath.get(path);
							}
						}
					}
					subString += ".";
				}
			}
			final MenuItem item = new MenuItem(submenu, SWT.RADIO);
			item.setText(a.getName());
			item.setImage(a.getIcon());
			item.setData(a);
			if (a.getToolTipText() != null) {
				final ToolTip toolTip = new ToolTip(menu.getShell(), SWT.NONE);
				toolTip.setText(item.getText());
				toolTip.setMessage(((LayoutToolAlgorithms) item.getData()).getToolTipText());
				item.addListener(SWT.Arm, new Listener() {

					@Override
					public void handleEvent(Event event) {
						if (currentToolTip != null) {
							currentToolTip.setVisible(false);
						}
						if (layoutToolTip != null) {
							layoutToolTip.setVisible(false);
						}
						currentToolTip = toolTip;
						Point mouse = Display.getDefault().getCursorLocation();
						int x = mouse.x + 20;
						int y = mouse.y + 30;
						toolTip.setLocation(new Point(x, y));
						toolTip.setVisible(true);
					}
				});
			} else {
				item.addListener(SWT.Arm, new Listener() {

					@Override
					public void handleEvent(Event event) {
						if (currentToolTip != null) {
							currentToolTip.setVisible(false);
							currentToolTip = null;
						}
						if (layoutToolTip != null) {
							layoutToolTip.setVisible(false);
						}
					}
				});
			}
			item.addSelectionListener(new SelectionAdapter() {

				@Override
				public void widgetSelected(SelectionEvent e) {
					if (((MenuItem) e.getSource()).getSelection()) {
						if (currentToolTip != null) {
							currentToolTip.setVisible(false);
						}
						handleSelected(e, item);
					}
				}
			});
		}
	}

	/**
	 * Handle selected.
	 *
	 * @param e
	 *            the e
	 * @param item
	 *            the item
	 */
	private void handleSelected(SelectionEvent e, MenuItem item) {
		LayoutToolAlgorithms layoutToolAlgorithms = (LayoutToolAlgorithms) item.getData();
		if (itemForMenu != null) {
			itemForMenu.setImage(layoutToolAlgorithms.getIcon());
			if (layoutToolAlgorithms.getToolTipText() != null) {
				itemForMenu.setToolTipText(layoutToolAlgorithms.getToolTipText());
			} else {
				itemForMenu.setToolTipText(null);
			}
		}
		currentAlgorithm = layoutToolAlgorithms;
		callAlgorithm();
	}

	/**
	 * Run.
	 *
	 * @param action
	 *            the action
	 */
	public void run(IAction action) {
		callAlgorithm();
	}

	/**
	 * Call algorithm.
	 */
	private void callAlgorithm() {
		if (currentAlgorithm == null) {
			MessageDialog.openWarning(Display.getDefault().getActiveShell(), "Warning", "Please choose an algorithm");
			return;
		}
		LayoutTool.getInstance().applyLayout(currentAlgorithm.getName(), getEditPartSelected());
	}

	/**
	 * Selection changed.
	 *
	 * @param action
	 *            the action
	 * @param selection
	 *            the selection
	 */
	public void selectionChanged(IAction action, ISelection selection) {
		theSelection = selection;
	}

	/**
	 * Gets the selection.
	 *
	 * @return selection
	 */
	public ISelection getSelection() {
		theSelection = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getActiveEditor().getSite().getSelectionProvider().getSelection();
		return theSelection;
	}

	/**
	 * Gets the edit part selected.
	 *
	 * @return list editParts selected
	 */
	public List<EditPart> getEditPartSelected() {
		List<EditPart> editParts = new ArrayList<EditPart>();
		if (theSelection instanceof IStructuredSelection) {
			IStructuredSelection selec = (IStructuredSelection) theSelection;
			List<?> objects = selec.toList();
			for (Object iter : objects) {
				if (iter instanceof EditPart) {
					EditPart e = (EditPart) iter;
					editParts.add(e);
				}
			}
		}
		sort(editParts);
		return editParts;
	}

	/**
	 * Sort editParts to have editParts which have less parents in first.
	 *
	 * @param editParts
	 *            the edit parts
	 */
	public static void sort(List<EditPart> editParts) {
		Collections.sort(editParts, new Comparator<EditPart>() {

			@Override
			public int compare(EditPart arg0, EditPart arg1) {
				return getNbParents(arg0) - getNbParents(arg1);
			}
		});
	}

	/**
	 * Gets the nb parents.
	 *
	 * @param part
	 *            editPart
	 *
	 * @return number parents of the editPart
	 */
	private static int getNbParents(EditPart part) {
		int result = 0;
		EditPart tmp = part;
		while (tmp.getParent() != null) {
			result++;
			tmp = tmp.getParent();
		}
		return result;
	}

	/**
	 * Checks for elements selected.
	 *
	 * @return false if 0 or 1 element selected else return true
	 */
	private boolean hasElementsSelected() {
		List<EditPart> l = getEditPartSelected();
		return !(l.size() <= 1);
	}

	/**
	 * create layout area.
	 */
	private void createLayoutArea() {
		LayoutToolExtensionPointManager.getInstance().getLayoutAreaCreator().paintLayoutArea();
	}

	/**
	 * create layout area icon.
	 */
	private void createLayoutAreaIcon() {
		if (LayoutToolExtensionPointManager.getInstance().getLayoutAreaCreator() != null) {
			new MenuItem(menu, SWT.SEPARATOR);

			final MenuItem itemLayout = new MenuItem(menu, SWT.PUSH);
			itemLayout.setText(itemLayoutText);
			try {
				itemLayout.setImage(new Image(Display.getDefault(), Activator.getDefault().getBundle().getEntry("icons/layout_area.gif").openStream()));
			} catch (IOException e) {
				Activator.getDefault().log("Cannot load layout area icon", e);
			}
			layoutToolTip = new ToolTip(menu.getShell(), SWT.NONE);
			itemLayout.addListener(SWT.Arm, new Listener() {

				@Override
				public void handleEvent(Event event) {
					if (currentToolTip != null) {
						currentToolTip.setVisible(false);
					}
					layoutToolTip.setText(itemLayout.getText());
					layoutToolTip.setMessage(layoutToolTipText);
					layoutToolTip.setVisible(true);
					Point mouse = Display.getDefault().getCursorLocation();
					int x = mouse.x + 20;
					int y = mouse.y + 30;
					layoutToolTip.setLocation(new Point(x, y));
				}
			});
			itemLayout.addSelectionListener(new SelectionAdapter() {

				@Override
				public void widgetSelected(SelectionEvent e) {
					if (layoutToolTip != null) {
						layoutToolTip.setVisible(false);
					}
					createLayoutArea();
					currentAlgorithm = null;
					itemForMenu.setImage(itemLayout.getImage());
					itemForMenu.setData(itemLayoutText);
					itemForMenu.setToolTipText(layoutToolTipText);
				}
			});
		}
	}
}

Back to the top