4

この質問では、JFrameがWindowsタスクバーに拡張される既知のバグについて説明します。 回答はバグレポート(さまざまな重複があります)にリンクしており、回避策を提供します。この問題はJDialogにも当てはまることがわかりました。JFrameの回避策は適用されません。JDialogをWindows上で動作させるための同様の回避策はありますか?

コード例:

import javax.swing.*;

public class Demo extends JDialog {
    public Demo() {
        setSize(250,12500);
        setVisible(true);
    }
    public static void main(String[] args) {
        new Demo();
    }
}

編集:
これはJDKでは修正されないようです。 このバグレポートは、「開発者がウィンドウを画面上に完全に表示したままにしたい場合は、[以下のソリューションのように]画面のはめ込みを確認し、コンポーネントを別の方法で再レイアウトすることを検討する必要があります。 pack()を呼び出した後、ウィンドウのサイズを手動で変更するか、画面インセット対応のレイアウトマネージャーを使用します[BorderLayoutやGridBagLayoutなどのより一般的なものとは異なります]

4

2 に答える 2

5

これは基本的に、指定されたデバイスの境界内にダイアログを移動し、左端と下端が指定されたデバイスの境界内に収まるように縮小することにより、ダイアログが指定された画面に「収まる」ことを確認します。

これは、デバイスの境界とインセットを調べて、ダイアログが存在できる「安全な」領域を計算します。

public class TestScreenSize {

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

    public TestScreenSize() {
        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) {
                }

                Test test = new Test();
                test.setLayout(new BorderLayout());
                test.setVisible(true);
                System.exit(0);
            }
        });
    }

    public class Test extends JDialog {

        public Test() {
            setModal(true);
            setLocation(0, 0);
            setSize(2000, 2000);
        }

        @Override
        public void setBounds(int x, int y, int width, int height) {
            Rectangle bounds = getSafeScreenBounds(new Point(x, y));
            if (x < bounds.x) {
                x = bounds.x;
            }
            if (y < bounds.y) {
                y = bounds.y;
            }
            if (width > bounds.width) {
                width = (bounds.x + bounds.width) - x;
            }
            if (height > bounds.height) {
                height = (bounds.y + bounds.height) - y;
            }
            super.setBounds(x, y, width, height);
        }

    }

    public static Rectangle getSafeScreenBounds(Point pos) {

        Rectangle bounds = getScreenBoundsAt(pos);
        Insets insets = getScreenInsetsAt(pos);

        bounds.x += insets.left;
        bounds.y += insets.top;
        bounds.width -= (insets.left + insets.right);
        bounds.height -= (insets.top + insets.bottom);

        return bounds;

    }

    public static Insets getScreenInsetsAt(Point pos) {
        GraphicsDevice gd = getGraphicsDeviceAt(pos);
        Insets insets = null;
        if (gd != null) {
            insets = Toolkit.getDefaultToolkit().getScreenInsets(gd.getDefaultConfiguration());
        }
        return insets;
    }

    public static Rectangle getScreenBoundsAt(Point pos) {
        GraphicsDevice gd = getGraphicsDeviceAt(pos);
        Rectangle bounds = null;
        if (gd != null) {
            bounds = gd.getDefaultConfiguration().getBounds();
        }
        return bounds;
    }

    public static GraphicsDevice getGraphicsDeviceAt(Point pos) {

        GraphicsDevice device = null;

        GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
        GraphicsDevice lstGDs[] = ge.getScreenDevices();

        ArrayList<GraphicsDevice> lstDevices = new ArrayList<GraphicsDevice>(lstGDs.length);

        for (GraphicsDevice gd : lstGDs) {

            GraphicsConfiguration gc = gd.getDefaultConfiguration();
            Rectangle screenBounds = gc.getBounds();

            if (screenBounds.contains(pos)) {

                lstDevices.add(gd);

            }

        }

        if (lstDevices.size() > 0) {
            device = lstDevices.get(0);
        } else {
            device = ge.getDefaultScreenDevice();
        }

        return device;

    }
}
于 2012-11-14T01:04:14.570 に答える
1

以下は魔法ではありませんが、max(a,b) のように単純です。

import java.awt.Dimension;
import java.awt.Frame;
import java.awt.Toolkit;

import javax.swing.JDialog;

public class Demo extends JDialog {
   public Demo() {
      super((Frame)null, "Demo" );
      setDefaultCloseOperation( DISPOSE_ON_CLOSE );

      Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
      int width  = Math.min(    250, screenSize.width );
      int height = Math.min( 12_500, screenSize.height );
      pack();
      setSize( width, height );
      setVisible( true );
   }
   public static void main( String[] args ) {
      new Demo();
   }
}
于 2012-11-13T22:26:37.077 に答える