view src/name/blackcap/clipman/Osdep.kt.mac.osdep @ 41:33fbe3a78d84

Got the settings stuff compiling (untested).
author David Barts <n5jrn@me.com>
date Sat, 08 Feb 2020 22:10:01 -0700
parents
children 19d9da731c43
line wrap: on
line source

/*
 * OS-dependent code, Mac version.
 */
package name.blackcap.clipman

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({ settingsDialog.setVisible(true) }))
    }
}