- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我为我的应用程序制作了一个 GUI。 JFrame 有 2 个 JPanel,panel1 和 panel2。 panel1 就是这样,一个带有自定义绘画的 JPanel,每 5 毫秒重新绘画一次。
panel2 是我第一次尝试 CardLayout 实现:它包含 JPanels subPanel1 和 subPanel2。 subPanel1 包含一个 JComboBox 并添加到 panel2:panel2.add(subPanel1);
。
subPanel2 有 .setLayout(new CardLayout());
命令,我向其中添加了 3 个新的 JPanel,以及适当的 itemListener 等。当然我也添加了: panel2.add(subPanel2);
现在解决问题:关注 Java 中的组件。我了解 setFocusable(boolean)
和 requestFocus()
方法。但我无法让他们以任何合乎逻辑的方式行事。
首先,它们的根本问题是:当组合框获得焦点时,我根本无法取消它的焦点(尝试用光标单击任何地方)。
以下是我进行的实验:
1) 在整个应用程序中没有任何与焦点相关的代码,组合框都会从焦点开始,无论 panel1 和 panel2 以什么顺序添加到 JFrame。
2) 如果我设置 panel1.setFocusable(true);
(在其构造函数中),它将从焦点开始
3) 如果我设置了 panel1.setFocusable(false);
并且还请求焦点,它不会得到它。 (唯一按预期工作的东西)
4) 如果我将 panel2、subPanel1 或 subPanel2 单独或任意组合设置为不可聚焦,它们仍然可以接收焦点(组合框,即,它是唯一能够注册焦点的组件)。
5) 如果我将组合框设置为不可聚焦,我仍然可以使用框的 itemListener 在 CardLayout 中的卡片之间滚动,但焦点不会粘在它上面。事实上 panel1 仍然注册键盘输入
所以我真的对整个“焦点”的事情感到非常困惑。也许这不是我想象的那样?我想做的是完全阻止与 panel2 的所有交互,直到标志(每 5 毫秒评估一次)为真。我是否正确地假设与 JPanel 不同,JComboBox 自动具有 mousebuttonListener 以在单击时获得焦点?如果不是,那么如何完全禁用 JComboBox 和当前卡显示的所有组件?不可聚焦组件中的组件仍然可聚焦是正常行为吗?
最佳答案
我尝试了许多不同的方法来解决类似的问题。
遍历组件层次结构并禁用每个组件的问题在于,您会破坏任何上下文并规避对这些组件的管理。
基本上,如果重新启用容器时某些子组件需要保持禁用状态,那么您会突然陷入多个级别相互交织的职责的问题......
迄今为止我发现的最佳解决方案是简单地使用 JXLayer
,它提供了“可锁定”层概念,允许您“锁定”单个容器,从而防止用户与其交互,例如...
这直接取自JXLayer
演示代码...
/**
* Copyright (c) 2006-2008, Alexander Potochkin
* All rights reserved.
*/
package org.jdesktop.jxlayer.demo;
import com.jhlabs.image.BlurFilter;
import com.jhlabs.image.EmbossFilter;
import org.jdesktop.jxlayer.JXLayer;
import org.jdesktop.jxlayer.demo.util.LafMenu;
import org.jdesktop.jxlayer.plaf.effect.BufferedImageOpEffect;
import org.jdesktop.jxlayer.plaf.effect.LayerEffect;
import org.jdesktop.jxlayer.plaf.ext.LockableUI;
import org.jdesktop.swingx.painter.BusyPainter;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.geom.Ellipse2D;
/**
* A demo to show the abilities of the {@link LockableUI}.
*
* @see BusyPainterUI
*/
public class LockableDemo extends JFrame {
private JXLayer<JComponent> layer;
private LockableUI blurUI =
new LockableUI(new BufferedImageOpEffect(new BlurFilter()));
private EnhancedLockableUI embossUI =
new EnhancedLockableUI(new BufferedImageOpEffect(new EmbossFilter()));
private LockableUI busyPainterUI = new BusyPainterUI();
private JCheckBoxMenuItem disablingItem =
new JCheckBoxMenuItem(new AbstractAction("Lock the layer") {
public void actionPerformed(ActionEvent e) {
blurItem.setEnabled(!disablingItem.isSelected());
embossItem.setEnabled(!disablingItem.isSelected());
busyPainterItem.setEnabled(!disablingItem.isSelected());
blurUI.setLocked(disablingItem.isSelected());
embossUI.setLocked(disablingItem.isSelected());
busyPainterUI.setLocked(disablingItem.isSelected());
}
});
private JRadioButtonMenuItem blurItem = new JRadioButtonMenuItem("Blur effect");
private JRadioButtonMenuItem embossItem = new JRadioButtonMenuItem("Unlock button");
private JRadioButtonMenuItem busyPainterItem = new JRadioButtonMenuItem("BusyPainter");
public LockableDemo() {
super("Lockable layer demo");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JComponent view = createLayerPanel();
layer = new JXLayer<JComponent>(view);
layer.setUI(blurUI);
add(layer);
add(createToolPanel(), BorderLayout.EAST);
setJMenuBar(createMenuBar());
setSize(380, 300);
setLocationRelativeTo(null);
}
public static void main(String[] args) throws Exception {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
new LockableDemo().setVisible(true);
}
});
}
private JMenuBar createMenuBar() {
JMenu menu = new JMenu("Menu");
disablingItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_D, InputEvent.ALT_MASK));
menu.add(disablingItem);
menu.addSeparator();
blurItem.setSelected(true);
blurItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_1, InputEvent.ALT_MASK));
menu.add(blurItem);
embossItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_2, InputEvent.ALT_MASK));
menu.add(embossItem);
busyPainterItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_3, InputEvent.ALT_MASK));
menu.add(busyPainterItem);
ButtonGroup group = new ButtonGroup();
group.add(blurItem);
group.add(embossItem);
group.add(busyPainterItem);
ItemListener menuListener = new ItemListener() {
public void itemStateChanged(ItemEvent e) {
if (blurItem.isSelected()) {
layer.setUI(blurUI);
} else if (embossItem.isSelected()) {
layer.setUI(embossUI);
} else if (busyPainterItem.isSelected()) {
layer.setUI(busyPainterUI);
}
}
};
blurItem.addItemListener(menuListener);
embossItem.addItemListener(menuListener);
busyPainterItem.addItemListener(menuListener);
embossUI.getUnlockButton().addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
disablingItem.doClick();
}
});
JMenuBar bar = new JMenuBar();
bar.add(menu);
bar.add(new LafMenu());
return bar;
}
private JComponent createLayerPanel() {
JComponent panel = new JPanel();
panel.add(new JCheckBox("JCheckBox"));
panel.add(new JRadioButton("JRadioButton"));
panel.add(new JTextField(15));
JButton button = new JButton("Have a nice day");
button.setMnemonic('H');
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JOptionPane.showMessageDialog(LockableDemo.this,
"actionPerformed");
}
});
panel.add(button);
panel.add(new JTextField(15));
panel.add(new JCheckBox("JCheckBox"));
panel.add(new JRadioButton("JRadioButton"));
panel.add(new JTextField(15));
panel.add(new JCheckBox("JCheckBox"));
panel.add(new JRadioButton("JRadioButton"));
panel.setBorder(BorderFactory.createEtchedBorder());
return panel;
}
private JComponent createToolPanel() {
JComponent box = Box.createVerticalBox();
JCheckBox button = new JCheckBox(disablingItem.getText());
button.setModel(disablingItem.getModel());
box.add(Box.createGlue());
box.add(button);
box.add(Box.createGlue());
JRadioButton blur = new JRadioButton(blurItem.getText());
blur.setModel(blurItem.getModel());
box.add(blur);
JRadioButton emboss = new JRadioButton(embossItem.getText());
emboss.setModel(embossItem.getModel());
box.add(emboss);
JRadioButton translucent = new JRadioButton(busyPainterItem.getText());
translucent.setModel(busyPainterItem.getModel());
box.add(translucent);
box.add(Box.createGlue());
return box;
}
/**
* Subclass of the {@link LockableUI} which shows a button
* that allows to unlock the {@link JXLayer} when it is locked
*/
public static class EnhancedLockableUI extends LockableUI {
private JButton unlockButton = new JButton("Unlock");
public EnhancedLockableUI(LayerEffect... lockedEffects) {
super(lockedEffects);
unlockButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
setLocked(false);
}
});
unlockButton.setVisible(false);
}
public AbstractButton getUnlockButton() {
return unlockButton;
}
@Override
@SuppressWarnings("unchecked")
public void installUI(JComponent c) {
super.installUI(c);
JXLayer<JComponent> l = (JXLayer<JComponent>) c;
l.getGlassPane().setLayout(new GridBagLayout());
l.getGlassPane().add(unlockButton);
unlockButton.setCursor(Cursor.getDefaultCursor());
}
@Override
@SuppressWarnings("unchecked")
public void uninstallUI(JComponent c) {
super.uninstallUI(c);
JXLayer<JComponent> l = (JXLayer<JComponent>) c;
l.getGlassPane().setLayout(new FlowLayout());
l.getGlassPane().remove(unlockButton);
}
public void setLocked(boolean isLocked) {
super.setLocked(isLocked);
unlockButton.setVisible(isLocked);
}
}
/**
* Subclass of the {@link LockableUI} which uses the {@link BusyPainterUI}
* from the SwingX project to implement the "busy effect"
* when {@link JXLayer} is locked.
*/
public static class BusyPainterUI extends LockableUI
implements ActionListener {
private BusyPainter busyPainter;
private Timer timer;
private int frameNumber;
public BusyPainterUI() {
busyPainter = new BusyPainter() {
protected void doPaint(Graphics2D g, JComponent object,
int width, int height) {
// centralize the effect
Rectangle r = getTrajectory().getBounds();
int tw = width - r.width - 2 * r.x;
int th = height - r.height - 2 * r.y;
g.translate(tw / 2, th / 2);
super.doPaint(g, object, width, height);
}
};
busyPainter.setPointShape(new Ellipse2D.Double(0, 0, 20, 20));
busyPainter.setTrajectory(new Ellipse2D.Double(0, 0, 100, 100));
timer = new Timer(100, this);
}
@Override
protected void paintLayer(Graphics2D g2, JXLayer<? extends JComponent> l) {
super.paintLayer(g2, l);
if (isLocked()) {
busyPainter.paint(g2, l, l.getWidth(), l.getHeight());
}
}
@Override
public void setLocked(boolean isLocked) {
super.setLocked(isLocked);
if (isLocked) {
timer.start();
} else {
timer.stop();
}
}
// Change the frame for the busyPainter
// and mark BusyPainterUI as dirty
public void actionPerformed(ActionEvent e) {
frameNumber = (frameNumber + 1) % 8;
busyPainter.setFrame(frameNumber);
// this will repaint the layer
setDirty(true);
}
}
}
关于Java 阻止 JComponent 的焦点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19799451/
我需要一些帮助。这都是关于选项卡索引的。我有一个使用 document.getElementById("name").focus(); 的 JavaScript,其中 id="name"的 textb
这是我的第一篇文章,如果您想了解更多信息,请告诉我! 我正在使用选择列表和 jQuery Accordion 。当用户从列表中选择一个值时,它会使用 activate 方法打开折叠面板的相关部分。 除
JQM 1.3.2/ASP.NET MVC 4 当选择一个值时,焦点没有正确设置到输入字段,我错过了什么? 周围的典型 jqm-shadow 没有从选择中移除,输入得到阴影效果,但光标没有设置到输入字
我正在为 Android 开发一个播放列表应用程序,它有一个包含歌曲名称 (TextView) 作为其列表项的 ListView。 随着歌曲的播放,我想突出显示 ListView 中的项目,直到歌曲结
我在这里不知所措,以前从来没有遇到过这个问题。 我无法让 focus() 在任何浏览器中工作。我正在使用 jquery,甚至不能让它与标准的 javascript 一起工作。我也尝试添加超时但仍然没有
登录后我有一个文本字段。登录后光标将自动聚焦在该文本字段上。如何验证该文本字段上是否存在光标/焦点? 文本框的HTML代码如下: 最佳答案 您也可以尝试直接的 webdriver 方法: drive
我有一个框架和一个面板。我永久删除面板并添加另一个面板。添加新面板后,我需要 JTextField 来获得焦点。我该怎么做? 我尝试了 panel.requestFocus() 方法,但没有成功。 示
这个问题在这里已经有了答案: 关闭 13 年前。 Possible Duplicate: Trouble with jquery lavalamp 出于某种原因,无论我点击哪个链接,我的背景颜色都会
在我的表单验证中,在提交时,我正在验证表单,并找到未填充的元素并使用此函数进行聚焦:工作正常 switch (tagName) { case 'TEXT': if (!actualVa
我最近构建了一个 JS/CSS 模态系统。该元素使用的是 Bootstrap 模式,但通过在其中放置无法滚动或无法正确聚焦在移动设备上的表单和大量内容,将其推向了极限。 可以触发模态系统here单击大
我正在建立一个网站,但我想将图片放在背景中,但我无法将其放在我想要的位置。 我希望网页上图像的“焦点”位于图像中心几像素处。宽度我都能看出来,但是高度没有。 图像分辨率为“5760x3840px”。
这个问题在这里已经有了答案: using :focus pseudo class on li or other element else than a,input,button, etc (2 个
每当我创建编辑器的另一个实例(在我的例子中,通过 onkeypress 事件),我就会失去对创建新编辑器时正在输入的编辑器的关注。我怎样才能防止所有编辑都失去对任何事件的关注? 最佳答案 为此,Qui
我试图将焦点放在一个字段上,更改文本的颜色,但无论我尝试什么:它都不起作用。以下是 HTML: .register-section input:focus + .register-section la
我已经为微调器选择的变化设置了一个监听器。在监听器中,我想关注一个 EditText 字段。我使用了以下代码: text_other_msg.setFocusable(true); 它不起作用。我还尝
我在表单屏幕上有几个 UITextField 输入,其中一些有一个数字键盘显示,通过自定义弹出窗口显示。当用户在字段中前进时,我们会根据需要关闭或打开弹出窗口。在 iOS 11 中,似乎“第一响应者”
我在 jQueryUI 中输入焦点时遇到问题。我在按钮上使用了 hover() 方法并且它正在工作,但是输入上的 focus() 不起作用。我不知道为什么。这是代码和 fiddle $(documen
有没有办法在自动对焦完成后随时获取对焦点? 在 Apple 的示例代码中,他们使用: - (void)subjectAreaDidChange:(NSNotification *)notifi
如果我的焦点不在 textField 上,如何移除 NSTextField 上的焦点? 我有一个 NSTextField,我设置了操作:编辑结束时发送。单击 textField 后,当我单击 View
如何通过 jQuery 实现这一点? 当用户单击表单中的任何输入时,它就会获得焦点。当用户从任何输入中单击表单外时,它会变得模糊,但是,在表单本身的输入之间进行 Tab 键切换之间不会触发模糊。 对于
我是一名优秀的程序员,十分优秀!