本文整理汇总了Java中com.apple.eawt.QuitResponse类的典型用法代码示例。如果您正苦于以下问题:Java QuitResponse类的具体用法?Java QuitResponse怎么用?Java QuitResponse使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
QuitResponse类属于com.apple.eawt包,在下文中一共展示了QuitResponse类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: handleQuitRequestWith
import com.apple.eawt.QuitResponse; //导入依赖的package包/类
/**
* Handle quit action
* @param qe quit event
* @param response quit response
*/
@Override
public void handleQuitRequestWith(final QuitEvent qe, final QuitResponse response) {
logEDT("handleQuitRequestWith");
/* This is important for cross-platform development -- have a universal quit
* routine that chooses whether or not to quit, so the functionality is identical
* on all platforms. This example simply cancels the AppleEvent-based quit and
* defers to that universal method. */
invokeLaterUsingApplicationEDT(new Runnable() {
@Override
public void run() {
logEDT("handleQuitRequestWith");
/*
* the Quit action must call response.cancelQuit() or response.performQuit()
* Note: QuitResponse is thread safe and methods can be called after handleQuitRequestWith() returns.
*/
_registrar.getQuitAction().actionPerformed(new ActionEvent(response, 0, null));
}
});
}
示例2: AppleSupportImpl
import com.apple.eawt.QuitResponse; //导入依赖的package包/类
public AppleSupportImpl() {
application = Application.getApplication();
application.setAboutHandler(new AboutHandler() {
@Override
public void handleAbout(AboutEvent aboutEvent) {
JOptionPane.showMessageDialog(null, "LedMatrix control\n(c) The Cave, 2017\nhttps://www.thecave.cz", "About", JOptionPane.INFORMATION_MESSAGE);
}
});
application.setQuitHandler(new QuitHandler() {
@Override
public void handleQuitRequestWith(QuitEvent quitEvent, final QuitResponse quitResponse) {
if (quitResponder == null) {
quitResponse.performQuit();
return;
}
quitResponder.canQuit(new QuitResponderDecision() {
@Override
public void canQuit() {
quitResponse.performQuit();
}
@Override
public void dontQuit() {
quitResponse.cancelQuit();
}
});
}
});
try {
Image img = IconHelper.readIcon();
if (img != null)
application.setDockIconImage(img);
} catch (Exception ignored) {
}
}
示例3: OSXSetup
import com.apple.eawt.QuitResponse; //导入依赖的package包/类
public void OSXSetup() {
Application app = Application.getApplication();
app.setAboutHandler(new AboutHandler() {
public void handleAbout(AboutEvent ae) {
about();
}
});
app.setPreferencesHandler(new PreferencesHandler() {
public void handlePreferences(PreferencesEvent pe) {
PreferencesDialog.showPreferences(frame);
//EditPreferences editPreferences = new EditPreferences(frame, async);
//editPreferences.preferences();
tree.setExpandibleIcons(!IBioSimPreferences.INSTANCE.isPlusMinusIconsEnabled());
if (sbolDocument != null) {
sbolDocument.setDefaultURIprefix(SBOLEditorPreferences.INSTANCE.getUserInfo().getURI().toString());
}
}
});
app.setQuitHandler(new QuitHandler() {
public void handleQuitRequestWith(QuitEvent event, QuitResponse response) {
exit();
}
});
}
示例4: handleQuitRequestWith
import com.apple.eawt.QuitResponse; //导入依赖的package包/类
@Override
public void handleQuitRequestWith(final QuitEvent arg0, final QuitResponse arg1) {
if (shutdownFrame != null) {
shutdownFrame.shutdown();
} else {
System.exit(0);
}
}
示例5: handleQuitRequestWith
import com.apple.eawt.QuitResponse; //导入依赖的package包/类
@Override
public void handleQuitRequestWith(final QuitEvent qe, final QuitResponse qr) {
new Thread(new Runnable() {
@Override
public void run() {
exit();
qr.cancelQuit();
}
}).start();
}
示例6: handleQuitRequestWith
import com.apple.eawt.QuitResponse; //导入依赖的package包/类
@Override
public void handleQuitRequestWith(QuitEvent evt, QuitResponse resp) {
if (parentFrame == null) {
return;
}
if (parentFrame.quit()) {
resp.performQuit();
} else {
resp.cancelQuit();
}
}
示例7: handleQuitRequestWith
import com.apple.eawt.QuitResponse; //导入依赖的package包/类
@Override
public void handleQuitRequestWith(QuitEvent event, QuitResponse response) {
if (!UIUtilities.inModalState()) {
mAllowQuitIfNoSignificantWindowsOpen = false;
if (closeFrames(true)) {
if (closeFrames(false)) {
saveState();
response.performQuit();
return;
}
}
mAllowQuitIfNoSignificantWindowsOpen = true;
}
response.cancelQuit();
}
示例8: handleQuitRequestWith
import com.apple.eawt.QuitResponse; //导入依赖的package包/类
@Override
public void handleQuitRequestWith(AppEvent.QuitEvent e, QuitResponse response) {
handleQuit();
}
示例9: handleQuitRequestWith
import com.apple.eawt.QuitResponse; //导入依赖的package包/类
@Override
public void handleQuitRequestWith(QuitEvent e, QuitResponse response) {
mainWindow.shutdownWindow();
}
示例10: main
import com.apple.eawt.QuitResponse; //导入依赖的package包/类
public static void main( String[] args )
{
try {
// These four lines duplicate ApplicationUI.main()
String prop = System .getProperty( "user.dir" );
File workingDir = new File( prop );
URL codebase = workingDir .toURI() .toURL();
final ApplicationUI ui = ApplicationUI .initialize( args, codebase );
// Now hook it up to the Finder events
Application appl = Application .getApplication();
appl .setOpenFileHandler( new OpenFilesHandler()
{
public void openFiles( OpenFilesEvent ofe )
{
for (Iterator iterator = ofe .getFiles() .iterator(); iterator.hasNext(); ) {
File file = (File) iterator.next();
ui .openFile( file );
}
}
} );
appl .setAboutHandler( new AboutHandler()
{
public void handleAbout( AboutEvent about )
{
ui .about();
}
} );
appl .setQuitHandler( new QuitHandler()
{
public void handleQuitRequestWith( QuitEvent qe, QuitResponse qr )
{
if ( ui .quit() )
qr .performQuit();
else
qr .cancelQuit();
}
} );
} catch ( Throwable e ) {
Logger .getLogger( "com.vzome.platform.mac.Adapter" )
.log( Level.SEVERE, "problem in main()", e );
}
}
示例11: handleQuitRequestWith
import com.apple.eawt.QuitResponse; //导入依赖的package包/类
public void handleQuitRequestWith(AppEvent.QuitEvent quitEvent, QuitResponse quitResponse) {
if (callbacks != null) {
callbacks.onQuit();
}
}
示例12: handleQuitRequestWith
import com.apple.eawt.QuitResponse; //导入依赖的package包/类
@Override
public void handleQuitRequestWith(final QuitEvent e, final QuitResponse r) {
eventService.publish(new AppQuitEvent());
r.cancelQuit();
}