зеркало из https://github.com/mozilla/gecko-dev.git
70 строки
2.0 KiB
C++
70 строки
2.0 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set sw=4 ts=8 et tw=80 : */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef mozilla_layers_APZChild_h
|
|
#define mozilla_layers_APZChild_h
|
|
|
|
#include "mozilla/layers/PAPZChild.h"
|
|
|
|
class nsIObserver;
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
class TabChild;
|
|
} // namespace dom
|
|
|
|
namespace layers {
|
|
|
|
class APZChild final : public PAPZChild
|
|
{
|
|
public:
|
|
static APZChild* Create(const dom::TabId& aTabId);
|
|
|
|
~APZChild();
|
|
|
|
virtual bool RecvUpdateFrame(const FrameMetrics& frame) override;
|
|
|
|
virtual bool RecvHandleDoubleTap(const CSSPoint& aPoint,
|
|
const Modifiers& aModifiers,
|
|
const ScrollableLayerGuid& aGuid) override;
|
|
|
|
virtual bool RecvHandleSingleTap(const CSSPoint& aPoint,
|
|
const Modifiers& aModifiers,
|
|
const ScrollableLayerGuid& aGuid,
|
|
const bool& aCallTakeFocusForClickFromTap) override;
|
|
|
|
virtual bool RecvHandleLongTap(const CSSPoint& aPoint,
|
|
const Modifiers& aModifiers,
|
|
const ScrollableLayerGuid& aGuid,
|
|
const uint64_t& aInputBlockId) override;
|
|
|
|
virtual bool RecvNotifyAPZStateChange(const ViewID& aViewId,
|
|
const APZStateChange& aChange,
|
|
const int& aArg) override;
|
|
|
|
virtual bool RecvNotifyFlushComplete() override;
|
|
|
|
virtual bool RecvDestroy() override;
|
|
|
|
void SetBrowser(dom::TabChild* aBrowser);
|
|
|
|
private:
|
|
APZChild();
|
|
|
|
void SetObserver(nsIObserver* aObserver);
|
|
|
|
RefPtr<dom::TabChild> mBrowser;
|
|
RefPtr<nsIObserver> mObserver;
|
|
bool mDestroyed;
|
|
};
|
|
|
|
} // namespace layers
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_layers_APZChild_h
|