diff options
Diffstat (limited to 'xfa/fxfa/app/cxfa_ffsignature.h')
-rw-r--r-- | xfa/fxfa/app/cxfa_ffsignature.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/xfa/fxfa/app/cxfa_ffsignature.h b/xfa/fxfa/app/cxfa_ffsignature.h new file mode 100644 index 0000000000..839cfaf5fc --- /dev/null +++ b/xfa/fxfa/app/cxfa_ffsignature.h @@ -0,0 +1,42 @@ +// Copyright 2014 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com + +#ifndef XFA_FXFA_APP_CXFA_FFSIGNATURE_H_ +#define XFA_FXFA_APP_CXFA_FFSIGNATURE_H_ + +#include "xfa/fxfa/app/cxfa_fffield.h" + +class CXFA_FFSignature final : public CXFA_FFField { + public: + explicit CXFA_FFSignature(CXFA_WidgetAcc* pDataAcc); + ~CXFA_FFSignature() override; + + // CXFA_FFField + void RenderWidget(CFX_Graphics* pGS, + CFX_Matrix* pMatrix, + uint32_t dwStatus) override; + bool LoadWidget() override; + bool OnMouseEnter() override; + bool OnMouseExit() override; + bool OnLButtonDown(uint32_t dwFlags, const CFX_PointF& point) override; + bool OnLButtonUp(uint32_t dwFlags, const CFX_PointF& point) override; + bool OnLButtonDblClk(uint32_t dwFlags, const CFX_PointF& point) override; + bool OnMouseMove(uint32_t dwFlags, const CFX_PointF& point) override; + bool OnMouseWheel(uint32_t dwFlags, + int16_t zDelta, + const CFX_PointF& pointy) override; + bool OnRButtonDown(uint32_t dwFlags, const CFX_PointF& point) override; + bool OnRButtonUp(uint32_t dwFlags, const CFX_PointF& point) override; + bool OnRButtonDblClk(uint32_t dwFlags, const CFX_PointF& point) override; + + bool OnKeyDown(uint32_t dwKeyCode, uint32_t dwFlags) override; + bool OnKeyUp(uint32_t dwKeyCode, uint32_t dwFlags) override; + bool OnChar(uint32_t dwChar, uint32_t dwFlags) override; + FWL_WidgetHit OnHitTest(const CFX_PointF& point) override; + bool OnSetCursor(const CFX_PointF& point) override; +}; + +#endif // XFA_FXFA_APP_CXFA_FFSIGNATURE_H_ |