1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00
JUCE/modules/juce_gui_basics/native/juce_NativeMessageBox_ios.mm
reuk b272f968aa
NativeMessageBox (iOS): Delay lookup of focused peer
Before 2c5b1fbb6f, we only queried
currentlyFocusedPeer during runAsync(), instead of reading it
immediately. The behaviour after that commit prevented message boxes
from showing if showMessageBoxAsync() was called before any peer had
been created.
2025-07-30 11:22:09 +01:00

128 lines
4.8 KiB
Text

/*
==============================================================================
This file is part of the JUCE framework.
Copyright (c) Raw Material Software Limited
JUCE is an open source framework subject to commercial or open source
licensing.
By downloading, installing, or using the JUCE framework, or combining the
JUCE framework with any other source code, object code, content or any other
copyrightable work, you agree to the terms of the JUCE End User Licence
Agreement, and all incorporated terms including the JUCE Privacy Policy and
the JUCE Website Terms of Service, as applicable, which will bind you. If you
do not agree to the terms of these agreements, we will not license the JUCE
framework to you, and you must discontinue the installation or download
process and cease use of the JUCE framework.
JUCE End User Licence Agreement: https://juce.com/legal/juce-8-licence/
JUCE Privacy Policy: https://juce.com/juce-privacy-policy
JUCE Website Terms of Service: https://juce.com/juce-website-terms-of-service/
Or:
You may also use this code under the terms of the AGPLv3:
https://www.gnu.org/licenses/agpl-3.0.en.html
THE JUCE FRAMEWORK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL
WARRANTIES, WHETHER EXPRESSED OR IMPLIED, INCLUDING WARRANTY OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
==============================================================================
*/
namespace juce::detail
{
std::unique_ptr<ScopedMessageBoxInterface> ScopedMessageBoxInterface::create (const MessageBoxOptions& options)
{
class MessageBox final : public ScopedMessageBoxInterface
{
public:
explicit MessageBox (const MessageBoxOptions& opts) : options (opts) {}
void runAsync (std::function<void (int)> recipient) override
{
auto* peerToUse = std::invoke ([&]() -> UIViewComponentPeer*
{
if (auto* comp = options.getAssociatedComponent())
if (auto* peer = comp->getPeer())
return static_cast<UIViewComponentPeer*> (peer);
return iOSGlobals::currentlyFocusedPeer;
});
if (peerToUse == nullptr)
{
// Since iOS8, alert windows need to be associated with a window, so you need to
// have at least one window on screen when you use this
jassertfalse;
return;
}
alert.reset ([[UIAlertController alertControllerWithTitle: juceStringToNS (options.getTitle())
message: juceStringToNS (options.getMessage())
preferredStyle: UIAlertControllerStyleAlert] retain]);
for (auto i = 0; i < options.getNumButtons(); ++i)
{
const auto text = options.getButtonText (i);
if (text.isEmpty())
continue;
auto* action = [UIAlertAction actionWithTitle: juceStringToNS (text)
style: UIAlertActionStyleDefault
handler: ^(UIAlertAction*)
{
MessageManager::callAsync ([recipient, i] { NullCheckedInvocation::invoke (recipient, i); });
}];
[alert.get() addAction: action];
if (i == 0)
[alert.get() setPreferredAction: action];
}
[peerToUse->controller presentViewController: alert.get()
animated: YES
completion: nil];
}
int runSync() override
{
int result = -1;
JUCE_AUTORELEASEPOOL
{
runAsync ([&result] (int r) { result = r; });
while (result < 0)
{
JUCE_AUTORELEASEPOOL
{
[[NSRunLoop mainRunLoop] runUntilDate: [NSDate dateWithTimeIntervalSinceNow: 0.01]];
}
}
}
return result;
}
void close() override
{
if (auto* alertViewController = alert.get())
[alertViewController dismissViewControllerAnimated: YES completion: nil];
}
private:
const MessageBoxOptions options;
NSUniquePtr<UIAlertController> alert;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MessageBox)
};
return std::make_unique<MessageBox> (options);
}
} // namespace juce::detail