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/FFL_TextField.h" | 7 #include "../../include/formfiller/FFL_TextField.h" |
8 #include "../../include/formfiller/FFL_CBA_Fontmap.h" | 8 #include "../../include/formfiller/FFL_CBA_Fontmap.h" |
9 | 9 |
10 /* ------------------------------- CFFL_TextField | 10 /* ------------------------------- CFFL_TextField |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 } | 307 } |
308 | 308 |
309 FX_BOOL CFFL_TextField::CanCut(CPDFSDK_Document* pDocument) { | 309 FX_BOOL CFFL_TextField::CanCut(CPDFSDK_Document* pDocument) { |
310 return FALSE; | 310 return FALSE; |
311 } | 311 } |
312 | 312 |
313 FX_BOOL CFFL_TextField::CanPaste(CPDFSDK_Document* pDocument) { | 313 FX_BOOL CFFL_TextField::CanPaste(CPDFSDK_Document* pDocument) { |
314 return FALSE; | 314 return FALSE; |
315 } | 315 } |
316 | 316 |
317 void CFFL_TextField::DoCopy(CPDFSDK_Document* pDocument) {} | |
318 | |
319 void CFFL_TextField::DoCut(CPDFSDK_Document* pDocument) {} | |
320 | |
321 void CFFL_TextField::DoPaste(CPDFSDK_Document* pDocument) {} | |
322 | |
323 void CFFL_TextField::OnAddUndo(CPWL_Edit* pEdit) {} | 317 void CFFL_TextField::OnAddUndo(CPWL_Edit* pEdit) {} |
OLD | NEW |