annotate src/name/blackcap/exifwasher/Osdep.kt.mac.osdep @ 4:ba5dc14652da

Commit correct Osdep files.
author David Barts <n5jrn@me.com>
date Wed, 08 Apr 2020 21:31:30 -0700
parents
children aafc9c127c7b
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.Application
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
8 import com.apple.eawt.PreferencesHandler
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
9
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
10 fun setMacMenus() {
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
11 Application.getApplication().run {
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
12 setAboutHandler(AboutHandler { showAboutDialog() })
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
13 setPreferencesHandler(
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
14 PreferencesHandler { Application.settingsDialog.setVisible(true) })
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
15 }
ba5dc14652da Commit correct Osdep files.
David Barts <n5jrn@me.com>
parents:
diff changeset
16 }