On 10/23/2016 05:40 PM, Leif Halvard Silli wrote:

«Here is what needs to be done
<http://stackoverflow.com/questions/1575190/double-click-document-file-in-mac-os-x-to-open-java-application#24688442>»,
(that is: for the Java APIs which XMLmind XML Editor (I understand) is
unable to support). Have a good evening!


Please be assured that we did the "right thing" to make it work. But sometimes, even when you do the right thing, it still does not work. The stackoverflow topic you sent us more or less proves that.

The stackoverflow topic describes what needs to be done as "Part One" and "Part Two".

* About "Part One") XMLmind XML Editor ".dmg" distribution (that is, our XMLmind.app) already contains an Info.plist file which itself contains:

---
    <key>CFBundleDocumentTypes</key>
    <array>
      <dict>
        <key>CFBundleTypeName</key>
        <string>XML</string>
        <key>CFBundleTypeIconFile</key>
        <string>xxe.icns</string>
        <key>CFBundleTypeRole</key>
        <string>Editor</string>
        <key>CFBundleTypeExtensions</key>
        <array>
          <string>xml</string>
          <string>dbk</string>
          <string>docb</string>
          <string>xhtml</string>
          <string>xht</string>
          <string>dita</string>
          <string>ditamap</string>
          <string>bookmap</string>
          <string>ditaval</string>
          <string>mml</string>
          <string>xsd</string>
          <string>rng</string>
          <string>xxe</string>
          <string>incl</string>
          <string>xxe_gui</string>
          <string>xxe_addon</string>
          <string>profiles</string>
        </array>
        <key>CFBundleTypeMIMETypes</key>
        <array>
          <string>text/xml</string>
          <string>application/xml</string>
        </array>
        <key>CFBundleTypeOSTypes</key>
        <array>
          <string>XML</string>
        </array>
      </dict>
    </array>
---

* About "Part Two") XMLmind XML Editor already has an implementation which is equivalent to "Part Two". (The "Here is what needs to be done" answer in stackoverflow uses the up-to-date Java APIs just like XMLmind XML Editor.)

---
    Application a = Application.getApplication();
    a.setOpenFileHandler(new OpenFilesHandler() {

        @Override
        public void openFiles(OpenFilesEvent e) {
            for (File file : e.getFiles()){
                //Handle your file however you'd like
            }
        }

    });
---

Unfortunately, due to bug https://bugs.openjdk.java.net/browse/JDK-8043852, OpenFilesHandler.openFiles is never invoked. (We have tested that.)

We'll try the Info.plist key called "UTExportedTypeDeclarations" and use lsregister to debug our file type associations, but I would be really surprised if just adding key "UTExportedTypeDeclarations" solved this problem.






--
XMLmind XML Editor Support List
xmleditor-support@xmlmind.com
http://www.xmlmind.com/mailman/listinfo/xmleditor-support

Reply via email to