< prev index next >

src/java.desktop/unix/classes/sun/awt/X11/XToolkit.java

Print this page


   1 /*
   2  * Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


1111     }
1112 
1113     private static Boolean sunAwtDisableGtkFileDialogs = null;
1114 
1115     /**
1116      * Returns the value of "sun.awt.disableGtkFileDialogs" property. Default
1117      * value is {@code false}.
1118      */
1119     public static synchronized boolean getSunAwtDisableGtkFileDialogs() {
1120         if (sunAwtDisableGtkFileDialogs == null) {
1121             sunAwtDisableGtkFileDialogs = AccessController.doPrivileged(
1122                                               new GetBooleanAction("sun.awt.disableGtkFileDialogs"));
1123         }
1124         return sunAwtDisableGtkFileDialogs.booleanValue();
1125     }
1126 
1127     @Override
1128     public FileDialogPeer createFileDialog(FileDialog target) {
1129         FileDialogPeer peer = null;
1130         // The current GtkFileChooser is available from GTK+ 2.4
1131         if (!getSunAwtDisableGtkFileDialogs() && checkGtkVersion(2, 4, 0)) {

1132             peer = new GtkFileDialogPeer(target);
1133         } else {
1134             peer = new XFileDialogPeer(target);
1135         }
1136         targetCreatedPeer(target, peer);
1137         return peer;
1138     }
1139 
1140     @Override
1141     public MenuBarPeer createMenuBar(MenuBar target) {
1142         XMenuBarPeer peer = new XMenuBarPeer(target);
1143         targetCreatedPeer(target, peer);
1144         return peer;
1145     }
1146 
1147     @Override
1148     public MenuPeer createMenu(Menu target) {
1149         XMenuPeer peer = new XMenuPeer(target);
1150         //vb157120: looks like we don't need to map menu items
1151         //in new menus implementation


   1 /*
   2  * Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


1111     }
1112 
1113     private static Boolean sunAwtDisableGtkFileDialogs = null;
1114 
1115     /**
1116      * Returns the value of "sun.awt.disableGtkFileDialogs" property. Default
1117      * value is {@code false}.
1118      */
1119     public static synchronized boolean getSunAwtDisableGtkFileDialogs() {
1120         if (sunAwtDisableGtkFileDialogs == null) {
1121             sunAwtDisableGtkFileDialogs = AccessController.doPrivileged(
1122                                               new GetBooleanAction("sun.awt.disableGtkFileDialogs"));
1123         }
1124         return sunAwtDisableGtkFileDialogs.booleanValue();
1125     }
1126 
1127     @Override
1128     public FileDialogPeer createFileDialog(FileDialog target) {
1129         FileDialogPeer peer = null;
1130         // The current GtkFileChooser is available from GTK+ 2.4
1131         if (!getSunAwtDisableGtkFileDialogs() &&
1132                       (checkGtkVersion(2, 4, 0) || checkGtkVersion(3, 0, 0))) {
1133             peer = new GtkFileDialogPeer(target);
1134         } else {
1135             peer = new XFileDialogPeer(target);
1136         }
1137         targetCreatedPeer(target, peer);
1138         return peer;
1139     }
1140 
1141     @Override
1142     public MenuBarPeer createMenuBar(MenuBar target) {
1143         XMenuBarPeer peer = new XMenuBarPeer(target);
1144         targetCreatedPeer(target, peer);
1145         return peer;
1146     }
1147 
1148     @Override
1149     public MenuPeer createMenu(Menu target) {
1150         XMenuPeer peer = new XMenuPeer(target);
1151         //vb157120: looks like we don't need to map menu items
1152         //in new menus implementation


< prev index next >