src/share/classes/sun/swing/WindowsPlacesBar.java

Print this page


   1 /*
   2  * Copyright (c) 2003, 2013, 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


  30 import java.beans.PropertyChangeListener;
  31 import java.io.*;
  32 import java.security.AccessController;
  33 import java.security.PrivilegedAction;
  34 
  35 import javax.swing.*;
  36 import javax.swing.border.*;
  37 import javax.swing.filechooser.*;
  38 
  39 import sun.awt.shell.*;
  40 import sun.awt.OSInfo;
  41 
  42 /**
  43  * <b>WARNING:</b> This class is an implementation detail and is only
  44  * public so that it can be used by two packages. You should NOT consider
  45  * this public API.
  46  * <p>
  47  *
  48  * @author Leif Samuelsson
  49  */

  50 public class WindowsPlacesBar extends JToolBar
  51                               implements ActionListener, PropertyChangeListener {
  52     JFileChooser fc;
  53     JToggleButton[] buttons;
  54     ButtonGroup buttonGroup;
  55     File[] files;
  56     final Dimension buttonSize;
  57 
  58     public WindowsPlacesBar(JFileChooser fc, boolean isXPStyle) {
  59         super(JToolBar.VERTICAL);
  60         this.fc = fc;
  61         setFloatable(false);
  62         putClientProperty("JToolBar.isRollover", Boolean.TRUE);
  63 
  64         boolean isXPPlatform = (OSInfo.getOSType() == OSInfo.OSType.WINDOWS &&
  65                 OSInfo.getWindowsVersion().compareTo(OSInfo.WINDOWS_XP) >= 0);
  66 
  67         if (isXPStyle) {
  68             buttonSize = new Dimension(83, 69);
  69             putClientProperty("XPStyle.subAppName", "placesbar");


   1 /*
   2  * Copyright (c) 2003, 2014, 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


  30 import java.beans.PropertyChangeListener;
  31 import java.io.*;
  32 import java.security.AccessController;
  33 import java.security.PrivilegedAction;
  34 
  35 import javax.swing.*;
  36 import javax.swing.border.*;
  37 import javax.swing.filechooser.*;
  38 
  39 import sun.awt.shell.*;
  40 import sun.awt.OSInfo;
  41 
  42 /**
  43  * <b>WARNING:</b> This class is an implementation detail and is only
  44  * public so that it can be used by two packages. You should NOT consider
  45  * this public API.
  46  * <p>
  47  *
  48  * @author Leif Samuelsson
  49  */
  50 @SuppressWarnings("serial") // JDK-implementation class
  51 public class WindowsPlacesBar extends JToolBar
  52                               implements ActionListener, PropertyChangeListener {
  53     JFileChooser fc;
  54     JToggleButton[] buttons;
  55     ButtonGroup buttonGroup;
  56     File[] files;
  57     final Dimension buttonSize;
  58 
  59     public WindowsPlacesBar(JFileChooser fc, boolean isXPStyle) {
  60         super(JToolBar.VERTICAL);
  61         this.fc = fc;
  62         setFloatable(false);
  63         putClientProperty("JToolBar.isRollover", Boolean.TRUE);
  64 
  65         boolean isXPPlatform = (OSInfo.getOSType() == OSInfo.OSType.WINDOWS &&
  66                 OSInfo.getWindowsVersion().compareTo(OSInfo.WINDOWS_XP) >= 0);
  67 
  68         if (isXPStyle) {
  69             buttonSize = new Dimension(83, 69);
  70             putClientProperty("XPStyle.subAppName", "placesbar");