📄 propertydialog.java
字号:
/* ********************************************************************** * * Use, duplication, or disclosure by the Government is subject to * restricted rights as set forth in the DFARS. * * BBNT Solutions LLC * A Part of * Verizon * 10 Moulton Street * Cambridge, MA 02138 * (617) 873-3000 * * Copyright (C) 2002 by BBNT Solutions, LLC * All Rights Reserved. * ********************************************************************** */package com.bbn.openmap.tools.beanbox;import java.awt.*;import java.awt.event.*;import java.beans.*;import javax.swing.*;/** * Provides support to the GenericPropertySheet for displaying a * custom PropertyEditor. */class PropertyDialog extends Dialog implements ActionListener { private Button doneButton; private Component body; private final static int vPad = 5; private final static int hPad = 4; PropertyDialog(JDialog frame, PropertyEditor pe, int x, int y) { super(frame, pe.getClass().getName(), true); setLayout(null); body = pe.getCustomEditor(); if (body instanceof Window) { if (!((Container) body).isVisible()) ((Container) body).setVisible(true); } else { setLayout(new BorderLayout()); add(body, BorderLayout.CENTER); doneButton = new Button("Done"); doneButton.addActionListener(this); add(doneButton, BorderLayout.SOUTH); setLocation(x, y); setVisible(true); } } public void actionPerformed(ActionEvent evt) { // Button down. dispose(); } public void doLayout() { Insets ins = getInsets(); Dimension bodySize = body.getPreferredSize(); Dimension buttonSize = doneButton.getPreferredSize(); int width = ins.left + 2 * hPad + ins.right + bodySize.width; int height = ins.top + 3 * vPad + ins.bottom + bodySize.height + buttonSize.height; body.setBounds(ins.left + hPad, ins.top + vPad, bodySize.width, bodySize.height); doneButton.setBounds((width - buttonSize.width) / 2, ins.top + (2 * hPad) + bodySize.height, buttonSize.width, buttonSize.height); setSize(width, height); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -