![JAR search and dependency download from the Maven repository](/logo.png)
org.datacleaner.macos.MacOSManager Maven / Gradle / Ivy
/**
* DataCleaner (community edition)
* Copyright (C) 2014 Free Software Foundation, Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* 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 Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
package org.datacleaner.macos;
import javax.inject.Provider;
import org.apache.commons.vfs2.FileObject;
import org.apache.commons.vfs2.FileSystemException;
import org.datacleaner.actions.OpenAnalysisJobActionListener;
import org.datacleaner.bootstrap.WindowContext;
import org.datacleaner.util.VFSUtils;
import org.datacleaner.windows.AboutDialog;
import org.datacleaner.windows.OptionsDialog;
import org.simplericity.macify.eawt.Application;
import org.simplericity.macify.eawt.ApplicationEvent;
import org.simplericity.macify.eawt.ApplicationListener;
import org.simplericity.macify.eawt.DefaultApplication;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.inject.Inject;
/**
*
* @author Kasper Sørensen
*/
public class MacOSManager {
public class DCApplicationListener implements ApplicationListener {
@Override
public void handleAbout(final ApplicationEvent event) {
final AboutDialog dialog = new AboutDialog(_windowContext);
dialog.setVisible(true);
event.setHandled(true);
}
@Override
public void handleOpenFile(final ApplicationEvent event) {
final String filename = event.getFilename();
final OpenAnalysisJobActionListener actionListener = _openAnalysisJobActionListenerProvider.get();
try {
final FileObject file = VFSUtils.getFileSystemManager().resolveFile(filename);
actionListener.openFile(file);
} catch (final FileSystemException e) {
throw new IllegalArgumentException("Could not resolve filename: " + filename, e);
}
}
@Override
public void handlePreferences(final ApplicationEvent event) {
final OptionsDialog dialog = _optionsDialogProvider.get();
dialog.setVisible(true);
}
@Override
public void handleQuit(final ApplicationEvent event) {
_windowContext.exit();
}
@Override
public void handleOpenApplication(final ApplicationEvent event) {
}
@Override
public void handlePrintFile(final ApplicationEvent event) {
}
@Override
public void handleReOpenApplication(final ApplicationEvent event) {
}
}
private final Logger logger = LoggerFactory.getLogger(getClass());
private final WindowContext _windowContext;
private final Provider _openAnalysisJobActionListenerProvider;
private final Provider _optionsDialogProvider;
@Inject
protected MacOSManager(final WindowContext windowContext,
final Provider openAnalysisJobActionListenerProvider,
final Provider optionsDialogProvider) {
_windowContext = windowContext;
_openAnalysisJobActionListenerProvider = openAnalysisJobActionListenerProvider;
_optionsDialogProvider = optionsDialogProvider;
}
public void init() {
final Application app = new DefaultApplication();
if (!app.isMac()) {
logger.debug("Omitting Mac OS initialization, since operating system is not Mac OS");
return;
}
System.setProperty("apple.laf.useScreenMenuBar", "true");
app.addAboutMenuItem();
app.setEnabledAboutMenu(true);
app.addPreferencesMenuItem();
app.setEnabledPreferencesMenu(true);
app.addApplicationListener(new DCApplicationListener());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy