annotate src/name/blackcap/exifwasher/Osdep.kt.mac.osdep @ 6:aafc9c127c7b

Fix many bugs; get settings (apparently) working.
author David Barts <n5jrn@me.com>
date Thu, 09 Apr 2020 22:29:48 -0700
parents ba5dc14652da
children 0a106e9b91b4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
1 /*
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
2 * OS-dependent code, Mac version.
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
3 */
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
4 package name.blackcap.exifwasher
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
5
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
6 import com.apple.eawt.AboutHandler
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
7 import com.apple.eawt.PreferencesHandler
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
8
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
9 fun setMacMenus() {
6
aafc9c127c7b Fix many bugs; get settings (apparently) working.
David Barts <n5jrn@me.com>
parents: 4
diff changeset
10 com.apple.eawt.Application.getApplication().run {
4
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
11 setAboutHandler(AboutHandler { showAboutDialog() })
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
12 setPreferencesHandler(
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
13 PreferencesHandler { Application.settingsDialog.setVisible(true) })
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
14 }
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
15 }