OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #include "core/fpdfdoc/include/cpdf_variabletext.h" | 7 #include "core/fpdfdoc/include/cpdf_variabletext.h" |
8 #include "fpdfsdk/include/fxedit/fxet_edit.h" | 8 #include "fpdfsdk/fxedit/include/fxet_edit.h" |
9 #include "fpdfsdk/include/fxedit/fxet_list.h" | 9 #include "fpdfsdk/fxedit/include/fxet_list.h" |
10 | 10 |
11 IFX_Edit* IFX_Edit::NewEdit() { | 11 IFX_Edit* IFX_Edit::NewEdit() { |
12 return new CFX_Edit(new CPDF_VariableText()); | 12 return new CFX_Edit(new CPDF_VariableText()); |
13 } | 13 } |
14 | 14 |
15 void IFX_Edit::DelEdit(IFX_Edit* pEdit) { | 15 void IFX_Edit::DelEdit(IFX_Edit* pEdit) { |
16 delete pEdit->GetVariableText(); | 16 delete pEdit->GetVariableText(); |
17 delete static_cast<CFX_Edit*>(pEdit); | 17 delete static_cast<CFX_Edit*>(pEdit); |
18 } | 18 } |
19 | 19 |
20 IFX_List* IFX_List::NewList() { | 20 IFX_List* IFX_List::NewList() { |
21 return new CFX_ListCtrl(); | 21 return new CFX_ListCtrl(); |
22 } | 22 } |
23 | 23 |
24 void IFX_List::DelList(IFX_List* pList) { | 24 void IFX_List::DelList(IFX_List* pList) { |
25 ASSERT(pList); | 25 ASSERT(pList); |
26 delete (CFX_ListCtrl*)pList; | 26 delete (CFX_ListCtrl*)pList; |
27 } | 27 } |
OLD | NEW |