| 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/FormFiller.h" | 7 // #include "../../include/formfiller/FormFiller.h" |
| 8 #include "../../include/formfiller/FFL_FormFiller.h" | 8 #include "../../include/formfiller/FFL_FormFiller.h" |
| 9 #include "../../include/formfiller/FFL_Notify.h" | 9 #include "../../include/formfiller/FFL_Notify.h" |
| 10 // #include "../../include/formfiller/FFL_ComboBox.h" | 10 // #include "../../include/formfiller/FFL_ComboBox.h" |
| 11 // #include "../../include/formfiller/FFL_Module.h" | 11 // #include "../../include/formfiller/FFL_Module.h" |
| 12 | 12 |
| 13 /* -------------------------------- CFFL_Notify ------------------------------ *
/ | 13 /* -------------------------------- CFFL_Notify ------------------------------ *
/ |
| 14 | 14 |
| 15 //#pragma warning(disable: 4800) | 15 //#pragma warning(disable: 4800) |
| 16 | 16 |
| 17 CFFL_Notify::CFFL_Notify(CFFL_FormFiller * pFormFiller) : | 17 CFFL_Notify::CFFL_Notify(CFFL_FormFiller * pFormFiller) : |
| 18 m_pFormFiller(pFormFiller), | |
| 19 m_bDoActioning(FALSE), | 18 m_bDoActioning(FALSE), |
| 20 m_nNotifyFlag(0) | 19 m_nNotifyFlag(0) |
| 21 { | 20 { |
| 22 » ASSERT(m_pFormFiller != NULL); | 21 » ASSERT(pFormFiller != NULL); |
| 23 } | 22 } |
| 24 | 23 |
| 25 CFFL_Notify::~CFFL_Notify() | 24 CFFL_Notify::~CFFL_Notify() |
| 26 { | 25 { |
| 27 } | 26 } |
| 28 | 27 |
| 29 void CFFL_Notify::BeforeNotify() | 28 void CFFL_Notify::BeforeNotify() |
| 30 { | 29 { |
| 31 m_nNotifyFlag ++; | 30 m_nNotifyFlag ++; |
| 32 } | 31 } |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 | 162 |
| 164 return TRUE; | 163 return TRUE; |
| 165 } | 164 } |
| 166 | 165 |
| 167 FX_BOOL CFFL_Notify::ExecuteAction(CPDF_AAction::AActionType eAAT,CPDF_Action &
action,FX_BOOL& bExit) | 166 FX_BOOL CFFL_Notify::ExecuteAction(CPDF_AAction::AActionType eAAT,CPDF_Action &
action,FX_BOOL& bExit) |
| 168 { | 167 { |
| 169 return FALSE; | 168 return FALSE; |
| 170 } | 169 } |
| 171 //#pragma warning(default: 4800) | 170 //#pragma warning(default: 4800) |
| 172 | 171 |
| OLD | NEW |