# HG changeset patch # User Eugene Ostroukhov # Date 1275936879 25200 # Node ID 9db385b0ca89c9ddc9306731bfc305632653b92a # Parent 59ccacde89102de3b2d6ece0d16785c0b9e53f98 Bug 2542 - Debugger should not require configuration to be set up diff -r 59ccacde8910 -r 9db385b0ca89 org.symbian.tools.wrttools.debug.core/plugin.xml --- a/org.symbian.tools.wrttools.debug.core/plugin.xml Mon Jun 07 11:10:26 2010 -0700 +++ b/org.symbian.tools.wrttools.debug.core/plugin.xml Mon Jun 07 11:54:39 2010 -0700 @@ -181,7 +181,7 @@ diff -r 59ccacde8910 -r 9db385b0ca89 org.symbian.tools.wrttools.debug.core/src/org/symbian/tools/wrttools/debug/ui/actions/DebugAction.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/org.symbian.tools.wrttools.debug.core/src/org/symbian/tools/wrttools/debug/ui/actions/DebugAction.java Mon Jun 07 11:54:39 2010 -0700 @@ -0,0 +1,47 @@ +/** + * Copyright (c) 2010 Symbian Foundation and/or its subsidiary(-ies). + * All rights reserved. + * This component and the accompanying materials are made available + * under the terms of the License "Eclipse Public License v1.0" + * which accompanies this distribution, and is available + * at the URL "http://www.eclipse.org/legal/epl-v10.html". + * + * Initial Contributors: + * Symbian Foundation - initial contribution. + * Contributors: + * Description: + * Overview: + * Details: + * Platforms/Drives/Compatibility: + * Assumptions/Requirement/Pre-requisites: + * Failures and causes: + */ +package org.symbian.tools.wrttools.debug.ui.actions; + +import org.eclipse.core.resources.IProject; +import org.eclipse.core.resources.ResourcesPlugin; +import org.eclipse.debug.internal.ui.actions.DebugLastAction; +import org.eclipse.jface.action.IAction; +import org.eclipse.jface.dialogs.MessageDialog; +import org.symbian.tools.wrttools.util.ProjectUtils; + +@SuppressWarnings("restriction") +public class DebugAction extends DebugLastAction { + @Override + public void run(IAction action) { + boolean hasWrtProjects = false; + IProject[] projects = ResourcesPlugin.getWorkspace().getRoot().getProjects(); + for (IProject project : projects) { + if (project.isAccessible() && ProjectUtils.hasWrtNature(project)) { + hasWrtProjects = true; + break; + } + } + if (hasWrtProjects) { + super.run(action); + } else { + MessageDialog.openInformation(getShell(), "Cannot launch debugger", + "There are no open projects in your workspace"); + } + } +} diff -r 59ccacde8910 -r 9db385b0ca89 org.symbian.tools.wrttools.product/plugin.xml --- a/org.symbian.tools.wrttools.product/plugin.xml Mon Jun 07 11:10:26 2010 -0700 +++ b/org.symbian.tools.wrttools.product/plugin.xml Mon Jun 07 11:54:39 2010 -0700 @@ -81,6 +81,42 @@ + + + + + + + + + + + + + + + + + +