/* * MacGUI.java * Copyright 2006 (C) Tod Milam <twmilam@yahoo.com> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Created on January 18, 2006 */ package pcgen.gui2.plaf; import com.apple.eawt.Application; import pcgen.gui2.plaf.osx.OSXAboutHandler; import pcgen.gui2.plaf.osx.OSXPreferencesHandler; import pcgen.gui2.plaf.osx.OSXQuitHandler; /** * {@code MacGUI} initializes Mac-specific GUI elements. */ public final class MacGUIHandler { private static MacGUIHandler myObj = null; private static Application theApp = null; private MacGUIHandler() { } /** * Initialize the Mac-specific properties. * Create an ApplicationAdapter to listen for Help, Prefs, and Quit. */ public static void initialize() { if (myObj != null) { // we have already initialized. return; } // set up the Application menu myObj = new MacGUIHandler(); theApp = Application.getApplication(); theApp.setAboutHandler(new OSXAboutHandler()); theApp.setPreferencesHandler(new OSXPreferencesHandler()); theApp.setQuitHandler(new OSXQuitHandler()); } // end static initialize method } // end class MacGUI