2012-05-26 22:16:08 +02:00
|
|
|
// Copyright (c) 2012, Thomas Goyne <plorkyeran@aegisub.org>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
//
|
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
|
|
|
/// @file osx_utils.mm
|
|
|
|
/// @see utils.h
|
|
|
|
/// @ingroup utils
|
|
|
|
///
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <wx/window.h>
|
2012-10-10 17:53:15 +02:00
|
|
|
#include <wx/osx/core/cfstring.h>
|
2012-05-26 22:16:08 +02:00
|
|
|
|
|
|
|
#import <AppKit/AppKit.h>
|
|
|
|
|
|
|
|
void AddFullScreenButton(wxWindow *window) {
|
2012-06-07 23:03:08 +02:00
|
|
|
NSWindow *nsWindow = [window->GetHandle() window];
|
|
|
|
if (![nsWindow respondsToSelector:@selector(toggleFullScreen:)])
|
|
|
|
return;
|
2012-05-26 22:16:08 +02:00
|
|
|
|
2012-06-07 23:03:08 +02:00
|
|
|
NSWindowCollectionBehavior collectionBehavior = [nsWindow collectionBehavior];
|
|
|
|
collectionBehavior |= NSWindowCollectionBehaviorFullScreenPrimary;
|
|
|
|
[nsWindow setCollectionBehavior:collectionBehavior];
|
2012-05-26 22:16:08 +02:00
|
|
|
}
|
2012-06-07 04:48:13 +02:00
|
|
|
|
|
|
|
void SetFloatOnParent(wxWindow *window) {
|
2012-09-29 18:58:36 +02:00
|
|
|
__block NSWindow *nsWindow = [window->GetHandle() window];
|
2012-06-07 23:03:08 +02:00
|
|
|
[nsWindow setLevel:NSFloatingWindowLevel];
|
|
|
|
|
|
|
|
if (!([nsWindow collectionBehavior] & NSWindowCollectionBehaviorFullScreenPrimary))
|
|
|
|
return;
|
|
|
|
|
|
|
|
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
|
|
|
|
[nc addObserverForName:@"NSWindowWillEnterFullScreenNotification"
|
|
|
|
object:nsWindow
|
|
|
|
queue:nil
|
|
|
|
usingBlock:^(NSNotification *) { [nsWindow setLevel:NSNormalWindowLevel]; }];
|
|
|
|
[nc addObserverForName:@"NSWindowWillExitFullScreenNotification"
|
|
|
|
object:nsWindow
|
|
|
|
queue:nil
|
|
|
|
usingBlock:^(NSNotification *) { [nsWindow setLevel:NSFloatingWindowLevel]; }];
|
2012-06-07 04:48:13 +02:00
|
|
|
}
|
2012-10-10 17:53:15 +02:00
|
|
|
|
|
|
|
void SetPlaceholderText(wxWindow *window, wxString const& placeholder) {
|
|
|
|
id nsWindow = window->GetHandle();
|
|
|
|
if ([nsWindow respondsToSelector:@selector(cell)]) {
|
|
|
|
NSTextFieldCell *cell = [nsWindow cell];
|
|
|
|
cell.placeholderString = wxCFStringRef(placeholder).AsNSString();
|
|
|
|
}
|
|
|
|
}
|