Mercurial > cgi-bin > hgweb.cgi > ClipMan
view src/name/blackcap/clipman/Osdep.kt.mac.osdep @ 56:22725d4d7849
An attempt to get it to troff-ize styled text.
author | David Barts <n5jrn@me.com> |
---|---|
date | Sat, 19 Mar 2022 23:04:40 -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) } }