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 "../include/FormFiller.h" | 7 //#include "../include/FormFiller.h" |
8 //#include "../include/FFL_FormFiller.h" | 8 //#include "../include/FFL_FormFiller.h" |
9 #include "../../include/formfiller/FFL_TextField.h" | 9 #include "../../include/formfiller/FFL_TextField.h" |
10 #include "../../include/formfiller/FFL_CBA_Fontmap.h" | 10 #include "../../include/formfiller/FFL_CBA_Fontmap.h" |
11 //#include "../include/FFL_Notify.h" | 11 //#include "../include/FFL_Notify.h" |
12 | 12 |
13 CFFL_EditUndoItem::CFFL_EditUndoItem(CPWL_Edit* pEdit) : m_pEdit(pEdit) | 13 CFFL_EditUndoItem::CFFL_EditUndoItem(CPWL_Edit* pEdit) |
14 { | 14 { |
15 } | 15 } |
16 | 16 |
17 CFFL_EditUndoItem::~CFFL_EditUndoItem() | 17 CFFL_EditUndoItem::~CFFL_EditUndoItem() |
18 { | 18 { |
19 } | 19 } |
20 | 20 |
21 void CFFL_EditUndoItem::Undo() | 21 void CFFL_EditUndoItem::Undo() |
22 { | 22 { |
23 } | 23 } |
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 | 403 |
404 void CFFL_TextField::DoPaste(CPDFSDK_Document* pDocument) | 404 void CFFL_TextField::DoPaste(CPDFSDK_Document* pDocument) |
405 { | 405 { |
406 | 406 |
407 } | 407 } |
408 | 408 |
409 void CFFL_TextField::OnAddUndo(CPWL_Edit* pEdit) | 409 void CFFL_TextField::OnAddUndo(CPWL_Edit* pEdit) |
410 { | 410 { |
411 } | 411 } |
412 | 412 |
OLD | NEW |