1
0
Fork 0
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:
Julian Storer 2009-09-28 16:37:16 +01:00
parent deeb652939
commit f72563d6c7
6 changed files with 99 additions and 64 deletions

View file

@ -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