Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2deb1121824e8beeae0d22c60c771cb1c758ec59 (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
/*****************************************************************************
 * Copyright (c) 2017 CEA LIST and others.
 *
 * 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:
 *   CEA LIST - Initial API and implementation
 *
 *****************************************************************************/

package org.eclipse.papyrus.uml.diagram.sequence.keyboardlistener;

import org.eclipse.gmf.runtime.diagram.ui.editparts.GraphicalEditPart;
import org.eclipse.papyrus.uml.diagram.sequence.command.SetMoveAllLineAtSamePositionCommand;
import org.eclipse.papyrus.uml.diagram.sequence.referencialgrilling.GridManagementEditPolicy;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;

/**
 * This listener listen keyboard and affect the behavior of the grid
 *
 */
public class KeyToSetMoveLinesListener  implements Listener{

	protected GridManagementEditPolicy gridManagementEditPolicy;
	protected boolean moveAllLines;
	protected int keyboard;
	/**
	 * Constructor.
	 *
	 */
	public KeyToSetMoveLinesListener(GridManagementEditPolicy gridManagementEditPolicy,int keyboard,boolean moveAllLines ) {
		this.gridManagementEditPolicy=gridManagementEditPolicy;
		this.moveAllLines=moveAllLines;
		this.keyboard=keyboard;
	}
	@Override
	public void handleEvent(Event event) {
		if (event.keyCode == keyboard) {
			SetMoveAllLineAtSamePositionCommand setMoveAllLineAtSamePositionCommand= new SetMoveAllLineAtSamePositionCommand(gridManagementEditPolicy, moveAllLines);
			((GraphicalEditPart)gridManagementEditPolicy.getHost()).getDiagramEditDomain().getDiagramCommandStack().execute(setMoveAllLineAtSamePositionCommand);
		}
	}
}

Back to the top