#include <juce_ScopedContentSharerImpl.h>


Public Member Functions | |
| ~ConcreteScopedContentSharerImpl () override | |
| void | cancelPendingUpdate () noexcept |
| This will stop any pending updates from happening. | |
| void | close () override |
| void | handleUpdateNowIfNeeded () |
| If an update has been triggered and is pending, this will invoke it synchronously. | |
| bool | isUpdatePending () const noexcept |
| Returns true if there's an update callback in the pipeline. | |
| void | triggerAsyncUpdate () |
| Causes the callback to be triggered at a later time. | |
Static Public Member Functions | |
| static ScopedMessageBox | show (std::unique_ptr< ScopedContentSharerInterface > &&native, ContentSharer::Callback callback) |
Private Member Functions | |
| ConcreteScopedContentSharerImpl (std::unique_ptr< ScopedContentSharerInterface > &&p, ContentSharer::Callback &&c) | |
| void | handleAsyncUpdate () override |
| Called back to do whatever your class needs to do. | |
Static Private Member Functions | |
| static std::shared_ptr< ConcreteScopedContentSharerImpl > | runAsync (std::unique_ptr< ScopedContentSharerInterface > &&p, ContentSharer::Callback &&c) |
Private Attributes | |
| ReferenceCountedObjectPtr< AsyncUpdaterMessage > | activeMessage |
| ContentSharer::Callback | callback |
| std::unique_ptr< ScopedContentSharerInterface > | nativeImplementation |
| std::shared_ptr< ConcreteScopedContentSharerImpl > | self |
|
inlineoverride |
References juce::AsyncUpdater::cancelPendingUpdate().
|
inlineprivate |
|
noexceptinherited |
This will stop any pending updates from happening.
If called after triggerAsyncUpdate() and before the handleAsyncUpdate() callback happens, this will cancel the handleAsyncUpdate() callback.
Note that this method simply cancels the next callback - if a callback is already in progress on a different thread, this won't block until the callback finishes, so there's no guarantee that the callback isn't still running when the method returns.
Referenced by ~ConcreteScopedContentSharerImpl(), juce::detail::ConcreteScopedMessageBoxImpl::~ConcreteScopedMessageBoxImpl(), juce::OpenGLContext::NativeContext::~NativeContext(), close(), juce::detail::ConcreteScopedMessageBoxImpl::close(), and juce::detail::MouseInputSourceImpl::setPointerState().
|
inlineoverridevirtual |
Implements juce::detail::ScopedMessageBoxImpl.
References juce::AsyncUpdater::cancelPendingUpdate(), nativeImplementation, and self.
|
inlineoverrideprivatevirtual |
Called back to do whatever your class needs to do.
This method is called by the message thread at the next convenient time after the triggerAsyncUpdate() method has been called.
Implements juce::AsyncUpdater.
References juce::MessageManager::callAsync(), juce::MessageManager::getInstance(), nativeImplementation, and self.
|
inherited |
If an update has been triggered and is pending, this will invoke it synchronously.
Use this as a kind of "flush" operation - if an update is pending, the handleAsyncUpdate() method will be called immediately; if no update is pending, then nothing will be done.
Because this may invoke the callback, this method must only be called on the main event thread.
|
noexceptinherited |
Returns true if there's an update callback in the pipeline.
|
inlinestaticprivate |
Referenced by show().
|
inlinestatic |
References callback, and runAsync().
|
inherited |
Causes the callback to be triggered at a later time.
This method returns immediately, after which a callback to the handleAsyncUpdate() method will be made by the message thread as soon as possible.
If an update callback is already pending but hasn't happened yet, calling this method will have no effect.
It's thread-safe to call this method from any thread, BUT beware of calling it from a real-time (e.g. audio) thread, because it involves posting a message to the system queue, which means it may block (and in general will do on most OSes).
Referenced by juce::detail::TemporaryFilesDecorator::runAsync(), juce::OpenGLContext::NativeContext::swapBuffers(), and juce::detail::MouseInputSourceImpl::triggerFakeMove().
|
privateinherited |
|
private |
Referenced by show().
|
private |
Referenced by close(), and handleAsyncUpdate().
|
private |
Referenced by close(), and handleAsyncUpdate().