Mercurial > cgi-bin > hgweb.cgi > JpegWasher
view src/name/blackcap/exifwasher/Osdep.kt.mac.osdep @ 5:dc1f4359659d
Got it compiling.
author | David Barts <n5jrn@me.com> |
---|---|
date | Thu, 09 Apr 2020 18:20:34 -0700 |
parents | ba5dc14652da |
children | aafc9c127c7b |
line wrap: on
line source
/* * OS-dependent code, Mac version. */ package name.blackcap.exifwasher import com.apple.eawt.AboutHandler import com.apple.eawt.Application import com.apple.eawt.PreferencesHandler fun setMacMenus() { Application.getApplication().run { setAboutHandler(AboutHandler { showAboutDialog() }) setPreferencesHandler( PreferencesHandler { Application.settingsDialog.setVisible(true) }) } }