/* * Copyright 2000-2015 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.jetbrains.python.debugger; import com.intellij.execution.RunManager; import com.intellij.execution.RunnerAndConfigurationSettings; import com.intellij.execution.configurations.RunConfiguration; import com.intellij.openapi.actionSystem.*; import com.intellij.openapi.project.Project; import com.intellij.xdebugger.XDebugSession; import com.intellij.xdebugger.impl.DebuggerSupport; import com.intellij.xdebugger.impl.actions.DebuggerActionHandler; import com.intellij.xdebugger.impl.actions.ForceStepIntoAction; import com.intellij.xdebugger.impl.actions.XDebuggerSuspendedActionHandler; import com.jetbrains.python.run.AbstractPythonRunConfiguration; import org.jetbrains.annotations.NotNull; public class PyForceStepIntoAction extends ForceStepIntoAction { private final XDebuggerSuspendedActionHandler myPyForceStepIntoHandler; public PyForceStepIntoAction() { myPyForceStepIntoHandler = new XDebuggerSuspendedActionHandler() { @Override protected void perform(@NotNull final XDebugSession session, final DataContext dataContext) { session.forceStepInto(); } @Override public boolean isEnabled(@NotNull XDebugSession session, final DataContext dataContext) { Project project = CommonDataKeys.PROJECT.getData(dataContext); RunnerAndConfigurationSettings settings = RunManager.getInstance(project).getSelectedConfiguration(); if (settings != null) { RunConfiguration runConfiguration = settings.getConfiguration(); if (runConfiguration instanceof AbstractPythonRunConfiguration) { return false; } } return super.isEnabled(session, dataContext); } }; } @NotNull @Override protected DebuggerActionHandler getHandler(@NotNull DebuggerSupport debuggerSupport) { return myPyForceStepIntoHandler; } }