Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Side by Side Diff: xfa/fxfa/app/xfa_ffnotify.h

Issue 1890563003: Simplify XFA event handling. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: remove layout event cruft Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fxfa/app/xfa_ffdocview.cpp ('k') | xfa/fxfa/app/xfa_ffnotify.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef XFA_FXFA_APP_XFA_FFNOTIFY_H_ 7 #ifndef XFA_FXFA_APP_XFA_FFNOTIFY_H_
8 #define XFA_FXFA_APP_XFA_FFNOTIFY_H_ 8 #define XFA_FXFA_APP_XFA_FFNOTIFY_H_
9 9
10 #include "xfa/fxfa/parser/xfa_document.h" 10 #include "xfa/fxfa/parser/xfa_document.h"
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 void* pParam4); 75 void* pParam4);
76 void OnChildAdded(CXFA_Node* pSender, void* pParam, void* pParam2); 76 void OnChildAdded(CXFA_Node* pSender, void* pParam, void* pParam2);
77 void OnChildRemoved(CXFA_Node* pSender, void* pParam, void* pParam2); 77 void OnChildRemoved(CXFA_Node* pSender, void* pParam, void* pParam2);
78 void OnLayoutItemAdd(CXFA_FFDocView* pDocView, 78 void OnLayoutItemAdd(CXFA_FFDocView* pDocView,
79 CXFA_LayoutProcessor* pLayout, 79 CXFA_LayoutProcessor* pLayout,
80 CXFA_LayoutItem* pSender, 80 CXFA_LayoutItem* pSender,
81 void* pParam, 81 void* pParam,
82 void* pParam2); 82 void* pParam2);
83 void OnLayoutItemRemoving(CXFA_FFDocView* pDocView, 83 void OnLayoutItemRemoving(CXFA_FFDocView* pDocView,
84 CXFA_LayoutProcessor* pLayout, 84 CXFA_LayoutProcessor* pLayout,
85 CXFA_LayoutItem* pSender, 85 CXFA_LayoutItem* pSender);
86 void* pParam, 86 CXFA_FFDoc* const m_pDoc;
Tom Sepez 2016/04/14 22:45:43 nit: blank line between methods and members.
Lei Zhang 2016/04/15 01:16:40 All the methods have become public by patch set 10
87 void* pParam2);
88 void OnLayoutItemRectChanged(CXFA_FFDocView* pDocView,
89 CXFA_LayoutProcessor* pLayout,
90 CXFA_LayoutItem* pSender,
91 void* pParam,
92 void* pParam2);
93 void OnLayoutItemStatustChanged(CXFA_FFDocView* pDocView,
94 CXFA_LayoutProcessor* pLayout,
95 CXFA_LayoutItem* pSender,
96 void* pParam,
97 void* pParam2);
98 CXFA_FFDoc* m_pDoc;
99 }; 87 };
100 88
101 #endif // XFA_FXFA_APP_XFA_FFNOTIFY_H_ 89 #endif // XFA_FXFA_APP_XFA_FFNOTIFY_H_
OLDNEW
« no previous file with comments | « xfa/fxfa/app/xfa_ffdocview.cpp ('k') | xfa/fxfa/app/xfa_ffnotify.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698