gpt4 book ai didi

java - 我可以将玻璃面板分成两部分,并为每个面板添加一个单独的鼠标监听器吗?

转载 作者:行者123 更新时间:2023-12-01 18:11:59 31 4
gpt4 key购买 nike

我有一些代码,在玻璃 Pane 下有两个图像。我想让每个图像都位于自己的玻璃 Pane 下,并且每个玻璃 Pane 都发出自己的鼠标监听器信号。目前,我已将它们都制作在一 block 玻璃板下,并为整个玻璃板设置了一个鼠标监听器。两个图像并排采用网格布局,因此将玻璃板分成两半应该不会太难。这里只是一个玻璃 Pane 的代码,但请注意,我正在尝试为每个图像制作两个玻璃 Pane 和两个单独鼠标监听器类。这只是带有一个*鼠标监听器的代码,用于**两个图像:

package Buttons;


import java.awt.GridLayout;
import java.awt.event.*;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.MouseMotionListener;

import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JPanel;

public class Giraffewindow extends JDialog {
public Giraffewindow() {
JDialog giraffewindow = new JDialog();

Icon giraffe = new ImageIcon(getClass().getResource("giraffe.png"));
Icon windows = new ImageIcon(getClass().getResource("windows.png"));

giraffewindow.setLayout(new GridLayout(1, 2, 0, 0));
giraffewindow.add(new JLabel(windows));
giraffewindow.add(new JLabel(giraffe));


giraffewindow.pack();
giraffewindow.setTitle("GIRAFFE!");
giraffewindow.setVisible(true);
giraffewindow.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
JPanel glass = ((JPanel) giraffewindow.getGlassPane());
glass.setVisible(true);
status = new JLabel("I can change");

glass.add(status);
glass.setLayout(null);
giraffemousehandler giraffemouse = new giraffemousehandler();
glass.addMouseListener(giraffemouse);
glass.addMouseMotionListener(giraffemouse); //Can I add mouse motion listener to a picture
// setLayout(null);
}


JLabel status = null;

class giraffemousehandler extends MouseAdapter implements MouseListener, MouseMotionListener { //MouseAdapter makes it so that you don't have to have all 7 implemented mouse listener methods

@Override
public void mouseMoved(MouseEvent e) {
// TODO Auto-generated method stub
status.setBounds(e.getX(), e.getY(), 50, 60); //Makes JLabel follow mouse

}

@Override
public void mouseEntered(MouseEvent e) {

status.setText("Enter);

}

@Override
public void mouseExited(MouseEvent e) {

status.setText("Exit");
// status.setBounds(e.getX(), e.getY(), 5, 6);

}

}
}

这是 camickr 请求的代码,请注意有两个单独的鼠标监听器,我很想知道如何做到这一点。当 JLabel 跟随鼠标时,1)它距离鼠标非常远,2)它不显示完整的 JLabel,3)一次退出/进入后它不会改变。我非常感谢您的帮助,这是基于 camickrs 建议的代码:

import java.awt.GridLayout;
import java.awt.event.*;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.MouseMotionListener;

import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JPanel;

class SSCCE extends JDialog {

public SSCCE() {
JDialog giraffewindow = new JDialog();

Icon giraffe = new ImageIcon(getClass().getResource("giraffe.png"));
Icon windows = new ImageIcon(getClass().getResource("windows.png"));

giraffewindow.setLayout(new GridLayout(1, 2, 0, 0));
JLabel giraffelabel = new JLabel();
JLabel windowlabel = new JLabel();

windowlabel.setIcon(windows);
giraffelabel.setIcon(giraffe);

giraffewindow.add(windowlabel);
giraffewindow.add(giraffelabel);

giraffewindow.setTitle("Title!");
giraffewindow.setSize(1100, 600);
giraffewindow.setVisible(true);
giraffewindow.setDefaultCloseOperation(DISPOSE_ON_CLOSE);

JPanel glass = ((JPanel) giraffewindow.getGlassPane()); //Glasspane
glass.setVisible(true);

status = new JLabel("I can change"); //This is the JLabel which should follow my mouse

glass.add(status);
glass.setLayout(null);

giraffemousehandler giraffemouse = new giraffemousehandler();
windowmousehandler windowmouse = new windowmousehandler();

windowlabel.addMouseListener(windowmouse);
giraffelabel.addMouseMotionListener(giraffemouse); //Can I add mouse motion listener to a picture

// setLayout(null);
}

JLabel status = null;

class giraffemousehandler extends MouseAdapter implements MouseListener, MouseMotionListener { //MouseAdapter makes it so that you don't have to have all 7 implemented mouse listener methods

@Override
public void mouseMoved(MouseEvent e) {
// TODO Auto-generated method stub
status.setBounds(e.getX(), e.getY(), 50, 60); //Makes JLabel follow mouse

}

@Override
public void mouseEntered(MouseEvent e) {

status.setText("Mouse is on giraffe");

}

@Override
public void mouseExited(MouseEvent e) {

status.setText("Mouse has left giraffe");
// status.setBounds(e.getX(), e.getY(), 5, 6);

}

}

class windowmousehandler extends MouseAdapter implements MouseListener, MouseMotionListener {
public void mouseMoved(MouseEvent event) {
// TODO Auto-generated method stub
status.setBounds(event.getX(), event.getY(), 50, 60); //Makes JLabel follow mouse

}

public void mouseEntered(MouseEvent event) {

status.setText("Mouse is on window");

}

@Override
public void mouseExited(MouseEvent event) {

status.setText("Mouse has left window");
// status.setBounds(e.getX(), e.getY(), 5, 6);

}
}
}

