Difference between revisions of "EnablingDoubleClick"

From Protege Wiki
Jump to: navigation, search
(Enabling Double-Click)
m
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
=Enabling Double-Click=
+
== Double-clicking on OWL files ==
  
This is a work in development and when this is better tested this functionality will be better integrated into the Protege 4 OWL editor. Thanks to Alan Ruttenberg for contributing the OS X portion of this plugin.  There is a slight problem with the first double-click.  The welcome dialog sticks around when it really should be hidden.  This is fixed in the latest svn.
+
For all operating systems except OS X, Protege 4 works with double-click as installed - you simply follow the usual OS specific steps for indicating which application to use to open an OWL file. In the case of OS X there is an extra adjustment that needs to be done (we are working on removing this extra step).
  
==OS X==
+
If you are trying to enable double-click on an OS X machine, follow the instructions from [[ChangingTheHeapSize#Editting_the_Info.plist|editing the Info.plist]] to open the Info.plist file with a text editor.  Add the following lines underneath any other key/value pair:
  
Follow the instructions from [[Editting_the_Info.plist|Editing the Info.plist] to open the Info.plist file with a text editor.  Add the following lines underneath some other key/value pair:
 
 
<pre>
 
<pre>
 
         <key>CFBundleDocumentTypes</key>
 
         <key>CFBundleDocumentTypes</key>
Line 21: Line 20:
 
         </array>
 
         </array>
 
</pre>
 
</pre>
and copy the [http://smi-protege.stanford.edu/repos/protege/protege4/small-projects/org.protege.editor.bootstrap/trunk/Bootstrap.jar Bootstrap.jar] file into the plugins directory.
 
  
Now Protege is ready for double-click functionality.  Probably due to some setting on my machines, I have not yet succeeded in fully enabling double click.  But I can enable the open-with menu.
+
Now configure double-click as you would with any other OS X application.
  
[[Image:OwlDoubleClickOsXOpenWith.png|Selecting the application to open an owl file]]
+
Thanks are due to Alan Ruttenberg for his suggestion on how to enable double-click on the OS X platform.
 
 
Then navigate to and select the Protege application.  You will probably want to select "Always open with" and you may need to choose "All Applications" in order to find protege.
 
 
 
[[Image:OwlDoubleClickOsXOpenWithOptions.png|Selecting the open options]]
 
 
 
Now if you right click on a file and select Protege Application the Protege application will open the desired file.
 

Latest revision as of 17:41, September 30, 2008

Double-clicking on OWL files

For all operating systems except OS X, Protege 4 works with double-click as installed - you simply follow the usual OS specific steps for indicating which application to use to open an OWL file. In the case of OS X there is an extra adjustment that needs to be done (we are working on removing this extra step).

If you are trying to enable double-click on an OS X machine, follow the instructions from editing the Info.plist to open the Info.plist file with a text editor. Add the following lines underneath any other key/value pair:

        <key>CFBundleDocumentTypes</key>
        <array>
            <dict>
                <key>CFBundleTypeExtensions</key>
                <array>
                    <string>owl</string>
                </array>
                <key>CFBundleTypeName</key>
                <string>OWL Ontology</string>
                <key>CFBundleTypeRole</key>
                <string>Viewer</string>
            </dict>
        </array>

Now configure double-click as you would with any other OS X application.

Thanks are due to Alan Ruttenberg for his suggestion on how to enable double-click on the OS X platform.