Mercurial > cgi-bin > hgweb.cgi > ClipMan
view src/name/blackcap/clipman/Osdep.kt.mac.osdep @ 49:bb80148e2cb3
Log exit from File? Quit.
author | David Barts <n5jrn@me.com> |
---|---|
date | Sun, 12 Apr 2020 17:03:11 -0700 |
parents | 19d9da731c43 |
children |
line wrap: on
line source
/* * OS-dependent code, Mac version. */ package name.blackcap.clipman import com.apple.eawt.AboutHandler import com.apple.eawt.PreferencesHandler import com.apple.eawt.QuitStrategy fun setMacMenus() { com.apple.eawt.Application.getApplication().run { setAboutHandler(AboutHandler({ showAboutDialog() })) setPreferencesHandler( PreferencesHandler({ Application.settingsDialog.setVisible(true) })) setQuitStrategy(QuitStrategy.CLOSE_ALL_WINDOWS) } }