Mercurial > cgi-bin > hgweb.cgi > JpegWasher
annotate 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 |
rev | line source |
---|---|
4 | 1 /* |
2 * OS-dependent code, Mac version. | |
3 */ | |
4 package name.blackcap.exifwasher | |
5 | |
6 import com.apple.eawt.AboutHandler | |
7 import com.apple.eawt.Application | |
8 import com.apple.eawt.PreferencesHandler | |
9 | |
10 fun setMacMenus() { | |
11 Application.getApplication().run { | |
12 setAboutHandler(AboutHandler { showAboutDialog() }) | |
13 setPreferencesHandler( | |
14 PreferencesHandler { Application.settingsDialog.setVisible(true) }) | |
15 } | |
16 } |