1

私はJaveSwingを使用しており、簡略化された階層はJFrame->JPanel->JLabelとして理解できます。

これで、JLabelをJPanelに追加するオプションがあります。

  1. panel.add(label);
  2. panel.setLayout(new BorderLayout()); panel.add(label、BorderLayout.NORTH);

これは私が両方の場合に行っている一般的な構成です

panel.setOpaque(false);
panel.setBorder(BorderFactory.createLineBorder(Color.yellow));

他のすべてのコードを変更せずに保持していても、次のメソッド呼び出しでは非常に異なる結果が得られます。

    Point location = getLocationOnFrame(label);

このメソッドを呼び出して、JFrameを基準にしたJLabelの場所を特定します。

    public Point getLocationOnFrame (JLabel label) {
        if (label == null) return null;

        try {
            Point location = label.getLocationOnScreen();
            System.out.println(location);
            Point frameOffset = mainFrame.getLocationOnScreen();
            System.out.println(frameOffset);
            location.translate(-frameOffset.x, -frameOffset.y);
            return location;
        } catch (IllegalComponentStateException e) {}

        return null;
    }

これらは、視覚的には同じ場所にラベルが表示されている場合でも、System.out.println()の結果です。

java.awt.Point[x=578,y=305]
java.awt.Point[x=0,y=0]

java.awt.Point[x=224,y=300]
java.awt.Point[x=0,y=0]

2番目のケースでは、番号はJLabel自体ではなく、親JPanelの左上隅からのものであるように思われます。

基本的に、私は2番目のケースのコードを使用して、1番目のケースから数値を取得しようとしています。

4

1 に答える 1

3

なぜあなたが異なる結果を得るのかについては、私にはまったくわかりません。

しかし、私はあなたがあなた自身のためにより多くの仕事をしていると信じています...

Point loc = label.getLocation();
Window win = SwingUtilities.getWindowAncestor(label);
Point wrPos = SwingUtilities.convertPoint(label, loc, win);

ラベルの座標をウィンドウの座標空間に変換します。

フレームの位置はフレームの左上隅です(いいえ、実際にはそうです;))が、ラベルcontentPaneはフレームの境界内でオフセットされたフレーム内に存在するため、何をしようとしているかによって異なります。 、contentPaneフレームの代わりに使用した方がよい場合があります;)

これは私がロジックをテストするために使用した簡単な例です;)

public class TestLocation {

    public static void main(String[] args) {
        new TestLocation();
    }

    public TestLocation() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException ex) {
                } catch (InstantiationException ex) {
                } catch (IllegalAccessException ex) {
                } catch (UnsupportedLookAndFeelException ex) {
                }

                JFrame frame = new JFrame();
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setLayout(new BorderLayout());
                frame.add(new LocationPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class LocationPane extends JPanel {

        private JLabel label;

        public LocationPane() {
            setLayout(new GridBagLayout());
            label = new JLabel("A Label");
            add(label);
        }

        @Override
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2d = (Graphics2D) g.create();

            // While this works, really, don't do this, in paint methods
            // it's expensive and will slow down your system ;)
            Point loc = label.getLocation();
            Point pos = label.getLocationOnScreen();
            Window win = SwingUtilities.getWindowAncestor(this);
            Point wPos = win.getLocationOnScreen();
            Point wLoc = win.getLocation();

            Point rPos = SwingUtilities.convertPoint(label, label.getLocation(), win);
            JRootPane rootPane = SwingUtilities.getRootPane(this);
            Point cPos = SwingUtilities.convertPoint(label, loc, rootPane.getContentPane());
            Point wrPos = SwingUtilities.convertPoint(label, loc, win);

            FontMetrics fm = g2d.getFontMetrics();
            int rowHeight = fm.getHeight();

            String[] messages = new String[]{
                "Label.location = " + loc.x + "x" + loc.y,
//                "Label.locationOnScreen = " + pos.x + "x" + pos.y,
//                "Window.location = " + wLoc.x + "x" + wLoc.y,
//                "Window.locationOnScreen = " + wPos.x + "x" + wPos.y,
                "RelativeTo.Window = " + wrPos.x + "x" + wrPos.y,
                "RelativeTo.RootPane = " + rPos.x + "x" + rPos.y,
                "RelativeTo.ContentPane = " + cPos.x + "x" + cPos.y,
            };

            int y = 0;
            for (String msg : messages) {
                g2d.drawString(msg, 0, y + fm.getAscent());
                y += rowHeight;
            }

        }

    }

}
于 2012-11-09T05:52:30.180 に答える