/******************************************************************************* * Copyright (c) 2012, 2016 VMware, Inc. * 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: * VMware, Inc. - initial API and implementation *******************************************************************************/ package org.springframework.ide.eclipse.beans.ui.livegraph.actions; import org.eclipse.jface.action.Action; import org.springframework.ide.eclipse.beans.ui.livegraph.LiveGraphUIImages; import org.springframework.ide.eclipse.beans.ui.livegraph.views.LiveBeansGraphView; /** * @author Leo Dos Santos */ public class ToggleViewModeAction extends Action { private final LiveBeansGraphView view; private final int mode; public ToggleViewModeAction(LiveBeansGraphView view, int mode) { super("", AS_RADIO_BUTTON); if (mode == LiveBeansGraphView.DISPLAY_MODE_GRAPH) { setText("Graph View"); setImageDescriptor(LiveGraphUIImages.DESC_OBJS_BEAN_REF); } else if (mode == LiveBeansGraphView.DISPLAY_MODE_TREE) { setText("Tree View"); setImageDescriptor(LiveGraphUIImages.DESC_OBJS_COLLECTION); } this.view = view; this.mode = mode; } public int getDisplayMode() { return mode; } @Override public void run() { if (isChecked()) { view.setDisplayMode(mode); } } }