Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 880b6d99e344e27eb7d6a29bcb4f0d5f68cde78a (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
/*****************************************************************************
 * Copyright (c) 2013 CEA LIST.
 *
 * 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.cdo.internal.ui.actions;

import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IAction;
import org.eclipse.papyrus.cdo.internal.ui.Activator;
import org.eclipse.papyrus.cdo.internal.ui.l10n.Messages;
import org.eclipse.papyrus.cdo.internal.ui.views.ModelRepositoriesView;
import org.eclipse.ui.IPropertyListener;

/**
 * This is the AddRepositoryAction type. Enjoy.
 */
public class LinkWithEditorAction
		extends Action {

	private ModelRepositoriesView part;

	public LinkWithEditorAction(ModelRepositoriesView part) {
		super(Messages.LinkWithEditorAction_0, IAction.AS_CHECK_BOX);

		this.part = part;
		part.addPropertyListener(new IPropertyListener() {

			@Override
			public void propertyChanged(Object source, int propId) {
				switch (propId) {
				case ModelRepositoriesView.LINK_WITH_EDITOR_PROPERTY:
					updateToggleState();
					break;
				}
			}
		});

		setImageDescriptor(Activator.getIcon(Activator.ICON_LINK_WITH_EDITOR));

		setChecked(part.isLinkWithEditor());
	}

	@Override
	public void run() {
		part.setLinkWithEditor(!part.isLinkWithEditor());
	}

	void updateToggleState() {
		setChecked(part.isLinkWithEditor());
	}
}

Back to the top