You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.7 KiB
42 lines
1.7 KiB
// 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_XFA_FFSIGNATURE_H_ |
|
#define XFA_FXFA_APP_XFA_FFSIGNATURE_H_ |
|
|
|
#include "xfa/fxfa/app/xfa_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_XFA_FFSIGNATURE_H_
|
|
|