Skip to content

Commit

Permalink
Experimental Apple Event hack; you can now do 'tell application "Open…
Browse files Browse the repository at this point in the history
…SCAD" to reload'

git-svn-id: http://svn.clifford.at/openscad/trunk@408 b57f626f-c46c-0410-a088-ec61d464b74c
  • Loading branch information
kintel committed Feb 2, 2010
1 parent d861594 commit 7288617
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Info.plist
Expand Up @@ -31,5 +31,9 @@
<true/>
</dict>
</array>
<key>NSAppleScriptEnabled</key>
<true/>
<key>OSAScriptingDefinition</key>
<string>OpenSCAD.sdef</string>
</dict>
</plist>
8 changes: 8 additions & 0 deletions OpenSCAD.sdef
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE dictionary SYSTEM "file://localhost/System/Library/DTDs/sdef.dtd">
<dictionary title="OpenSCAD Terminology">
<suite name="OpenSCAD Suite" code="SCAD" description="AppleScript support for OpenSCAD">
<command name="reload" code="SCADrelo" description="Reload file in the front window (F4)">
</command>
</suite>
</dictionary>
2 changes: 1 addition & 1 deletion src/MainWindow.h
Expand Up @@ -93,7 +93,6 @@ private slots:
void preferences();

private slots:
void actionReloadCompile();
void actionCompile();
#ifdef ENABLE_CGAL
void actionRenderCGAL();
Expand Down Expand Up @@ -141,6 +140,7 @@ public slots:
void helpAbout();
void helpManual();
void quit();
void actionReloadCompile();
};

#endif
5 changes: 5 additions & 0 deletions src/openscad.cc
Expand Up @@ -45,6 +45,7 @@
#include <getopt.h>
#ifdef Q_WS_MAC
#include "EventFilter.h"
#include "AppleEvents.h"
#endif

static void help(const char *progname)
Expand Down Expand Up @@ -247,6 +248,10 @@ int main(int argc, char **argv)
}
else if (useGUI)
{
#ifdef Q_WS_MAC
installAppleEventHandlers();
#endif

// turn on anti-aliasing
QGLFormat f;
f.setSampleBuffers(true);
Expand Down

0 comments on commit 7288617

Please sign in to comment.