mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-02 03:20:06 +00:00
Fixes for viewports, flac seeking, plugin hosting of carbon UIs, and activeX control embedding.
This commit is contained in:
parent
deeb652939
commit
f72563d6c7
6 changed files with 99 additions and 64 deletions
|
|
@ -129,11 +129,13 @@ private:
|
|||
DWORD adviseCookie;
|
||||
|
||||
//==============================================================================
|
||||
class EventHandler : public IDispatch
|
||||
class EventHandler : public IDispatch,
|
||||
public ComponentMovementWatcher
|
||||
{
|
||||
public:
|
||||
EventHandler (WebBrowserComponent* owner_)
|
||||
: owner (owner_),
|
||||
: ComponentMovementWatcher (owner_),
|
||||
owner (owner_),
|
||||
refCount (0)
|
||||
{
|
||||
}
|
||||
|
|
@ -195,6 +197,14 @@ private:
|
|||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
void componentMovedOrResized (bool /*wasMoved*/, bool /*wasResized*/) {}
|
||||
void componentPeerChanged() {}
|
||||
|
||||
void componentVisibilityChanged (Component&)
|
||||
{
|
||||
owner->visibilityChanged();
|
||||
}
|
||||
|
||||
//==============================================================================
|
||||
juce_UseDebuggingNewOperator
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue