📄 splitlayout.java
字号:
/* * FindBugs - Find Bugs in Java programs * Copyright (C) 2006, University of Maryland * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */package edu.umd.cs.findbugs.gui2;import java.awt.BorderLayout;import java.awt.event.KeyEvent;import javax.swing.JLabel;import javax.swing.JMenu;import javax.swing.JPanel;import javax.swing.JSplitPane;import javax.swing.JTabbedPane;import javax.swing.UIManager;/** * @author pugh */public class SplitLayout implements FindBugsLayoutManager { final MainFrame frame; JLabel sourceTitle; JSplitPane topLeftSPane; JSplitPane topSPane; JSplitPane summarySPane; JSplitPane mainSPane; /** * @param frame */ public SplitLayout(MainFrame frame) { this.frame = frame; } /* (non-Javadoc) * @see edu.umd.cs.findbugs.gui2.FindBugsLayoutManager#createWindowMenu() */ public JMenu createWindowMenu() { return null; } /* (non-Javadoc) * @see edu.umd.cs.findbugs.gui2.FindBugsLayoutManager#initialize() */ public void initialize() { topLeftSPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, frame.bugListPanel(), frame.createCommentsInputPanel()); topLeftSPane.setOneTouchExpandable(true); topLeftSPane.setDividerLocation(GUISaveState.getInstance().getSplitTreeComments()); JPanel sourcePanel = new JPanel(); sourcePanel.setLayout(new BorderLayout()); sourceTitle = new JLabel(); sourceTitle.setText(edu.umd.cs.findbugs.L10N.getLocalString("txt.source_listing", "<source listing>")); sourcePanel.add(sourceTitle, BorderLayout.NORTH); sourcePanel.add(frame.createSourceCodePanel(), BorderLayout.CENTER); sourcePanel.add(frame.createSourceSearchPanel(), BorderLayout.SOUTH); topSPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, topLeftSPane, sourcePanel); topSPane.setOneTouchExpandable(true); topSPane.setDividerLocation(GUISaveState.getInstance().getSplitTop()); summarySPane = frame.summaryTab(); mainSPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, topSPane, summarySPane); mainSPane.setOneTouchExpandable(true); mainSPane.setDividerLocation(GUISaveState.getInstance().getSplitMain()); frame.setLayout(new BorderLayout()); frame.add(mainSPane, BorderLayout.CENTER); frame.add(frame.statusBar(), BorderLayout.SOUTH); } /* (non-Javadoc) * @see edu.umd.cs.findbugs.gui2.FindBugsLayoutManager#makeCommentsVisible() */ public void makeCommentsVisible() { } /* (non-Javadoc) * @see edu.umd.cs.findbugs.gui2.FindBugsLayoutManager#makeSourceVisible() */ public void makeSourceVisible() { } /* (non-Javadoc) * @see edu.umd.cs.findbugs.gui2.FindBugsLayoutManager#saveState() */ public void saveState() { GUISaveState.getInstance().setSplitTreeComments(topLeftSPane.getDividerLocation()); GUISaveState.getInstance().setSplitTop(topSPane.getDividerLocation()); GUISaveState.getInstance().setSplitSummary(summarySPane.getDividerLocation()); GUISaveState.getInstance().setSplitMain(mainSPane.getDividerLocation()); } /* (non-Javadoc) * @see edu.umd.cs.findbugs.gui2.FindBugsLayoutManager#setSourceTitle(java.lang.String) */ public void setSourceTitle(String title) { sourceTitle.setText(title); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -