📄 pythontabgroup.java
字号:
/*
* Author: atotic
* Created: Aug 20, 2003
* License: Common Public License v1.0
*/
package org.python.pydev.debug.ui;
import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
import org.eclipse.debug.ui.CommonTab;
import org.eclipse.debug.ui.EnvironmentTab;
import org.eclipse.debug.ui.ILaunchConfigurationDialog;
import org.eclipse.debug.ui.ILaunchConfigurationTab;
import org.eclipse.debug.ui.RefreshTab;
import org.python.pydev.plugin.PydevPlugin;
/**
* Create tabs for the debugger setup.
*
* <p>Creates the tabs in the Debug setup window</p>
*
* TODO: Fix tabs so that invalid configuration disables Apply and Run buttons always
*/
public class PythonTabGroup extends AbstractLaunchConfigurationTabGroup {
public void createTabs(ILaunchConfigurationDialog arg0, String arg1) {
MainModuleTab mainModuleTab = new MainModuleTab();
ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
mainModuleTab,
new ArgumentsTab(PydevPlugin.getPythonInterpreterManager(), mainModuleTab),
new RefreshTab(),
new EnvironmentTab(),
new CommonTab() };
setTabs(tabs);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -