1 // Copyright 2014 PDFium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 6 7 #ifndef XFA_FXFA_CXFA_FFIMAGEEDIT_H_ 8 #define XFA_FXFA_CXFA_FFIMAGEEDIT_H_ 9 10 #include "xfa/fxfa/cxfa_fffield.h" 11 12 class CXFA_FFImageEdit : public CXFA_FFField { 13 public: 14 explicit CXFA_FFImageEdit(CXFA_Node* pNode); 15 ~CXFA_FFImageEdit() override; 16 17 // CXFA_FFField 18 void RenderWidget(CXFA_Graphics* pGS, 19 const CFX_Matrix& matrix, 20 uint32_t dwStatus) override; 21 bool LoadWidget() override; 22 void UnloadWidget() override; 23 bool OnLButtonDown(uint32_t dwFlags, const CFX_PointF& point) override; 24 void OnProcessMessage(CFWL_Message* pMessage) override; 25 void OnProcessEvent(CFWL_Event* pEvent) override; 26 void OnDrawWidget(CXFA_Graphics* pGraphics, 27 const CFX_Matrix& matrix) override; 28 FormFieldType GetFormFieldType() override; 29 30 private: 31 void SetFWLRect() override; 32 bool UpdateFWLData() override; 33 bool CommitData() override; 34 35 IFWL_WidgetDelegate* m_pOldDelegate; 36 }; 37 38 #endif // XFA_FXFA_CXFA_FFIMAGEEDIT_H_ 39