public class Icallsscce {
public static void main(String [] args) {
SSCCE object = new SSCCE();
}
}

最佳答案

Almost every problem can be demonstrated in 10-50 lines of code if you truly understand what you are trying to achieve.

没有。组件就是组件,您不能将组件拆分为两个。

您有几个选择:

  1. 如果将 MouseListener 添加到 GlassPane,则需要使用事件中的鼠标点并使用 Container.getComponentAt(...) 来确定鼠标指向哪个组件目前已经结束。请注意,GlassPane 覆盖了整个框架,因此鼠标点是相对于包含边框的框架的,因此您首先需要使用 SwingUtilities.convertPoint(...) 方法来转换鼠标点到相对于您添加标签的面板的点。

  2. 如果您向每个标签添加单独的 MouseListener,则鼠标点将相对于该标签,因此当您移动弹出窗口时,您需要将标签的“x”值添加到玻璃 Pane 上的点标签。我认为这种方法更容易。请注意,通过这种方法,您可以共享同一个监听器,只需使用 MouseEvent 的 getSource() 方法即可获取标签。

编辑:

how I can add the getSource() method to my mouseevent?

10天前已经回答过这个问题:Rollover on JLabel which consists of image within grid layout? .

当你甚至不看代码时,它会变得很烦人,因为它不是一个完整的程序。我们不是来为您编写代码的。当有人花时间回答问题时,您至少可以花时间理解建议。

1) it is extremely far from the mouse,

我已经在这个问题中回答过这个问题了。我说过您需要添加标签的“x”值..。您需要执行此操作,因为鼠标事件是相对于添加监听器的组件生成的。

因此,对于长颈鹿标签,x 的值将从 0 开始,并随着鼠标向右移动而增加。但是,长颈鹿从玻璃 Pane 的中心开始,因此您不能使用 0 作为弹出标签的位置。您还需要包含长颈鹿的 x 位置。

所以基本代码应该是:

popupLabel.setLocation(e.getX() + giraffe.getLocation().x, e.getY());

当然,您应该使用 MouseEvent 的“源”对象(而不是长颈鹿标签),如上面的答案所示。当您使用源对象时,代码将适用于两个标签。

2) it does not show the full JLabel

因为您在 setBounds() 方法中使用“魔数(Magic Number)”。为什么使用“60”这样的数字作为标签的宽度?不要对数字进行硬编码。相反,当您更改标签的文本时,您可以执行以下操作:

label.setText(....);
label.setSize(label.getPreferredSize());

现在标签将具有正确的宽度/高度。然后,当您在玻璃板上移动标签时,只需使用 setLocation(...) 方法来定位标签。

It does not change after one exit/enter

您要实现一个 MouseListener 和一个 MouseMotionListener,因此您需要将这两个监听器添加到每个组件。所以你需要:

长颈鹿.addMouseListener(...);长颈鹿.addMouseMotionListener(...);window.addMouseListener(...);window.addMouseMotionListener(...);

再次记住,您只需要一个类来实现 MouseListener 和 MouseMotionListener,如 10 天前演示的那样。可以将监听器的相同实例添加到这两个组件中,这将有助于清理代码。

关于java - 我可以将玻璃面板分成两部分,并为每个面板添加一个单独的鼠标监听器吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32292139/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com