display = Display.getDefault();
shell = new Shell(display, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL);
//Shell shell = window.getShell();
NSWindow nswindow = shell.view.window();
nswindow.setCollectionBehavior(0);
nswindow.setShowsResizeIndicator(false);
setDialogShell(shell);
getDialogShell().setLayout( new FormLayout());
getDialogShell().setFullScreen(false);
これは私のために働いた。
*****編集**** * ** * ** * ** * ** _ _ _
上記のコードは、認識された「NSWindow」クラスがないため、Windowsでは実行されていません。ウィンドウとマックの両方に共通のコードを使用するには、以下のコードを使用してください。
public static boolean isWindows() {
return (System.getProperty("os.name").toLowerCase().indexOf("win") >= 0);
}
/// OSがウィンドウかどうかを確認し、次のようにコードを変更します
display = Display.getDefault();
shell = new Shell(display, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL);
//Shell shell = window.getShell();
if(!isWindows()){
Field field = Control.class.getDeclaredField("view");
Object /*NSView*/ view = field.get(shell);
if (view != null)
{
Class<?> c = Class.forName("org.eclipse.swt.internal.cocoa.NSView");
Object /*NSWindow*/ window = c.getDeclaredMethod("window").invoke(view);
c = Class.forName("org.eclipse.swt.internal.cocoa.NSWindow");
Method setCollectionBehavior = c.getDeclaredMethod(
"setCollectionBehavior", /*JVM.is64bit() ?*/ long.class /*: int.class*/);
setCollectionBehavior.invoke(window,0);
}
// NSWindow nswindow = shell.view.window();
// nswindow.setCollectionBehavior(0) ;
// nswindow.setShowsResizeIndicator(false);
}
setDialogShell(shell);
getDialogShell().setLayout( new FormLayout());
getDialogShell().setFullScreen(false);
getDialogShell().layout();
getDialogShell().pack();