pythonbreakpointpropertiesruleraction.java
来自「Python Development Environment (Python I」· Java 代码 · 共 64 行
JAVA
64 行
package org.python.pydev.debug.ui.actions;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.debug.core.model.IBreakpoint;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.text.source.IVerticalRulerInfo;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.ISelectionChangedListener;
import org.eclipse.jface.viewers.ISelectionProvider;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.ui.dialogs.PropertyDialogAction;
import org.eclipse.ui.texteditor.ITextEditor;
import org.python.pydev.debug.model.PyBreakpoint;
/**
* Action for editing the breakpoint properties.
*/
public class PythonBreakpointPropertiesRulerAction extends AbstractBreakpointRulerAction implements IAction {
public PythonBreakpointPropertiesRulerAction(ITextEditor editor, IVerticalRulerInfo rulerInfo) {
setInfo(rulerInfo);
setTextEditor(editor);
setText("Breakpoint &Properties...");
}
/**
* @throws CoreException
* @see Action#run()
*/
public void run() {
IBreakpoint breakPoint = getBreakpoint();
if (breakPoint != null) {
PropertyDialogAction action = new PropertyDialogAction(getTextEditor().getEditorSite(), new ISelectionProvider() {
public void addSelectionChangedListener(ISelectionChangedListener listener) {
}
public ISelection getSelection() {
return new StructuredSelection(getBreakpoint());
}
public void removeSelectionChangedListener(ISelectionChangedListener listener) {
}
public void setSelection(ISelection selection) {
}
});
action.run();
}
}
public void update() {
IBreakpoint breakpoint = determineBreakpoint();
setBreakpoint(breakpoint);
if (breakpoint == null || !(breakpoint instanceof PyBreakpoint)) {
setBreakpoint(null);
setEnabled(false);
return;
}
setEnabled(true);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?