mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-15 00:24:19 +00:00
108 lines
3.6 KiB
Text
108 lines
3.6 KiB
Text
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE library - "Jules' Utility Class Extensions"
|
|
Copyright 2004-7 by Raw Material Software ltd.
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
JUCE can be redistributed and/or modified under the terms of the
|
|
GNU General Public License, as published by the Free Software Foundation;
|
|
either version 2 of the License, or (at your option) any later version.
|
|
|
|
JUCE is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with JUCE; if not, visit www.gnu.org/licenses or write to the
|
|
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
Boston, MA 02111-1307 USA
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
If you'd like to release a closed-source product which uses JUCE, commercial
|
|
licenses are also available: visit www.rawmaterialsoftware.com/juce for
|
|
more information.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
// If you get an error here, you might need to make sure that
|
|
// your build config files don't specify "C++" as one of the
|
|
// flags in OTHER_CFLAGS, because that stops the compiler building
|
|
// obj-c files correctly.
|
|
@class dummyclassname;
|
|
|
|
#include <Cocoa/Cocoa.h>
|
|
#include "../juce_PluginHeaders.h"
|
|
|
|
#if JucePlugin_Build_RTAS
|
|
|
|
BEGIN_JUCE_NAMESPACE
|
|
extern void juce_setCurrentExecutableFileNameFromBundleId (const String& bundleId) throw();
|
|
END_JUCE_NAMESPACE
|
|
|
|
//==============================================================================
|
|
void initialiseMacRTAS()
|
|
{
|
|
NSApplicationLoad();
|
|
|
|
#if defined (JucePlugin_CFBundleIdentifier)
|
|
juce_setCurrentExecutableFileNameFromBundleId (JucePlugin_CFBundleIdentifier);
|
|
#endif
|
|
}
|
|
|
|
void* attachSubWindow (void* hostWindowRef, Component* comp)
|
|
{
|
|
const ScopedAutoReleasePool pool;
|
|
|
|
NSWindow* hostWindow = [[NSWindow alloc] initWithWindowRef: hostWindowRef];
|
|
[hostWindow retain];
|
|
[hostWindow setCanHide: YES];
|
|
[hostWindow setReleasedWhenClosed: YES];
|
|
|
|
NSView* content = [hostWindow contentView];
|
|
NSRect f = [content frame];
|
|
f.size.width = comp->getWidth();
|
|
f.size.height = comp->getHeight();
|
|
[content setFrame: f];
|
|
|
|
NSPoint windowPos = [hostWindow convertBaseToScreen: f.origin];
|
|
windowPos.y = [[NSScreen mainScreen] frame].size.height - (windowPos.y + f.size.height);
|
|
|
|
comp->setTopLeftPosition ((int) windowPos.x, (int) windowPos.y);
|
|
|
|
#if ! JucePlugin_EditorRequiresKeyboardFocus
|
|
comp->addToDesktop (ComponentPeer::windowIsTemporary | ComponentPeer::windowIgnoresKeyPresses);
|
|
#else
|
|
comp->addToDesktop (ComponentPeer::windowIsTemporary);
|
|
#endif
|
|
|
|
comp->setVisible (true);
|
|
|
|
NSView* pluginView = (NSView*) comp->getWindowHandle();
|
|
NSWindow* pluginWindow = [pluginView window];
|
|
|
|
[hostWindow addChildWindow: pluginWindow
|
|
ordered: NSWindowAbove];
|
|
[hostWindow orderFront: nil];
|
|
[pluginWindow orderFront: nil];
|
|
return hostWindow;
|
|
}
|
|
|
|
void removeSubWindow (void* nsWindow, Component* comp)
|
|
{
|
|
const ScopedAutoReleasePool pool;
|
|
|
|
NSView* pluginView = (NSView*) comp->getWindowHandle();
|
|
NSWindow* hostWindow = (NSWindow*) nsWindow;
|
|
NSWindow* pluginWindow = [pluginView window];
|
|
|
|
[hostWindow removeChildWindow: pluginWindow];
|
|
comp->removeFromDesktop();
|
|
[hostWindow release];
|
|
}
|
|
|
|
#endif
|