Java JFrame toggleOsXFullScreen(JFrame frame)

Here you can find the source of toggleOsXFullScreen(JFrame frame)

Description

toggle Os X Full Screen

License

Open Source License

Declaration

private static void toggleOsXFullScreen(JFrame frame) 

Method Source Code

//package com.java2s;
/*/* w  w w . jav  a 2s . c  o m*/
 *  Copyright (C) 2012 lee
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.awt.Window;

import java.lang.reflect.Method;

import javax.swing.JFrame;

public class Main {
    private static void toggleOsXFullScreen(JFrame frame) {
        try {
            Class<?> app = Class.forName("com.apple.eawt.Application");
            Method m = app
                    .getDeclaredMethod("getApplication", new Class[0]);
            Object application = m.invoke(null, new Object[0]);
            m = app.getDeclaredMethod("requestToggleFullScreen",
                    Window.class);
            m.invoke(application, frame);
        } catch (Exception ex) {
            // Catch all exceptions.
            // Mainly because the Class.forName is for OS X Only.
        }

    }
}

Related

  1. terminarPrograma(JFrame f)
  2. toFront(final JFrame window)
  3. toFront(JFrame frame)
  4. toFrontHack(JFrame theParent, JFrame theFrame)
  5. toggleFrame(JFrame frame)
  6. unpackArchive(URL url, File targetDir, JFrame frame, ProgressMonitor progressMonitor)
  7. waitFor(JFrame popup)
  8. wrapPanelInFrame(JFrame frame, JPanel panel, String caption, int width, int height)
  9. write(JFrame frame, String ext, String desc, String text)