/[svn]/jsampler/trunk/src/org/jsampler/view/fantasia/MacOSApplicationHandler.java
ViewVC logotype

Contents of /jsampler/trunk/src/org/jsampler/view/fantasia/MacOSApplicationHandler.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1864 - (show annotations) (download)
Sat Mar 14 20:44:58 2009 UTC (15 years, 1 month ago) by iliev
File size: 1814 byte(s)
* Fixed bug in the parameter table when editing
  string list parameters with no possibilities
* Mac OS integration, work in progress:
* ant: added new target build-fantasia-osx
* Moved the menu bar on top of the screen
* Use custom application icon
* Register LSCP scripts to be opened with Fantasia
* Changed shortcut keys (use command key instead of ctrl key)

1 /*
2 * JSampler - a java front-end for LinuxSampler
3 *
4 * Copyright (C) 2005-2009 Grigor Iliev <grigor@grigoriliev.com>
5 *
6 * This file is part of JSampler.
7 *
8 * JSampler is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2
10 * as published by the Free Software Foundation.
11 *
12 * JSampler is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with JSampler; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
22
23 package org.jsampler.view.fantasia;
24
25 import com.apple.eawt.ApplicationEvent;
26
27 import org.jsampler.CC;
28 import org.jsampler.JSampler;
29
30 import static org.jsampler.view.fantasia.A4n.a4n;
31
32 /**
33 *
34 * @author Grigor Iliev
35 */
36 public class MacOSApplicationHandler extends com.apple.eawt.ApplicationAdapter {
37 public
38 MacOSApplicationHandler() {
39 com.apple.eawt.Application app = com.apple.eawt.Application.getApplication();
40 app.addApplicationListener(this);
41 app.setEnabledPreferencesMenu(true);
42 }
43
44 @Override
45 public void
46 handleAbout(ApplicationEvent event) {
47 a4n.helpAbout.actionPerformed(null);
48 event.setHandled(true);
49 }
50
51 @Override
52 public void
53 handlePreferences(ApplicationEvent event) {
54 a4n.editPreferences.actionPerformed(null);
55 event.setHandled(true);
56 }
57
58 @Override
59 public void
60 handleQuit(ApplicationEvent event) {
61 CC.getMainFrame().onWindowClose();
62 }
63
64 @Override
65 public void
66 handleOpenFile(ApplicationEvent event) {
67 JSampler.open(event.getFilename());
68 }
69 }

  ViewVC Help
Powered by ViewVC